From 3ee1e00519e1903cccf4ed5030eaad732a5dc170 Mon Sep 17 00:00:00 2001 From: Siwat Sirichai Date: Mon, 25 Sep 2023 01:30:29 +0700 Subject: [PATCH] working face identify function --- .../face_processing.cpython-311.pyc | Bin 0 -> 1752 bytes access_control_python/camera_test.py | 15 +- access_control_python/face_processing.py | 28 + access_control_python/identify_test.py | 8 + access_control_python/main.py | 54 +- access_control_python/mcu_test.py | 26 + access_control_python_server/app.py | 40 +- access_control_python_server/faces/boom.jpg | Bin 0 -> 150995 bytes access_control_python_server/faces/skt.jpg | Bin 0 -> 126458 bytes access_control_python_server/requirements.txt | 3 +- .../.settings/language.settings.xml | 4 +- access_control_stm32/Core/Src/main.c | 377 +- .../Debug/Core/Src/main.cyclo | 16 +- access_control_stm32/Debug/Core/Src/main.o | Bin 817456 -> 817664 bytes access_control_stm32/Debug/Core/Src/main.su | 16 +- .../Debug/access_control_stm32.elf | Bin 1015160 -> 1015224 bytes .../Debug/access_control_stm32.list | 17475 ++++++++-------- .../Debug/access_control_stm32.map | 788 +- 18 files changed, 9516 insertions(+), 9334 deletions(-) create mode 100644 access_control_python/__pycache__/face_processing.cpython-311.pyc create mode 100644 access_control_python/face_processing.py create mode 100644 access_control_python/identify_test.py create mode 100644 access_control_python/mcu_test.py create mode 100644 access_control_python_server/faces/boom.jpg create mode 100644 access_control_python_server/faces/skt.jpg diff --git a/access_control_python/__pycache__/face_processing.cpython-311.pyc b/access_control_python/__pycache__/face_processing.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d69bbe72c47acd6b9a52a113f0e4da945996493 GIT binary patch literal 1752 zcmbtU&1)M+6rcUlu2+$qCW>3fZW`K})>dtqGav(v-H~LnsCN(1TBDO!~)2MNlyyDD>2u!8e~eZ>?1<7tybo-QT=Z;4!cqejrFfK!ay%+UB_7qH8jo60!*Vf&mB*;4 zW0e?H8EcQ#;uMy4&|>Nj*mAplYmYH+y-;Yl6|1r5`fUBZ)z#ICG;|1qDqax~I(u7a z4-o_1uwkh!q)=jDAGUfDEW&bto{HJ?k)|Z1P!1KQC#w;v!~Ss#l&8YO^O5gR#Y&(a zYl;2xh}H46wiIeC^I}DPM=7ByQNvH=p zBzU`>EqK(e5Z^D`O{+%E)s?ze%Qxpq`7H%cG)NN5useEJi5mX zyGfjiiwRHdT0U93&!=|R?k6ftVv|A1!xr(G&s9&{9@i_b!-&HuoQ`V^*TVjy!4s3JTQ)2CtoiP} z4 z9d3WWef)kmm+$5Bo%B1==D@shuzX}35mi)@q1sCOlwWRctoT0qtdrgm&;KexdPl^vXmZVIH3eT}$D?VXq3~m)*8zZ! z6j&3}hig^Aa7N)QCn)|pKI^&hVbjH}26;f=5+?Yg`i_88MUtdGy3t9VJ~E@Y_faN_ ndml|laqpva6!+gUZ${>6%8;f{(Fk%vdbV&$@xnBc;&}c9h`4_N literal 0 HcmV?d00001 diff --git a/access_control_python/camera_test.py b/access_control_python/camera_test.py index 28b0da3..e97557e 100644 --- a/access_control_python/camera_test.py +++ b/access_control_python/camera_test.py @@ -3,23 +3,26 @@ import cv2 import base64 import requests -#Capture Image -cam = cv2.VideoCapture(1) -ret, img = cam.read() +# #Capture Image +# cam = cv2.VideoCapture(1) +# ret, img = cam.read() # #Save Image # cv2.imwrite("cam_test_img_pre.jpg",img) -# #Load Image -# img = cv2.imread("cam_test_img_pre.jpg") +#Load Image +img = cv2.imread("cam_test_img_pre.jpg") #Encode Image ret, jpg_buffer = cv2.imencode('.jpg',img) b64_img = base64.b64encode(jpg_buffer) #Send Image to Server +api_endpoint = "https://racist.siwatsystem.com/process_image" +api_endpoint = "http://localhost:5000/identify_face" + data = {"image":b64_img.decode("utf-8")} -req = requests.post("https://racist.siwatsystem.com/process_image",json=data) +req = requests.post(api_endpoint,json=data) print(req.content) #Decode Image diff --git a/access_control_python/face_processing.py b/access_control_python/face_processing.py new file mode 100644 index 0000000..df66e5a --- /dev/null +++ b/access_control_python/face_processing.py @@ -0,0 +1,28 @@ +import numpy as np +import cv2 +import base64 +import requests +import json + +api_server = "http://localhost:5000" +#api_server = "https://racist.siwatsystem.com" + +def analyze_face(img): + endpoint = api_server +"/process_image" + ret, jpg_buffer = cv2.imencode('.jpg',img) + b64_img = base64.b64encode(jpg_buffer) + data = {"image":b64_img.decode("utf-8")} + req = requests.post(endpoint,json=data) + res = res.content.decode("utf-8") + res = json.loads(res) + return res + +def identify_face(img, target_condidence: float): + endpoint = api_server +"/identify_face" + ret, jpg_buffer = cv2.imencode('.jpg',img) + b64_img = base64.b64encode(jpg_buffer) + data = {"image":b64_img.decode("utf-8"),"target_confidence": target_condidence} + req = requests.post(endpoint,json=data) + res = req.content.decode("utf-8") + res = json.loads(res) + return res \ No newline at end of file diff --git a/access_control_python/identify_test.py b/access_control_python/identify_test.py new file mode 100644 index 0000000..09a7ffc --- /dev/null +++ b/access_control_python/identify_test.py @@ -0,0 +1,8 @@ +import numpy as np +import cv2 +import face_processing as fp +cam = cv2.VideoCapture(0) +while True: + #Capture Image + ret, img = cam.read() + print(fp.identify_face(img,0.4)) diff --git a/access_control_python/main.py b/access_control_python/main.py index 973b8fe..15f9f76 100644 --- a/access_control_python/main.py +++ b/access_control_python/main.py @@ -1,21 +1,37 @@ +import cv2 +import threading +import time +import face_processing as fp from access_control import access_control -from line_notify import LineNotify -import time -stm32 = access_control("COM12") -time.sleep(1) -stm32.lock_door() -#stm32.unlock_door() -time.sleep(1) -#door_state = False -#while True: - #print(stm32._in_payloads) - #if(door_state != stm32.get_door_state()): - # door_state = stm32.get_door_state() - # notify = LineNotify("olK1QXriiuKgfxB6xkj7SIFfj9jsXfpl2PqmjCDuBRw") - # notify.send(f'door is {door_state}') - #if(stm32.get_door_state() == True): - # stm32.lock_door() - #else: - # stm32.unlock_door() - #time.sleep(0.01) +SERIAL_PORT = "COM12" +CAMERA_INDEX = 0 + +cam = cv2.VideoCapture(CAMERA_INDEX) +stm32 = access_control(SERIAL_PORT) + +global img +global frame_ready +frame_ready = False + +def read_webcam(): + global img + global frame_ready + while True: + ret, img = cam.read() + frame_ready = True + +threading.Thread(target=read_webcam).start() + +while True: + while not frame_ready: + time.sleep(1) + + #Try to identify face + faces = fp.identify_face(img, target_condidence=0.4) + if(len(faces)>0): + print("Door Unlocked!, Locking in 5 seconds") + stm32.unlock_door() + time.sleep(5) + stm32.lock_door() + print("Door Locked!") diff --git a/access_control_python/mcu_test.py b/access_control_python/mcu_test.py new file mode 100644 index 0000000..dbd13e9 --- /dev/null +++ b/access_control_python/mcu_test.py @@ -0,0 +1,26 @@ +from access_control import access_control +from line_notify import LineNotify +import time + +stm32 = access_control("COM12") +time.sleep(1) +while True: + cmd = input("Enter Command : ") + if(cmd == 'lock'): + stm32.lock_door() + if(cmd == 'unlock'): + stm32.unlock_door() +#stm32.unlock_door() +time.sleep(1) +#door_state = False +#while True: + #print(stm32._in_payloads) + #if(door_state != stm32.get_door_state()): + # door_state = stm32.get_door_state() + # notify = LineNotify("olK1QXriiuKgfxB6xkj7SIFfj9jsXfpl2PqmjCDuBRw") + # notify.send(f'door is {door_state}') + #if(stm32.get_door_state() == True): + # stm32.lock_door() + #else: + # stm32.unlock_door() + #time.sleep(0.01) diff --git a/access_control_python_server/app.py b/access_control_python_server/app.py index 3cb77de..31718ac 100644 --- a/access_control_python_server/app.py +++ b/access_control_python_server/app.py @@ -4,17 +4,29 @@ import cv2 import base64 import numpy as np from deepface import DeepFace +import face_recognition as face +import os app = Flask(__name__) +face_encodings: list = [] +face_names: list = [] + +def init_face() -> None: + for file in os.scandir("faces"): + face_name = file.name.split('.') + face_name = '.'.join(face_name[0:len(face_name)-1]) + face_names.append(face_name) + face_image = face.load_image_file(file.path) + face_encodings.append(face.face_encodings(face_image)[0]) @app.route('/') -def home(): +def home() -> str: return '

Ching Chong Bing Bong Ding Dong!!

' @app.route('/process_image', methods=['POST']) -def process_image(): +def process_image() -> str: print(request.data) request_data = json.loads(request.data.decode("utf-8")) img_nparr = np.frombuffer(base64.b64decode(request_data['image']), np.uint8) @@ -25,6 +37,30 @@ def process_image(): except: return [] +@app.route('/identify_face', methods=['POST']) +def identify_face() -> str: + request_data = json.loads(request.data.decode("utf-8")) + target_confidence: float = request_data['target_confidence'] + img_nparr = np.frombuffer(base64.b64decode(request_data['image']), np.uint8) + img = cv2.imdecode(img_nparr,cv2.IMREAD_COLOR) + img = cv2.resize(img, (0,0), fx=0.5,fy=0.5) + img = np.ascontiguousarray(img[:, :, ::-1]) + face_locations = face.face_locations(img) + face_encodings_img = face.face_encodings(img, face_locations) + response: list = [] + for face_encoding in face_encodings_img: + face_distances = face.face_distance(face_encodings, face_encoding) + index = np.argmin(face_distances) + confidence = 1-face_distances[index] + if confidence >= target_confidence: + response.append({'name':face_names[index],'confidence': confidence}) + return response + + if __name__ == '__main__': + init_face() + print(face_names) + print(face_encodings) + app.run() diff --git a/access_control_python_server/faces/boom.jpg b/access_control_python_server/faces/boom.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7cd0d2819d6133547d744ddd867b8f4aa6cc46c1 GIT binary patch literal 150995 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

OJkU))B~M8G6v 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 Q8BaVO)t#R}l}{u8*(uFTLI3~& literal 0 HcmV?d00001 diff --git a/access_control_python_server/faces/skt.jpg b/access_control_python_server/faces/skt.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ff6221b994edda3dd11192544abc222cb6be22c GIT binary patch literal 126458 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 literal 0 HcmV?d00001 diff --git a/access_control_python_server/requirements.txt b/access_control_python_server/requirements.txt index 1aa999e..4120b4f 100644 --- a/access_control_python_server/requirements.txt +++ b/access_control_python_server/requirements.txt @@ -1,3 +1,4 @@ flask opencv-python -deepface \ No newline at end of file +deepface +face_recognition \ No newline at end of file diff --git a/access_control_stm32/.settings/language.settings.xml b/access_control_stm32/.settings/language.settings.xml index beef393..20511cb 100644 --- a/access_control_stm32/.settings/language.settings.xml +++ b/access_control_stm32/.settings/language.settings.xml @@ -5,7 +5,7 @@ - + @@ -16,7 +16,7 @@ - + diff --git a/access_control_stm32/Core/Src/main.c b/access_control_stm32/Core/Src/main.c index 9ea9cfb..dc0a673 100644 --- a/access_control_stm32/Core/Src/main.c +++ b/access_control_stm32/Core/Src/main.c @@ -59,18 +59,12 @@ UART_HandleTypeDef huart2; /* Definitions for mainTask */ osThreadId_t mainTaskHandle; -const osThreadAttr_t mainTask_attributes = { - .name = "mainTask", - .stack_size = 128 * 4, - .priority = (osPriority_t) osPriorityNormal, -}; +const osThreadAttr_t mainTask_attributes = { .name = "mainTask", .stack_size = + 128 * 4, .priority = (osPriority_t) osPriorityNormal, }; /* Definitions for doorHandler */ osThreadId_t doorHandlerHandle; -const osThreadAttr_t doorHandler_attributes = { - .name = "doorHandler", - .stack_size = 128 * 4, - .priority = (osPriority_t) osPriorityLow, -}; +const osThreadAttr_t doorHandler_attributes = { .name = "doorHandler", + .stack_size = 128 * 4, .priority = (osPriority_t) osPriorityLow, }; /* USER CODE BEGIN PV */ uint8_t uart_buffer[10]; uint8_t uart_index = 0; @@ -101,207 +95,201 @@ void startDoorHandleTask(void *argument); /* USER CODE END 0 */ /** - * @brief The application entry point. - * @retval int - */ -int main(void) -{ - /* USER CODE BEGIN 1 */ + * @brief The application entry point. + * @retval int + */ +int main(void) { + /* USER CODE BEGIN 1 */ - /* USER CODE END 1 */ + /* USER CODE END 1 */ - /* MCU Configuration--------------------------------------------------------*/ + /* MCU Configuration--------------------------------------------------------*/ - /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ - HAL_Init(); + /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ + HAL_Init(); - /* USER CODE BEGIN Init */ + /* USER CODE BEGIN Init */ - /* USER CODE END Init */ + /* USER CODE END Init */ - /* Configure the system clock */ - SystemClock_Config(); + /* Configure the system clock */ + SystemClock_Config(); - /* USER CODE BEGIN SysInit */ + /* USER CODE BEGIN SysInit */ - /* USER CODE END SysInit */ + /* USER CODE END SysInit */ - /* Initialize all configured peripherals */ - MX_GPIO_Init(); - MX_USART2_UART_Init(); - /* USER CODE BEGIN 2 */ + /* Initialize all configured peripherals */ + MX_GPIO_Init(); + MX_USART2_UART_Init(); + /* USER CODE BEGIN 2 */ memset(uart_buffer, 0, 10); - /* USER CODE END 2 */ + /* USER CODE END 2 */ - /* Init scheduler */ - osKernelInitialize(); + /* Init scheduler */ + osKernelInitialize(); - /* USER CODE BEGIN RTOS_MUTEX */ + /* USER CODE BEGIN RTOS_MUTEX */ /* add mutexes, ... */ - /* USER CODE END RTOS_MUTEX */ + /* USER CODE END RTOS_MUTEX */ - /* USER CODE BEGIN RTOS_SEMAPHORES */ + /* USER CODE BEGIN RTOS_SEMAPHORES */ /* add semaphores, ... */ - /* USER CODE END RTOS_SEMAPHORES */ + /* USER CODE END RTOS_SEMAPHORES */ - /* USER CODE BEGIN RTOS_TIMERS */ + /* USER CODE BEGIN RTOS_TIMERS */ /* start timers, add new ones, ... */ - /* USER CODE END RTOS_TIMERS */ + /* USER CODE END RTOS_TIMERS */ - /* USER CODE BEGIN RTOS_QUEUES */ + /* USER CODE BEGIN RTOS_QUEUES */ /* add queues, ... */ - /* USER CODE END RTOS_QUEUES */ + /* USER CODE END RTOS_QUEUES */ - /* Create the thread(s) */ - /* creation of mainTask */ - mainTaskHandle = osThreadNew(StartMainTask, NULL, &mainTask_attributes); + /* Create the thread(s) */ + /* creation of mainTask */ + mainTaskHandle = osThreadNew(StartMainTask, NULL, &mainTask_attributes); - /* creation of doorHandler */ - doorHandlerHandle = osThreadNew(startDoorHandleTask, NULL, &doorHandler_attributes); + /* creation of doorHandler */ + doorHandlerHandle = osThreadNew(startDoorHandleTask, NULL, + &doorHandler_attributes); - /* USER CODE BEGIN RTOS_THREADS */ + /* USER CODE BEGIN RTOS_THREADS */ /* add threads, ... */ - /* USER CODE END RTOS_THREADS */ + /* USER CODE END RTOS_THREADS */ - /* USER CODE BEGIN RTOS_EVENTS */ + /* USER CODE BEGIN RTOS_EVENTS */ /* add events, ... */ - /* USER CODE END RTOS_EVENTS */ + /* USER CODE END RTOS_EVENTS */ - /* Start scheduler */ - osKernelStart(); + /* Start scheduler */ + osKernelStart(); - /* We should never get here as control is now taken by the scheduler */ - /* Infinite loop */ - /* USER CODE BEGIN WHILE */ + /* We should never get here as control is now taken by the scheduler */ + /* Infinite loop */ + /* USER CODE BEGIN WHILE */ while (1) { } - /* USER CODE END WHILE */ + /* USER CODE END WHILE */ - /* USER CODE BEGIN 3 */ + /* USER CODE BEGIN 3 */ - /* USER CODE END 3 */ + /* USER CODE END 3 */ } /** - * @brief System Clock Configuration - * @retval None - */ -void SystemClock_Config(void) -{ - RCC_OscInitTypeDef RCC_OscInitStruct = {0}; - RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; + * @brief System Clock Configuration + * @retval None + */ +void SystemClock_Config(void) { + RCC_OscInitTypeDef RCC_OscInitStruct = { 0 }; + RCC_ClkInitTypeDef RCC_ClkInitStruct = { 0 }; - /** Configure the main internal regulator output voltage - */ - __HAL_RCC_PWR_CLK_ENABLE(); - __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); + /** Configure the main internal regulator output voltage + */ + __HAL_RCC_PWR_CLK_ENABLE(); + __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); - /** Initializes the RCC Oscillators according to the specified parameters - * in the RCC_OscInitTypeDef structure. - */ - RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI; - RCC_OscInitStruct.HSIState = RCC_HSI_ON; - RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; - RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; - RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; - RCC_OscInitStruct.PLL.PLLM = 16; - RCC_OscInitStruct.PLL.PLLN = 336; - RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; - RCC_OscInitStruct.PLL.PLLQ = 4; - if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) - { - Error_Handler(); - } + /** Initializes the RCC Oscillators according to the specified parameters + * in the RCC_OscInitTypeDef structure. + */ + RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI; + RCC_OscInitStruct.HSIState = RCC_HSI_ON; + RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; + RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; + RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; + RCC_OscInitStruct.PLL.PLLM = 16; + RCC_OscInitStruct.PLL.PLLN = 336; + RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; + RCC_OscInitStruct.PLL.PLLQ = 4; + if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { + Error_Handler(); + } - /** Initializes the CPU, AHB and APB buses clocks - */ - RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK - |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; - RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; - RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; - RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; - RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; + /** Initializes the CPU, AHB and APB buses clocks + */ + RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK + | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; + RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; + RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; + RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; + RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; - if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) - { - Error_Handler(); - } + if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) { + Error_Handler(); + } } /** - * @brief USART2 Initialization Function - * @param None - * @retval None - */ -static void MX_USART2_UART_Init(void) -{ + * @brief USART2 Initialization Function + * @param None + * @retval None + */ +static void MX_USART2_UART_Init(void) { - /* USER CODE BEGIN USART2_Init 0 */ + /* USER CODE BEGIN USART2_Init 0 */ - /* USER CODE END USART2_Init 0 */ + /* USER CODE END USART2_Init 0 */ - /* USER CODE BEGIN USART2_Init 1 */ + /* USER CODE BEGIN USART2_Init 1 */ - /* USER CODE END USART2_Init 1 */ - huart2.Instance = USART2; - huart2.Init.BaudRate = 9600; - huart2.Init.WordLength = UART_WORDLENGTH_8B; - huart2.Init.StopBits = UART_STOPBITS_1; - huart2.Init.Parity = UART_PARITY_NONE; - huart2.Init.Mode = UART_MODE_TX_RX; - huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; - huart2.Init.OverSampling = UART_OVERSAMPLING_16; - if (HAL_UART_Init(&huart2) != HAL_OK) - { - Error_Handler(); - } - /* USER CODE BEGIN USART2_Init 2 */ + /* USER CODE END USART2_Init 1 */ + huart2.Instance = USART2; + huart2.Init.BaudRate = 9600; + huart2.Init.WordLength = UART_WORDLENGTH_8B; + huart2.Init.StopBits = UART_STOPBITS_1; + huart2.Init.Parity = UART_PARITY_NONE; + huart2.Init.Mode = UART_MODE_TX_RX; + huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart2.Init.OverSampling = UART_OVERSAMPLING_16; + if (HAL_UART_Init(&huart2) != HAL_OK) { + Error_Handler(); + } + /* USER CODE BEGIN USART2_Init 2 */ - /* USER CODE END USART2_Init 2 */ + /* USER CODE END USART2_Init 2 */ } /** - * @brief GPIO Initialization Function - * @param None - * @retval None - */ -static void MX_GPIO_Init(void) -{ - GPIO_InitTypeDef GPIO_InitStruct = {0}; -/* USER CODE BEGIN MX_GPIO_Init_1 */ -/* USER CODE END MX_GPIO_Init_1 */ + * @brief GPIO Initialization Function + * @param None + * @retval None + */ +static void MX_GPIO_Init(void) { + GPIO_InitTypeDef GPIO_InitStruct = { 0 }; + /* USER CODE BEGIN MX_GPIO_Init_1 */ + /* USER CODE END MX_GPIO_Init_1 */ - /* GPIO Ports Clock Enable */ - __HAL_RCC_GPIOC_CLK_ENABLE(); - __HAL_RCC_GPIOH_CLK_ENABLE(); - __HAL_RCC_GPIOA_CLK_ENABLE(); - __HAL_RCC_GPIOB_CLK_ENABLE(); + /* GPIO Ports Clock Enable */ + __HAL_RCC_GPIOC_CLK_ENABLE(); + __HAL_RCC_GPIOH_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); + __HAL_RCC_GPIOB_CLK_ENABLE(); - /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(GPIOA, LD2_Pin|Door_Lock_Pin, GPIO_PIN_RESET); + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(GPIOA, LD2_Pin | Door_Lock_Pin, GPIO_PIN_RESET); - /*Configure GPIO pin : B1_Pin */ - GPIO_InitStruct.Pin = B1_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; - GPIO_InitStruct.Pull = GPIO_NOPULL; - HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); + /*Configure GPIO pin : B1_Pin */ + GPIO_InitStruct.Pin = B1_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Pull = GPIO_NOPULL; + HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); - /*Configure GPIO pins : LD2_Pin Door_Lock_Pin */ - GPIO_InitStruct.Pin = LD2_Pin|Door_Lock_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; - GPIO_InitStruct.Pull = GPIO_NOPULL; - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; - HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + /*Configure GPIO pins : LD2_Pin Door_Lock_Pin */ + GPIO_InitStruct.Pin = LD2_Pin | Door_Lock_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - /*Configure GPIO pin : Door_Sensor_Pin */ - GPIO_InitStruct.Pin = Door_Sensor_Pin; - GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - GPIO_InitStruct.Pull = GPIO_PULLUP; - HAL_GPIO_Init(Door_Sensor_GPIO_Port, &GPIO_InitStruct); + /*Configure GPIO pin : Door_Sensor_Pin */ + GPIO_InitStruct.Pin = Door_Sensor_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_INPUT; + GPIO_InitStruct.Pull = GPIO_PULLUP; + HAL_GPIO_Init(Door_Sensor_GPIO_Port, &GPIO_InitStruct); -/* USER CODE BEGIN MX_GPIO_Init_2 */ -/* USER CODE END MX_GPIO_Init_2 */ + /* USER CODE BEGIN MX_GPIO_Init_2 */ + /* USER CODE END MX_GPIO_Init_2 */ } /* USER CODE BEGIN 4 */ @@ -315,9 +303,8 @@ static void MX_GPIO_Init(void) * @retval None */ /* USER CODE END Header_StartMainTask */ -void StartMainTask(void *argument) -{ - /* USER CODE BEGIN 5 */ +void StartMainTask(void *argument) { + /* USER CODE BEGIN 5 */ memset(uart_buffer, 0, 10); /* USER CODE END 2 */ @@ -346,14 +333,14 @@ void StartMainTask(void *argument) } uart_index = 0; memset(uart_buffer, 0, 10); - } else if (uart_index > sizeof(uart_buffer)-1) { + } else if (uart_index > sizeof(uart_buffer) - 1) { memset(uart_buffer, 0, 10); - uart_index=0; + uart_index = 0; } } vTaskDelay(1); } - /* USER CODE END 5 */ + /* USER CODE END 5 */ } /* USER CODE BEGIN Header_startDoorHandleTask */ @@ -363,9 +350,8 @@ void StartMainTask(void *argument) * @retval None */ /* USER CODE END Header_startDoorHandleTask */ -void startDoorHandleTask(void *argument) -{ - /* USER CODE BEGIN startDoorHandleTask */ +void startDoorHandleTask(void *argument) { + /* USER CODE BEGIN startDoorHandleTask */ /* Infinite loop */ for (;;) { door_state = HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); @@ -374,6 +360,7 @@ void startDoorHandleTask(void *argument) if (door_state == DOOR_STATE_CLOSED) { HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, 1); door_lock_state = DOOR_LOCK_LOCKED; + door_lock_waiting = false; } else { if (!door_lock_waiting) { door_lock_command_time = HAL_GetTick(); @@ -387,6 +374,7 @@ void startDoorHandleTask(void *argument) } } else { HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, 1); + door_lock_waiting = false; door_lock_state = DOOR_LOCK_LOCKED; } } @@ -394,49 +382,58 @@ void startDoorHandleTask(void *argument) } else if (door_lock_state_command == DOOR_LOCK_UNLOCKED) { HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, 0); door_lock_state = DOOR_LOCK_UNLOCKED; - + door_lock_waiting = false; } } + if(!door_lock_state_command && door_lock_waiting) { + door_lock_waiting = false; + } + if (alarm_active && !door_lock_state_command) { + HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 0); + alarm_active = false; + } + if (!door_state && door_lock_state) { + HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 1); + alarm_active = true; + } //HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, uart_buffer[1]); - vTaskDelay(100); + vTaskDelay(50); } - /* USER CODE END startDoorHandleTask */ + /* USER CODE END startDoorHandleTask */ } /** - * @brief Period elapsed callback in non blocking mode - * @note This function is called when TIM1 interrupt took place, inside - * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment - * a global variable "uwTick" used as application time base. - * @param htim : TIM handle - * @retval None - */ -void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) -{ - /* USER CODE BEGIN Callback 0 */ + * @brief Period elapsed callback in non blocking mode + * @note This function is called when TIM1 interrupt took place, inside + * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment + * a global variable "uwTick" used as application time base. + * @param htim : TIM handle + * @retval None + */ +void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) { + /* USER CODE BEGIN Callback 0 */ - /* USER CODE END Callback 0 */ - if (htim->Instance == TIM1) { - HAL_IncTick(); - } - /* USER CODE BEGIN Callback 1 */ + /* USER CODE END Callback 0 */ + if (htim->Instance == TIM1) { + HAL_IncTick(); + } + /* USER CODE BEGIN Callback 1 */ - /* USER CODE END Callback 1 */ + /* USER CODE END Callback 1 */ } /** - * @brief This function is executed in case of error occurrence. - * @retval None - */ -void Error_Handler(void) -{ - /* USER CODE BEGIN Error_Handler_Debug */ + * @brief This function is executed in case of error occurrence. + * @retval None + */ +void Error_Handler(void) { + /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ __disable_irq(); while (1) { } - /* USER CODE END Error_Handler_Debug */ + /* USER CODE END Error_Handler_Debug */ } #ifdef USE_FULL_ASSERT diff --git a/access_control_stm32/Debug/Core/Src/main.cyclo b/access_control_stm32/Debug/Core/Src/main.cyclo index 9115097..81a251f 100644 --- a/access_control_stm32/Debug/Core/Src/main.cyclo +++ b/access_control_stm32/Debug/Core/Src/main.cyclo @@ -1,8 +1,8 @@ -../Core/Src/main.c:107:5:main 1 -../Core/Src/main.c:189:6:SystemClock_Config 3 -../Core/Src/main.c:236:13:MX_USART2_UART_Init 2 -../Core/Src/main.c:269:13:MX_GPIO_Init 1 -../Core/Src/main.c:318:6:StartMainTask 8 -../Core/Src/main.c:366:6:startDoorHandleTask 8 -../Core/Src/main.c:415:6:HAL_TIM_PeriodElapsedCallback 2 -../Core/Src/main.c:432:6:Error_Handler 1 +../Core/Src/main.c:101:5:main 1 +../Core/Src/main.c:183:6:SystemClock_Config 3 +../Core/Src/main.c:227:13:MX_USART2_UART_Init 2 +../Core/Src/main.c:258:13:MX_GPIO_Init 1 +../Core/Src/main.c:306:6:StartMainTask 8 +../Core/Src/main.c:353:6:startDoorHandleTask 14 +../Core/Src/main.c:414:6:HAL_TIM_PeriodElapsedCallback 2 +../Core/Src/main.c:430:6:Error_Handler 1 diff --git a/access_control_stm32/Debug/Core/Src/main.o b/access_control_stm32/Debug/Core/Src/main.o index def9ace6817b3d48fa2f37b20186cd6ec023403d..382cb3696daea2c240e7859a6bc1d37caabc8ab1 100644 GIT binary patch delta 3152 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 Ef1&Ts$^ZZW diff --git a/access_control_stm32/Debug/Core/Src/main.su b/access_control_stm32/Debug/Core/Src/main.su index 11d44e4..159789e 100644 --- a/access_control_stm32/Debug/Core/Src/main.su +++ b/access_control_stm32/Debug/Core/Src/main.su @@ -1,8 +1,8 @@ -../Core/Src/main.c:107:5:main 8 static -../Core/Src/main.c:189:6:SystemClock_Config 88 static -../Core/Src/main.c:236:13:MX_USART2_UART_Init 8 static -../Core/Src/main.c:269:13:MX_GPIO_Init 48 static -../Core/Src/main.c:318:6:StartMainTask 24 static -../Core/Src/main.c:366:6:startDoorHandleTask 16 static -../Core/Src/main.c:415:6:HAL_TIM_PeriodElapsedCallback 16 static -../Core/Src/main.c:432:6:Error_Handler 4 static,ignoring_inline_asm +../Core/Src/main.c:101:5:main 8 static +../Core/Src/main.c:183:6:SystemClock_Config 88 static +../Core/Src/main.c:227:13:MX_USART2_UART_Init 8 static +../Core/Src/main.c:258:13:MX_GPIO_Init 48 static +../Core/Src/main.c:306:6:StartMainTask 24 static +../Core/Src/main.c:353:6:startDoorHandleTask 16 static +../Core/Src/main.c:414:6:HAL_TIM_PeriodElapsedCallback 16 static +../Core/Src/main.c:430:6:Error_Handler 4 static,ignoring_inline_asm diff --git a/access_control_stm32/Debug/access_control_stm32.elf b/access_control_stm32/Debug/access_control_stm32.elf index 72a1b82bfaebb3a5f7a22afcf6ceb773c093ca00..1c2debede06643b2afc66e0d7937f61f434c4438 100644 GIT binary patch delta 18354 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 L_o}Ij&A9&s%n%U& delta 18152 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: 80001c4: b508 push {r3, lr} @@ -76,7 +76,7 @@ Disassembly of section .text: 80001d2: bd08 pop {r3, pc} 80001d4: 00000000 .word 0x00000000 80001d8: 20000064 .word 0x20000064 - 80001dc: 08005630 .word 0x08005630 + 80001dc: 080056b0 .word 0x080056b0 080001e0 <__aeabi_uldivmod>: 80001e0: b953 cbnz r3, 80001f8 <__aeabi_uldivmod+0x18> @@ -352,109 +352,109 @@ Disassembly of section .text: 80004da: bf00 nop 080004dc
: + /** - * @brief The application entry point. - * @retval int - */ -int main(void) -{ + * @brief The application entry point. + * @retval int + */ +int main(void) { 80004dc: b580 push {r7, lr} 80004de: af00 add r7, sp, #0 - /* USER CODE END 1 */ + /* USER CODE END 1 */ - /* MCU Configuration--------------------------------------------------------*/ + /* MCU Configuration--------------------------------------------------------*/ - /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ - HAL_Init(); - 80004e0: f000 fb92 bl 8000c08 - /* USER CODE BEGIN Init */ + /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ + HAL_Init(); + 80004e0: f000 fbd0 bl 8000c84 + /* USER CODE BEGIN Init */ - /* USER CODE END Init */ + /* USER CODE END Init */ - /* Configure the system clock */ - SystemClock_Config(); + /* Configure the system clock */ + SystemClock_Config(); 80004e4: f000 f82c bl 8000540 - /* USER CODE BEGIN SysInit */ + /* USER CODE BEGIN SysInit */ - /* USER CODE END SysInit */ + /* USER CODE END SysInit */ - /* Initialize all configured peripherals */ - MX_GPIO_Init(); + /* Initialize all configured peripherals */ + MX_GPIO_Init(); 80004e8: f000 f8be bl 8000668 - MX_USART2_UART_Init(); + MX_USART2_UART_Init(); 80004ec: f000 f892 bl 8000614 - /* USER CODE BEGIN 2 */ + /* USER CODE BEGIN 2 */ memset(uart_buffer, 0, 10); 80004f0: 220a movs r2, #10 80004f2: 2100 movs r1, #0 80004f4: 480b ldr r0, [pc, #44] ; (8000524 ) - 80004f6: f004 ffb1 bl 800545c - /* USER CODE END 2 */ + 80004f6: f004 fff1 bl 80054dc + /* USER CODE END 2 */ - /* Init scheduler */ - osKernelInitialize(); - 80004fa: f002 fa51 bl 80029a0 + /* Init scheduler */ + osKernelInitialize(); + 80004fa: f002 fa8f bl 8002a1c /* add queues, ... */ - /* USER CODE END RTOS_QUEUES */ + /* USER CODE END RTOS_QUEUES */ - /* Create the thread(s) */ - /* creation of mainTask */ - mainTaskHandle = osThreadNew(StartMainTask, NULL, &mainTask_attributes); + /* Create the thread(s) */ + /* creation of mainTask */ + mainTaskHandle = osThreadNew(StartMainTask, NULL, &mainTask_attributes); 80004fe: 4a0a ldr r2, [pc, #40] ; (8000528 ) 8000500: 2100 movs r1, #0 8000502: 480a ldr r0, [pc, #40] ; (800052c ) - 8000504: f002 fa96 bl 8002a34 + 8000504: f002 fad4 bl 8002ab0 8000508: 4603 mov r3, r0 800050a: 4a09 ldr r2, [pc, #36] ; (8000530 ) 800050c: 6013 str r3, [r2, #0] - /* creation of doorHandler */ - doorHandlerHandle = osThreadNew(startDoorHandleTask, NULL, &doorHandler_attributes); + /* creation of doorHandler */ + doorHandlerHandle = osThreadNew(startDoorHandleTask, NULL, 800050e: 4a09 ldr r2, [pc, #36] ; (8000534 ) 8000510: 2100 movs r1, #0 8000512: 4809 ldr r0, [pc, #36] ; (8000538 ) - 8000514: f002 fa8e bl 8002a34 + 8000514: f002 facc bl 8002ab0 8000518: 4603 mov r3, r0 800051a: 4a08 ldr r2, [pc, #32] ; (800053c ) 800051c: 6013 str r3, [r2, #0] - /* USER CODE BEGIN RTOS_EVENTS */ + /* USER CODE BEGIN RTOS_EVENTS */ /* add events, ... */ - /* USER CODE END RTOS_EVENTS */ + /* USER CODE END RTOS_EVENTS */ - /* Start scheduler */ - osKernelStart(); - 800051e: f002 fa63 bl 80029e8 + /* Start scheduler */ + osKernelStart(); + 800051e: f002 faa1 bl 8002a64 - /* We should never get here as control is now taken by the scheduler */ - /* Infinite loop */ - /* USER CODE BEGIN WHILE */ + /* We should never get here as control is now taken by the scheduler */ + /* Infinite loop */ + /* USER CODE BEGIN WHILE */ while (1) { 8000522: e7fe b.n 8000522 8000524: 200000c8 .word 0x200000c8 - 8000528: 08005678 .word 0x08005678 + 8000528: 080056f8 .word 0x080056f8 800052c: 08000761 .word 0x08000761 8000530: 200000c0 .word 0x200000c0 - 8000534: 0800569c .word 0x0800569c + 8000534: 0800571c .word 0x0800571c 8000538: 08000855 .word 0x08000855 800053c: 200000c4 .word 0x200000c4 08000540 : + /** - * @brief System Clock Configuration - * @retval None - */ -void SystemClock_Config(void) -{ + * @brief System Clock Configuration + * @retval None + */ +void SystemClock_Config(void) { 8000540: b580 push {r7, lr} 8000542: b094 sub sp, #80 ; 0x50 8000544: af00 add r7, sp, #0 - RCC_OscInitTypeDef RCC_OscInitStruct = {0}; + RCC_OscInitTypeDef RCC_OscInitStruct = { 0 }; 8000546: f107 0320 add.w r3, r7, #32 800054a: 2230 movs r2, #48 ; 0x30 800054c: 2100 movs r1, #0 800054e: 4618 mov r0, r3 - 8000550: f004 ff84 bl 800545c - RCC_ClkInitTypeDef RCC_ClkInitStruct = {0}; + 8000550: f004 ffc4 bl 80054dc + RCC_ClkInitTypeDef RCC_ClkInitStruct = { 0 }; 8000554: f107 030c add.w r3, r7, #12 8000558: 2200 movs r2, #0 800055a: 601a str r2, [r3, #0] @@ -463,9 +463,9 @@ void SystemClock_Config(void) 8000560: 60da str r2, [r3, #12] 8000562: 611a str r2, [r3, #16] - /** Configure the main internal regulator output voltage - */ - __HAL_RCC_PWR_CLK_ENABLE(); + /** Configure the main internal regulator output voltage + */ + __HAL_RCC_PWR_CLK_ENABLE(); 8000564: 2300 movs r3, #0 8000566: 60bb str r3, [r7, #8] 8000568: 4b28 ldr r3, [pc, #160] ; (800060c ) @@ -478,7 +478,7 @@ void SystemClock_Config(void) 8000578: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 800057c: 60bb str r3, [r7, #8] 800057e: 68bb ldr r3, [r7, #8] - __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); + __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); 8000580: 2300 movs r3, #0 8000582: 607b str r3, [r7, #4] 8000584: 4b22 ldr r3, [pc, #136] ; (8000610 ) @@ -492,79 +492,77 @@ void SystemClock_Config(void) 8000598: 607b str r3, [r7, #4] 800059a: 687b ldr r3, [r7, #4] - /** Initializes the RCC Oscillators according to the specified parameters - * in the RCC_OscInitTypeDef structure. - */ - RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI; + /** Initializes the RCC Oscillators according to the specified parameters + * in the RCC_OscInitTypeDef structure. + */ + RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI; 800059c: 2302 movs r3, #2 800059e: 623b str r3, [r7, #32] - RCC_OscInitStruct.HSIState = RCC_HSI_ON; + RCC_OscInitStruct.HSIState = RCC_HSI_ON; 80005a0: 2301 movs r3, #1 80005a2: 62fb str r3, [r7, #44] ; 0x2c - RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; + RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT; 80005a4: 2310 movs r3, #16 80005a6: 633b str r3, [r7, #48] ; 0x30 - RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; + RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON; 80005a8: 2302 movs r3, #2 80005aa: 63bb str r3, [r7, #56] ; 0x38 - RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; + RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSI; 80005ac: 2300 movs r3, #0 80005ae: 63fb str r3, [r7, #60] ; 0x3c - RCC_OscInitStruct.PLL.PLLM = 16; + RCC_OscInitStruct.PLL.PLLM = 16; 80005b0: 2310 movs r3, #16 80005b2: 643b str r3, [r7, #64] ; 0x40 - RCC_OscInitStruct.PLL.PLLN = 336; + RCC_OscInitStruct.PLL.PLLN = 336; 80005b4: f44f 73a8 mov.w r3, #336 ; 0x150 80005b8: 647b str r3, [r7, #68] ; 0x44 - RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; + RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV4; 80005ba: 2304 movs r3, #4 80005bc: 64bb str r3, [r7, #72] ; 0x48 - RCC_OscInitStruct.PLL.PLLQ = 4; + RCC_OscInitStruct.PLL.PLLQ = 4; 80005be: 2304 movs r3, #4 80005c0: 64fb str r3, [r7, #76] ; 0x4c - if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) + if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) { 80005c2: f107 0320 add.w r3, r7, #32 80005c6: 4618 mov r0, r3 - 80005c8: f000 fdf8 bl 80011bc + 80005c8: f000 fe36 bl 8001238 80005cc: 4603 mov r3, r0 80005ce: 2b00 cmp r3, #0 80005d0: d001 beq.n 80005d6 - { - Error_Handler(); - 80005d2: f000 f9d1 bl 8000978 - } + Error_Handler(); + 80005d2: f000 fa0f bl 80009f4 + } - /** Initializes the CPU, AHB and APB buses clocks - */ - RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK + /** Initializes the CPU, AHB and APB buses clocks + */ + RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_SYSCLK 80005d6: 230f movs r3, #15 80005d8: 60fb str r3, [r7, #12] - |RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2; - RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; + | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; + RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; 80005da: 2302 movs r3, #2 80005dc: 613b str r3, [r7, #16] - RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; + RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1; 80005de: 2300 movs r3, #0 80005e0: 617b str r3, [r7, #20] - RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; + RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV2; 80005e2: f44f 5380 mov.w r3, #4096 ; 0x1000 80005e6: 61bb str r3, [r7, #24] - RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; + RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1; 80005e8: 2300 movs r3, #0 80005ea: 61fb str r3, [r7, #28] - if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) + if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK) { 80005ec: f107 030c add.w r3, r7, #12 80005f0: 2102 movs r1, #2 80005f2: 4618 mov r0, r3 - 80005f4: f001 f85a bl 80016ac + 80005f4: f001 f898 bl 8001728 80005f8: 4603 mov r3, r0 80005fa: 2b00 cmp r3, #0 80005fc: d001 beq.n 8000602 - { - Error_Handler(); - 80005fe: f000 f9bb bl 8000978 - } + Error_Handler(); + 80005fe: f000 f9f9 bl 80009f4 + } } 8000602: bf00 nop 8000604: 3750 adds r7, #80 ; 0x50 @@ -575,64 +573,63 @@ void SystemClock_Config(void) 8000610: 40007000 .word 0x40007000 08000614 : - * @brief USART2 Initialization Function - * @param None - * @retval None - */ -static void MX_USART2_UART_Init(void) -{ +/** + * @brief USART2 Initialization Function + * @param None + * @retval None + */ +static void MX_USART2_UART_Init(void) { 8000614: b580 push {r7, lr} 8000616: af00 add r7, sp, #0 - /* USER CODE END USART2_Init 0 */ + /* USER CODE END USART2_Init 0 */ - /* USER CODE BEGIN USART2_Init 1 */ + /* USER CODE BEGIN USART2_Init 1 */ - /* USER CODE END USART2_Init 1 */ - huart2.Instance = USART2; + /* USER CODE END USART2_Init 1 */ + huart2.Instance = USART2; 8000618: 4b11 ldr r3, [pc, #68] ; (8000660 ) 800061a: 4a12 ldr r2, [pc, #72] ; (8000664 ) 800061c: 601a str r2, [r3, #0] - huart2.Init.BaudRate = 9600; + huart2.Init.BaudRate = 9600; 800061e: 4b10 ldr r3, [pc, #64] ; (8000660 ) 8000620: f44f 5216 mov.w r2, #9600 ; 0x2580 8000624: 605a str r2, [r3, #4] - huart2.Init.WordLength = UART_WORDLENGTH_8B; + huart2.Init.WordLength = UART_WORDLENGTH_8B; 8000626: 4b0e ldr r3, [pc, #56] ; (8000660 ) 8000628: 2200 movs r2, #0 800062a: 609a str r2, [r3, #8] - huart2.Init.StopBits = UART_STOPBITS_1; + huart2.Init.StopBits = UART_STOPBITS_1; 800062c: 4b0c ldr r3, [pc, #48] ; (8000660 ) 800062e: 2200 movs r2, #0 8000630: 60da str r2, [r3, #12] - huart2.Init.Parity = UART_PARITY_NONE; + huart2.Init.Parity = UART_PARITY_NONE; 8000632: 4b0b ldr r3, [pc, #44] ; (8000660 ) 8000634: 2200 movs r2, #0 8000636: 611a str r2, [r3, #16] - huart2.Init.Mode = UART_MODE_TX_RX; + huart2.Init.Mode = UART_MODE_TX_RX; 8000638: 4b09 ldr r3, [pc, #36] ; (8000660 ) 800063a: 220c movs r2, #12 800063c: 615a str r2, [r3, #20] - huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; + huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE; 800063e: 4b08 ldr r3, [pc, #32] ; (8000660 ) 8000640: 2200 movs r2, #0 8000642: 619a str r2, [r3, #24] - huart2.Init.OverSampling = UART_OVERSAMPLING_16; + huart2.Init.OverSampling = UART_OVERSAMPLING_16; 8000644: 4b06 ldr r3, [pc, #24] ; (8000660 ) 8000646: 2200 movs r2, #0 8000648: 61da str r2, [r3, #28] - if (HAL_UART_Init(&huart2) != HAL_OK) + if (HAL_UART_Init(&huart2) != HAL_OK) { 800064a: 4805 ldr r0, [pc, #20] ; (8000660 ) - 800064c: f001 fd00 bl 8002050 + 800064c: f001 fd3e bl 80020cc 8000650: 4603 mov r3, r0 8000652: 2b00 cmp r3, #0 8000654: d001 beq.n 800065a - { - Error_Handler(); - 8000656: f000 f98f bl 8000978 - } - /* USER CODE BEGIN USART2_Init 2 */ + Error_Handler(); + 8000656: f000 f9cd bl 80009f4 + } + /* USER CODE BEGIN USART2_Init 2 */ - /* USER CODE END USART2_Init 2 */ + /* USER CODE END USART2_Init 2 */ } 800065a: bf00 nop @@ -642,16 +639,16 @@ static void MX_USART2_UART_Init(void) 8000664: 40004400 .word 0x40004400 08000668 : - * @brief GPIO Initialization Function - * @param None - * @retval None - */ -static void MX_GPIO_Init(void) -{ +/** + * @brief GPIO Initialization Function + * @param None + * @retval None + */ +static void MX_GPIO_Init(void) { 8000668: b580 push {r7, lr} 800066a: b08a sub sp, #40 ; 0x28 800066c: af00 add r7, sp, #0 - GPIO_InitTypeDef GPIO_InitStruct = {0}; + GPIO_InitTypeDef GPIO_InitStruct = { 0 }; 800066e: f107 0314 add.w r3, r7, #20 8000672: 2200 movs r2, #0 8000674: 601a str r2, [r3, #0] @@ -659,11 +656,11 @@ static void MX_GPIO_Init(void) 8000678: 609a str r2, [r3, #8] 800067a: 60da str r2, [r3, #12] 800067c: 611a str r2, [r3, #16] -/* USER CODE BEGIN MX_GPIO_Init_1 */ -/* USER CODE END MX_GPIO_Init_1 */ + /* USER CODE BEGIN MX_GPIO_Init_1 */ + /* USER CODE END MX_GPIO_Init_1 */ - /* GPIO Ports Clock Enable */ - __HAL_RCC_GPIOC_CLK_ENABLE(); + /* GPIO Ports Clock Enable */ + __HAL_RCC_GPIOC_CLK_ENABLE(); 800067e: 2300 movs r3, #0 8000680: 613b str r3, [r7, #16] 8000682: 4b34 ldr r3, [pc, #208] ; (8000754 ) @@ -676,7 +673,7 @@ static void MX_GPIO_Init(void) 8000692: f003 0304 and.w r3, r3, #4 8000696: 613b str r3, [r7, #16] 8000698: 693b ldr r3, [r7, #16] - __HAL_RCC_GPIOH_CLK_ENABLE(); + __HAL_RCC_GPIOH_CLK_ENABLE(); 800069a: 2300 movs r3, #0 800069c: 60fb str r3, [r7, #12] 800069e: 4b2d ldr r3, [pc, #180] ; (8000754 ) @@ -689,7 +686,7 @@ static void MX_GPIO_Init(void) 80006ae: f003 0380 and.w r3, r3, #128 ; 0x80 80006b2: 60fb str r3, [r7, #12] 80006b4: 68fb ldr r3, [r7, #12] - __HAL_RCC_GPIOA_CLK_ENABLE(); + __HAL_RCC_GPIOA_CLK_ENABLE(); 80006b6: 2300 movs r3, #0 80006b8: 60bb str r3, [r7, #8] 80006ba: 4b26 ldr r3, [pc, #152] ; (8000754 ) @@ -702,7 +699,7 @@ static void MX_GPIO_Init(void) 80006ca: f003 0301 and.w r3, r3, #1 80006ce: 60bb str r3, [r7, #8] 80006d0: 68bb ldr r3, [r7, #8] - __HAL_RCC_GPIOB_CLK_ENABLE(); + __HAL_RCC_GPIOB_CLK_ENABLE(); 80006d2: 2300 movs r3, #0 80006d4: 607b str r3, [r7, #4] 80006d6: 4b1f ldr r3, [pc, #124] ; (8000754 ) @@ -716,66 +713,66 @@ static void MX_GPIO_Init(void) 80006ea: 607b str r3, [r7, #4] 80006ec: 687b ldr r3, [r7, #4] - /*Configure GPIO pin Output Level */ - HAL_GPIO_WritePin(GPIOA, LD2_Pin|Door_Lock_Pin, GPIO_PIN_RESET); + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(GPIOA, LD2_Pin | Door_Lock_Pin, GPIO_PIN_RESET); 80006ee: 2200 movs r2, #0 80006f0: f44f 7108 mov.w r1, #544 ; 0x220 80006f4: 4818 ldr r0, [pc, #96] ; (8000758 ) - 80006f6: f000 fd47 bl 8001188 + 80006f6: f000 fd85 bl 8001204 - /*Configure GPIO pin : B1_Pin */ - GPIO_InitStruct.Pin = B1_Pin; + /*Configure GPIO pin : B1_Pin */ + GPIO_InitStruct.Pin = B1_Pin; 80006fa: f44f 5300 mov.w r3, #8192 ; 0x2000 80006fe: 617b str r3, [r7, #20] - GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; + GPIO_InitStruct.Mode = GPIO_MODE_IT_FALLING; 8000700: f44f 1304 mov.w r3, #2162688 ; 0x210000 8000704: 61bb str r3, [r7, #24] - GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Pull = GPIO_NOPULL; 8000706: 2300 movs r3, #0 8000708: 61fb str r3, [r7, #28] - HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); + HAL_GPIO_Init(B1_GPIO_Port, &GPIO_InitStruct); 800070a: f107 0314 add.w r3, r7, #20 800070e: 4619 mov r1, r3 8000710: 4812 ldr r0, [pc, #72] ; (800075c ) - 8000712: f000 fb9d bl 8000e50 + 8000712: f000 fbdb bl 8000ecc - /*Configure GPIO pins : LD2_Pin Door_Lock_Pin */ - GPIO_InitStruct.Pin = LD2_Pin|Door_Lock_Pin; + /*Configure GPIO pins : LD2_Pin Door_Lock_Pin */ + GPIO_InitStruct.Pin = LD2_Pin | Door_Lock_Pin; 8000716: f44f 7308 mov.w r3, #544 ; 0x220 800071a: 617b str r3, [r7, #20] - GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; 800071c: 2301 movs r3, #1 800071e: 61bb str r3, [r7, #24] - GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Pull = GPIO_NOPULL; 8000720: 2300 movs r3, #0 8000722: 61fb str r3, [r7, #28] - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; 8000724: 2300 movs r3, #0 8000726: 623b str r3, [r7, #32] - HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); + HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); 8000728: f107 0314 add.w r3, r7, #20 800072c: 4619 mov r1, r3 800072e: 480a ldr r0, [pc, #40] ; (8000758 ) - 8000730: f000 fb8e bl 8000e50 + 8000730: f000 fbcc bl 8000ecc - /*Configure GPIO pin : Door_Sensor_Pin */ - GPIO_InitStruct.Pin = Door_Sensor_Pin; + /*Configure GPIO pin : Door_Sensor_Pin */ + GPIO_InitStruct.Pin = Door_Sensor_Pin; 8000734: 2380 movs r3, #128 ; 0x80 8000736: 617b str r3, [r7, #20] - GPIO_InitStruct.Mode = GPIO_MODE_INPUT; + GPIO_InitStruct.Mode = GPIO_MODE_INPUT; 8000738: 2300 movs r3, #0 800073a: 61bb str r3, [r7, #24] - GPIO_InitStruct.Pull = GPIO_PULLUP; + GPIO_InitStruct.Pull = GPIO_PULLUP; 800073c: 2301 movs r3, #1 800073e: 61fb str r3, [r7, #28] - HAL_GPIO_Init(Door_Sensor_GPIO_Port, &GPIO_InitStruct); + HAL_GPIO_Init(Door_Sensor_GPIO_Port, &GPIO_InitStruct); 8000740: f107 0314 add.w r3, r7, #20 8000744: 4619 mov r1, r3 8000746: 4804 ldr r0, [pc, #16] ; (8000758 ) - 8000748: f000 fb82 bl 8000e50 + 8000748: f000 fbc0 bl 8000ecc -/* USER CODE BEGIN MX_GPIO_Init_2 */ -/* USER CODE END MX_GPIO_Init_2 */ + /* USER CODE BEGIN MX_GPIO_Init_2 */ + /* USER CODE END MX_GPIO_Init_2 */ } 800074c: bf00 nop 800074e: 3728 adds r7, #40 ; 0x28 @@ -786,22 +783,22 @@ static void MX_GPIO_Init(void) 800075c: 40020800 .word 0x40020800 08000760 : + * @brief Function implementing the mainTask thread. * @param argument: Not used * @retval None */ /* USER CODE END Header_StartMainTask */ -void StartMainTask(void *argument) -{ +void StartMainTask(void *argument) { 8000760: b580 push {r7, lr} 8000762: b084 sub sp, #16 8000764: af00 add r7, sp, #0 8000766: 6078 str r0, [r7, #4] - /* USER CODE BEGIN 5 */ + /* USER CODE BEGIN 5 */ memset(uart_buffer, 0, 10); 8000768: 220a movs r2, #10 800076a: 2100 movs r1, #0 800076c: 4833 ldr r0, [pc, #204] ; (800083c ) - 800076e: f004 fe75 bl 800545c + 800076e: f004 feb5 bl 80054dc /* Infinite loop */ /* USER CODE BEGIN WHILE */ @@ -816,7 +813,7 @@ void StartMainTask(void *argument) 800077c: f44f 737a mov.w r3, #1000 ; 0x3e8 8000780: 2201 movs r2, #1 8000782: 4830 ldr r0, [pc, #192] ; (8000844 ) - 8000784: f001 fd43 bl 800220e + 8000784: f001 fd81 bl 800228a 8000788: 4603 mov r3, r0 800078a: 2b00 cmp r3, #0 800078c: d152 bne.n 8000834 @@ -853,7 +850,7 @@ void StartMainTask(void *argument) 80007bc: 461a mov r2, r3 80007be: 2120 movs r1, #32 80007c0: 4821 ldr r0, [pc, #132] ; (8000848 ) - 80007c2: f000 fce1 bl 8001188 + 80007c2: f000 fd1f bl 8001204 80007c6: e020 b.n 800080a } // Get Current Door State @@ -875,7 +872,7 @@ void StartMainTask(void *argument) 80007e2: f240 53dc movw r3, #1500 ; 0x5dc 80007e6: 2203 movs r2, #3 80007e8: 4816 ldr r0, [pc, #88] ; (8000844 ) - 80007ea: f001 fc7e bl 80020ea + 80007ea: f001 fcbc bl 8002166 80007ee: e00c b.n 800080a } // @@ -904,9 +901,9 @@ void StartMainTask(void *argument) 8000810: 220a movs r2, #10 8000812: 2100 movs r1, #0 8000814: 4809 ldr r0, [pc, #36] ; (800083c ) - 8000816: f004 fe21 bl 800545c + 8000816: f004 fe61 bl 80054dc 800081a: e00b b.n 8000834 - } else if (uart_index > sizeof(uart_buffer)-1) { + } else if (uart_index > sizeof(uart_buffer) - 1) { 800081c: 4b08 ldr r3, [pc, #32] ; (8000840 ) 800081e: 781b ldrb r3, [r3, #0] 8000820: 2b09 cmp r3, #9 @@ -915,8 +912,8 @@ void StartMainTask(void *argument) 8000824: 220a movs r2, #10 8000826: 2100 movs r1, #0 8000828: 4804 ldr r0, [pc, #16] ; (800083c ) - 800082a: f004 fe17 bl 800545c - uart_index=0; + 800082a: f004 fe57 bl 80054dc + uart_index = 0; 800082e: 4b04 ldr r3, [pc, #16] ; (8000840 ) 8000830: 2200 movs r2, #0 8000832: 701a strb r2, [r3, #0] @@ -924,7 +921,7 @@ void StartMainTask(void *argument) } vTaskDelay(1); 8000834: 2001 movs r0, #1 - 8000836: f003 f91b bl 8003a70 + 8000836: f003 f959 bl 8003aec if (HAL_UART_Receive(&huart2, uart_buffer + uart_index, 1, 1000) 800083a: e79a b.n 8000772 800083c: 200000c8 .word 0x200000c8 @@ -935,13919 +932,13989 @@ void StartMainTask(void *argument) 8000850: 200000da .word 0x200000da 08000854 : + * @brief Function implementing the doorHandler thread. * @param argument: Not used * @retval None */ /* USER CODE END Header_startDoorHandleTask */ -void startDoorHandleTask(void *argument) -{ +void startDoorHandleTask(void *argument) { 8000854: b580 push {r7, lr} 8000856: b082 sub sp, #8 8000858: af00 add r7, sp, #0 800085a: 6078 str r0, [r7, #4] - /* USER CODE BEGIN startDoorHandleTask */ + /* USER CODE BEGIN startDoorHandleTask */ /* Infinite loop */ for (;;) { door_state = HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); 800085c: 2180 movs r1, #128 ; 0x80 - 800085e: 4835 ldr r0, [pc, #212] ; (8000934 ) - 8000860: f000 fc7a bl 8001158 + 800085e: 4854 ldr r0, [pc, #336] ; (80009b0 ) + 8000860: f000 fcb8 bl 80011d4 8000864: 4603 mov r3, r0 8000866: 2b00 cmp r3, #0 8000868: bf14 ite ne 800086a: 2301 movne r3, #1 800086c: 2300 moveq r3, #0 800086e: b2da uxtb r2, r3 - 8000870: 4b31 ldr r3, [pc, #196] ; (8000938 ) + 8000870: 4b50 ldr r3, [pc, #320] ; (80009b4 ) 8000872: 701a strb r2, [r3, #0] if (door_lock_state != door_lock_state_command) { - 8000874: 4b31 ldr r3, [pc, #196] ; (800093c ) + 8000874: 4b50 ldr r3, [pc, #320] ; (80009b8 ) 8000876: 781a ldrb r2, [r3, #0] - 8000878: 4b31 ldr r3, [pc, #196] ; (8000940 ) + 8000878: 4b50 ldr r3, [pc, #320] ; (80009bc ) 800087a: 781b ldrb r3, [r3, #0] 800087c: 429a cmp r2, r3 - 800087e: d055 beq.n 800092c + 800087e: d05e beq.n 800093e if (door_lock_state_command == DOOR_LOCK_LOCKED) { - 8000880: 4b2f ldr r3, [pc, #188] ; (8000940 ) + 8000880: 4b4e ldr r3, [pc, #312] ; (80009bc ) 8000882: 781b ldrb r3, [r3, #0] 8000884: 2b00 cmp r3, #0 - 8000886: d041 beq.n 800090c + 8000886: d047 beq.n 8000918 if (door_state == DOOR_STATE_CLOSED) { - 8000888: 4b2b ldr r3, [pc, #172] ; (8000938 ) + 8000888: 4b4a ldr r3, [pc, #296] ; (80009b4 ) 800088a: 781b ldrb r3, [r3, #0] 800088c: 2b00 cmp r3, #0 - 800088e: d009 beq.n 80008a4 + 800088e: d00c beq.n 80008aa HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, 1); 8000890: 2201 movs r2, #1 8000892: 2100 movs r1, #0 8000894: f44f 7000 mov.w r0, #512 ; 0x200 - 8000898: f000 fc76 bl 8001188 + 8000898: f000 fcb4 bl 8001204 door_lock_state = DOOR_LOCK_LOCKED; - 800089c: 4b27 ldr r3, [pc, #156] ; (800093c ) + 800089c: 4b46 ldr r3, [pc, #280] ; (80009b8 ) 800089e: 2201 movs r2, #1 80008a0: 701a strb r2, [r3, #0] - 80008a2: e043 b.n 800092c + door_lock_waiting = false; + 80008a2: 4b47 ldr r3, [pc, #284] ; (80009c0 ) + 80008a4: 2200 movs r2, #0 + 80008a6: 701a strb r2, [r3, #0] + 80008a8: e049 b.n 800093e } else { if (!door_lock_waiting) { - 80008a4: 4b27 ldr r3, [pc, #156] ; (8000944 ) - 80008a6: 781b ldrb r3, [r3, #0] - 80008a8: f083 0301 eor.w r3, r3, #1 - 80008ac: b2db uxtb r3, r3 - 80008ae: 2b00 cmp r3, #0 - 80008b0: d008 beq.n 80008c4 + 80008aa: 4b45 ldr r3, [pc, #276] ; (80009c0 ) + 80008ac: 781b ldrb r3, [r3, #0] + 80008ae: f083 0301 eor.w r3, r3, #1 + 80008b2: b2db uxtb r3, r3 + 80008b4: 2b00 cmp r3, #0 + 80008b6: d008 beq.n 80008ca door_lock_command_time = HAL_GetTick(); - 80008b2: f000 f9df bl 8000c74 - 80008b6: 4603 mov r3, r0 - 80008b8: 4a23 ldr r2, [pc, #140] ; (8000948 ) - 80008ba: 6013 str r3, [r2, #0] + 80008b8: f000 fa1a bl 8000cf0 + 80008bc: 4603 mov r3, r0 + 80008be: 4a41 ldr r2, [pc, #260] ; (80009c4 ) + 80008c0: 6013 str r3, [r2, #0] door_lock_waiting = true; - 80008bc: 4b21 ldr r3, [pc, #132] ; (8000944 ) - 80008be: 2201 movs r2, #1 - 80008c0: 701a strb r2, [r3, #0] - 80008c2: e033 b.n 800092c + 80008c2: 4b3f ldr r3, [pc, #252] ; (80009c0 ) + 80008c4: 2201 movs r2, #1 + 80008c6: 701a strb r2, [r3, #0] + 80008c8: e039 b.n 800093e } else { if (door_state == DOOR_STATE_OPEN) { - 80008c4: 4b1c ldr r3, [pc, #112] ; (8000938 ) - 80008c6: 781b ldrb r3, [r3, #0] - 80008c8: f083 0301 eor.w r3, r3, #1 - 80008cc: b2db uxtb r3, r3 - 80008ce: 2b00 cmp r3, #0 - 80008d0: d012 beq.n 80008f8 + 80008ca: 4b3a ldr r3, [pc, #232] ; (80009b4 ) + 80008cc: 781b ldrb r3, [r3, #0] + 80008ce: f083 0301 eor.w r3, r3, #1 + 80008d2: b2db uxtb r3, r3 + 80008d4: 2b00 cmp r3, #0 + 80008d6: d012 beq.n 80008fe if (HAL_GetTick() - 80008d2: f000 f9cf bl 8000c74 - 80008d6: 4602 mov r2, r0 + 80008d8: f000 fa0a bl 8000cf0 + 80008dc: 4602 mov r2, r0 - door_lock_command_time>DOOR_ERROR_ALARM_DELAY) { - 80008d8: 4b1b ldr r3, [pc, #108] ; (8000948 ) - 80008da: 681b ldr r3, [r3, #0] - 80008dc: 1ad3 subs r3, r2, r3 + 80008de: 4b39 ldr r3, [pc, #228] ; (80009c4 ) + 80008e0: 681b ldr r3, [r3, #0] + 80008e2: 1ad3 subs r3, r2, r3 if (HAL_GetTick() - 80008de: f242 7210 movw r2, #10000 ; 0x2710 - 80008e2: 4293 cmp r3, r2 - 80008e4: d922 bls.n 800092c + 80008e4: f242 7210 movw r2, #10000 ; 0x2710 + 80008e8: 4293 cmp r3, r2 + 80008ea: d928 bls.n 800093e alarm_active = true; - 80008e6: 4b19 ldr r3, [pc, #100] ; (800094c ) - 80008e8: 2201 movs r2, #1 - 80008ea: 701a strb r2, [r3, #0] + 80008ec: 4b36 ldr r3, [pc, #216] ; (80009c8 ) + 80008ee: 2201 movs r2, #1 + 80008f0: 701a strb r2, [r3, #0] HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 1); - 80008ec: 2201 movs r2, #1 - 80008ee: 2101 movs r1, #1 - 80008f0: 4817 ldr r0, [pc, #92] ; (8000950 ) - 80008f2: f000 fc49 bl 8001188 - 80008f6: e019 b.n 800092c + 80008f2: 2201 movs r2, #1 + 80008f4: 2101 movs r1, #1 + 80008f6: 4835 ldr r0, [pc, #212] ; (80009cc ) + 80008f8: f000 fc84 bl 8001204 + 80008fc: e01f b.n 800093e } } else { HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, 1); - 80008f8: 2201 movs r2, #1 - 80008fa: 2100 movs r1, #0 - 80008fc: f44f 7000 mov.w r0, #512 ; 0x200 - 8000900: f000 fc42 bl 8001188 + 80008fe: 2201 movs r2, #1 + 8000900: 2100 movs r1, #0 + 8000902: f44f 7000 mov.w r0, #512 ; 0x200 + 8000906: f000 fc7d bl 8001204 + door_lock_waiting = false; + 800090a: 4b2d ldr r3, [pc, #180] ; (80009c0 ) + 800090c: 2200 movs r2, #0 + 800090e: 701a strb r2, [r3, #0] door_lock_state = DOOR_LOCK_LOCKED; - 8000904: 4b0d ldr r3, [pc, #52] ; (800093c ) - 8000906: 2201 movs r2, #1 - 8000908: 701a strb r2, [r3, #0] - 800090a: e00f b.n 800092c + 8000910: 4b29 ldr r3, [pc, #164] ; (80009b8 ) + 8000912: 2201 movs r2, #1 + 8000914: 701a strb r2, [r3, #0] + 8000916: e012 b.n 800093e } } } } else if (door_lock_state_command == DOOR_LOCK_UNLOCKED) { - 800090c: 4b0c ldr r3, [pc, #48] ; (8000940 ) - 800090e: 781b ldrb r3, [r3, #0] - 8000910: f083 0301 eor.w r3, r3, #1 - 8000914: b2db uxtb r3, r3 - 8000916: 2b00 cmp r3, #0 - 8000918: d008 beq.n 800092c + 8000918: 4b28 ldr r3, [pc, #160] ; (80009bc ) + 800091a: 781b ldrb r3, [r3, #0] + 800091c: f083 0301 eor.w r3, r3, #1 + 8000920: b2db uxtb r3, r3 + 8000922: 2b00 cmp r3, #0 + 8000924: d00b beq.n 800093e HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, 0); - 800091a: 2200 movs r2, #0 - 800091c: 2100 movs r1, #0 - 800091e: f44f 7000 mov.w r0, #512 ; 0x200 - 8000922: f000 fc31 bl 8001188 + 8000926: 2200 movs r2, #0 + 8000928: 2100 movs r1, #0 + 800092a: f44f 7000 mov.w r0, #512 ; 0x200 + 800092e: f000 fc69 bl 8001204 door_lock_state = DOOR_LOCK_UNLOCKED; - 8000926: 4b05 ldr r3, [pc, #20] ; (800093c ) - 8000928: 2200 movs r2, #0 - 800092a: 701a strb r2, [r3, #0] - + 8000932: 4b21 ldr r3, [pc, #132] ; (80009b8 ) + 8000934: 2200 movs r2, #0 + 8000936: 701a strb r2, [r3, #0] + door_lock_waiting = false; + 8000938: 4b21 ldr r3, [pc, #132] ; (80009c0 ) + 800093a: 2200 movs r2, #0 + 800093c: 701a strb r2, [r3, #0] } } + if(!door_lock_state_command && door_lock_waiting) { + 800093e: 4b1f ldr r3, [pc, #124] ; (80009bc ) + 8000940: 781b ldrb r3, [r3, #0] + 8000942: f083 0301 eor.w r3, r3, #1 + 8000946: b2db uxtb r3, r3 + 8000948: 2b00 cmp r3, #0 + 800094a: d006 beq.n 800095a + 800094c: 4b1c ldr r3, [pc, #112] ; (80009c0 ) + 800094e: 781b ldrb r3, [r3, #0] + 8000950: 2b00 cmp r3, #0 + 8000952: d002 beq.n 800095a + door_lock_waiting = false; + 8000954: 4b1a ldr r3, [pc, #104] ; (80009c0 ) + 8000956: 2200 movs r2, #0 + 8000958: 701a strb r2, [r3, #0] + } + if (alarm_active && !door_lock_state_command) { + 800095a: 4b1b ldr r3, [pc, #108] ; (80009c8 ) + 800095c: 781b ldrb r3, [r3, #0] + 800095e: 2b00 cmp r3, #0 + 8000960: d00e beq.n 8000980 + 8000962: 4b16 ldr r3, [pc, #88] ; (80009bc ) + 8000964: 781b ldrb r3, [r3, #0] + 8000966: f083 0301 eor.w r3, r3, #1 + 800096a: b2db uxtb r3, r3 + 800096c: 2b00 cmp r3, #0 + 800096e: d007 beq.n 8000980 + HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 0); + 8000970: 2200 movs r2, #0 + 8000972: 2101 movs r1, #1 + 8000974: 4815 ldr r0, [pc, #84] ; (80009cc ) + 8000976: f000 fc45 bl 8001204 + alarm_active = false; + 800097a: 4b13 ldr r3, [pc, #76] ; (80009c8 ) + 800097c: 2200 movs r2, #0 + 800097e: 701a strb r2, [r3, #0] + } + if (!door_state && door_lock_state) { + 8000980: 4b0c ldr r3, [pc, #48] ; (80009b4 ) + 8000982: 781b ldrb r3, [r3, #0] + 8000984: f083 0301 eor.w r3, r3, #1 + 8000988: b2db uxtb r3, r3 + 800098a: 2b00 cmp r3, #0 + 800098c: d00b beq.n 80009a6 + 800098e: 4b0a ldr r3, [pc, #40] ; (80009b8 ) + 8000990: 781b ldrb r3, [r3, #0] + 8000992: 2b00 cmp r3, #0 + 8000994: d007 beq.n 80009a6 + HAL_GPIO_WritePin(ALARM_BANK, ALARM_PIN, 1); + 8000996: 2201 movs r2, #1 + 8000998: 2101 movs r1, #1 + 800099a: 480c ldr r0, [pc, #48] ; (80009cc ) + 800099c: f000 fc32 bl 8001204 + alarm_active = true; + 80009a0: 4b09 ldr r3, [pc, #36] ; (80009c8 ) + 80009a2: 2201 movs r2, #1 + 80009a4: 701a strb r2, [r3, #0] + } //HAL_GPIO_WritePin(DOOR_LOCK_PIN, DOOR_LOCK_BANK, uart_buffer[1]); - vTaskDelay(100); - 800092c: 2064 movs r0, #100 ; 0x64 - 800092e: f003 f89f bl 8003a70 + vTaskDelay(50); + 80009a6: 2032 movs r0, #50 ; 0x32 + 80009a8: f003 f8a0 bl 8003aec door_state = HAL_GPIO_ReadPin(DOOR_SENSOR_BANK, DOOR_SENSOR_PIN); - 8000932: e793 b.n 800085c - 8000934: 40020000 .word 0x40020000 - 8000938: 200000d8 .word 0x200000d8 - 800093c: 200000d9 .word 0x200000d9 - 8000940: 200000da .word 0x200000da - 8000944: 200000db .word 0x200000db - 8000948: 200000d4 .word 0x200000d4 - 800094c: 200000dc .word 0x200000dc - 8000950: 40020800 .word 0x40020800 + 80009ac: e756 b.n 800085c + 80009ae: bf00 nop + 80009b0: 40020000 .word 0x40020000 + 80009b4: 200000d8 .word 0x200000d8 + 80009b8: 200000d9 .word 0x200000d9 + 80009bc: 200000da .word 0x200000da + 80009c0: 200000db .word 0x200000db + 80009c4: 200000d4 .word 0x200000d4 + 80009c8: 200000dc .word 0x200000dc + 80009cc: 40020800 .word 0x40020800 -08000954 : - * a global variable "uwTick" used as application time base. - * @param htim : TIM handle - * @retval None - */ -void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) -{ - 8000954: b580 push {r7, lr} - 8000956: b082 sub sp, #8 - 8000958: af00 add r7, sp, #0 - 800095a: 6078 str r0, [r7, #4] - /* USER CODE BEGIN Callback 0 */ +080009d0 : + * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment + * a global variable "uwTick" used as application time base. + * @param htim : TIM handle + * @retval None + */ +void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) { + 80009d0: b580 push {r7, lr} + 80009d2: b082 sub sp, #8 + 80009d4: af00 add r7, sp, #0 + 80009d6: 6078 str r0, [r7, #4] + /* USER CODE BEGIN Callback 0 */ - /* USER CODE END Callback 0 */ - if (htim->Instance == TIM1) { - 800095c: 687b ldr r3, [r7, #4] - 800095e: 681b ldr r3, [r3, #0] - 8000960: 4a04 ldr r2, [pc, #16] ; (8000974 ) - 8000962: 4293 cmp r3, r2 - 8000964: d101 bne.n 800096a - HAL_IncTick(); - 8000966: f000 f971 bl 8000c4c - } - /* USER CODE BEGIN Callback 1 */ + /* USER CODE END Callback 0 */ + if (htim->Instance == TIM1) { + 80009d8: 687b ldr r3, [r7, #4] + 80009da: 681b ldr r3, [r3, #0] + 80009dc: 4a04 ldr r2, [pc, #16] ; (80009f0 ) + 80009de: 4293 cmp r3, r2 + 80009e0: d101 bne.n 80009e6 + HAL_IncTick(); + 80009e2: f000 f971 bl 8000cc8 + } + /* USER CODE BEGIN Callback 1 */ - /* USER CODE END Callback 1 */ + /* USER CODE END Callback 1 */ } - 800096a: bf00 nop - 800096c: 3708 adds r7, #8 - 800096e: 46bd mov sp, r7 - 8000970: bd80 pop {r7, pc} - 8000972: bf00 nop - 8000974: 40010000 .word 0x40010000 + 80009e6: bf00 nop + 80009e8: 3708 adds r7, #8 + 80009ea: 46bd mov sp, r7 + 80009ec: bd80 pop {r7, pc} + 80009ee: bf00 nop + 80009f0: 40010000 .word 0x40010000 + +080009f4 : -08000978 : /** - * @brief This function is executed in case of error occurrence. - * @retval None - */ -void Error_Handler(void) -{ - 8000978: b480 push {r7} - 800097a: af00 add r7, sp, #0 + * @brief This function is executed in case of error occurrence. + * @retval None + */ +void Error_Handler(void) { + 80009f4: b480 push {r7} + 80009f6: af00 add r7, sp, #0 \details Disables IRQ interrupts by setting the I-bit in the CPSR. Can only be executed in Privileged modes. */ __STATIC_FORCEINLINE void __disable_irq(void) { __ASM volatile ("cpsid i" : : : "memory"); - 800097c: b672 cpsid i + 80009f8: b672 cpsid i } - 800097e: bf00 nop - /* USER CODE BEGIN Error_Handler_Debug */ + 80009fa: bf00 nop + /* USER CODE BEGIN Error_Handler_Debug */ /* User can add his own implementation to report the HAL error return state */ __disable_irq(); while (1) { - 8000980: e7fe b.n 8000980 + 80009fc: e7fe b.n 80009fc ... -08000984 : +08000a00 : /* USER CODE END 0 */ /** * Initializes the Global MSP. */ void HAL_MspInit(void) { - 8000984: b580 push {r7, lr} - 8000986: b082 sub sp, #8 - 8000988: af00 add r7, sp, #0 + 8000a00: b580 push {r7, lr} + 8000a02: b082 sub sp, #8 + 8000a04: af00 add r7, sp, #0 /* USER CODE BEGIN MspInit 0 */ /* USER CODE END MspInit 0 */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 800098a: 2300 movs r3, #0 - 800098c: 607b str r3, [r7, #4] - 800098e: 4b12 ldr r3, [pc, #72] ; (80009d8 ) - 8000990: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000992: 4a11 ldr r2, [pc, #68] ; (80009d8 ) - 8000994: f443 4380 orr.w r3, r3, #16384 ; 0x4000 - 8000998: 6453 str r3, [r2, #68] ; 0x44 - 800099a: 4b0f ldr r3, [pc, #60] ; (80009d8 ) - 800099c: 6c5b ldr r3, [r3, #68] ; 0x44 - 800099e: f403 4380 and.w r3, r3, #16384 ; 0x4000 - 80009a2: 607b str r3, [r7, #4] - 80009a4: 687b ldr r3, [r7, #4] + 8000a06: 2300 movs r3, #0 + 8000a08: 607b str r3, [r7, #4] + 8000a0a: 4b12 ldr r3, [pc, #72] ; (8000a54 ) + 8000a0c: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000a0e: 4a11 ldr r2, [pc, #68] ; (8000a54 ) + 8000a10: f443 4380 orr.w r3, r3, #16384 ; 0x4000 + 8000a14: 6453 str r3, [r2, #68] ; 0x44 + 8000a16: 4b0f ldr r3, [pc, #60] ; (8000a54 ) + 8000a18: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000a1a: f403 4380 and.w r3, r3, #16384 ; 0x4000 + 8000a1e: 607b str r3, [r7, #4] + 8000a20: 687b ldr r3, [r7, #4] __HAL_RCC_PWR_CLK_ENABLE(); - 80009a6: 2300 movs r3, #0 - 80009a8: 603b str r3, [r7, #0] - 80009aa: 4b0b ldr r3, [pc, #44] ; (80009d8 ) - 80009ac: 6c1b ldr r3, [r3, #64] ; 0x40 - 80009ae: 4a0a ldr r2, [pc, #40] ; (80009d8 ) - 80009b0: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 80009b4: 6413 str r3, [r2, #64] ; 0x40 - 80009b6: 4b08 ldr r3, [pc, #32] ; (80009d8 ) - 80009b8: 6c1b ldr r3, [r3, #64] ; 0x40 - 80009ba: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 80009be: 603b str r3, [r7, #0] - 80009c0: 683b ldr r3, [r7, #0] + 8000a22: 2300 movs r3, #0 + 8000a24: 603b str r3, [r7, #0] + 8000a26: 4b0b ldr r3, [pc, #44] ; (8000a54 ) + 8000a28: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000a2a: 4a0a ldr r2, [pc, #40] ; (8000a54 ) + 8000a2c: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 8000a30: 6413 str r3, [r2, #64] ; 0x40 + 8000a32: 4b08 ldr r3, [pc, #32] ; (8000a54 ) + 8000a34: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000a36: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 8000a3a: 603b str r3, [r7, #0] + 8000a3c: 683b ldr r3, [r7, #0] /* System interrupt init*/ /* PendSV_IRQn interrupt configuration */ HAL_NVIC_SetPriority(PendSV_IRQn, 15, 0); - 80009c2: 2200 movs r2, #0 - 80009c4: 210f movs r1, #15 - 80009c6: f06f 0001 mvn.w r0, #1 - 80009ca: f000 fa17 bl 8000dfc + 8000a3e: 2200 movs r2, #0 + 8000a40: 210f movs r1, #15 + 8000a42: f06f 0001 mvn.w r0, #1 + 8000a46: f000 fa17 bl 8000e78 /* USER CODE BEGIN MspInit 1 */ /* USER CODE END MspInit 1 */ } - 80009ce: bf00 nop - 80009d0: 3708 adds r7, #8 - 80009d2: 46bd mov sp, r7 - 80009d4: bd80 pop {r7, pc} - 80009d6: bf00 nop - 80009d8: 40023800 .word 0x40023800 + 8000a4a: bf00 nop + 8000a4c: 3708 adds r7, #8 + 8000a4e: 46bd mov sp, r7 + 8000a50: bd80 pop {r7, pc} + 8000a52: bf00 nop + 8000a54: 40023800 .word 0x40023800 -080009dc : +08000a58 : * This function configures the hardware resources used in this example * @param huart: UART handle pointer * @retval None */ void HAL_UART_MspInit(UART_HandleTypeDef* huart) { - 80009dc: b580 push {r7, lr} - 80009de: b08a sub sp, #40 ; 0x28 - 80009e0: af00 add r7, sp, #0 - 80009e2: 6078 str r0, [r7, #4] + 8000a58: b580 push {r7, lr} + 8000a5a: b08a sub sp, #40 ; 0x28 + 8000a5c: af00 add r7, sp, #0 + 8000a5e: 6078 str r0, [r7, #4] GPIO_InitTypeDef GPIO_InitStruct = {0}; - 80009e4: f107 0314 add.w r3, r7, #20 - 80009e8: 2200 movs r2, #0 - 80009ea: 601a str r2, [r3, #0] - 80009ec: 605a str r2, [r3, #4] - 80009ee: 609a str r2, [r3, #8] - 80009f0: 60da str r2, [r3, #12] - 80009f2: 611a str r2, [r3, #16] + 8000a60: f107 0314 add.w r3, r7, #20 + 8000a64: 2200 movs r2, #0 + 8000a66: 601a str r2, [r3, #0] + 8000a68: 605a str r2, [r3, #4] + 8000a6a: 609a str r2, [r3, #8] + 8000a6c: 60da str r2, [r3, #12] + 8000a6e: 611a str r2, [r3, #16] if(huart->Instance==USART2) - 80009f4: 687b ldr r3, [r7, #4] - 80009f6: 681b ldr r3, [r3, #0] - 80009f8: 4a19 ldr r2, [pc, #100] ; (8000a60 ) - 80009fa: 4293 cmp r3, r2 - 80009fc: d12b bne.n 8000a56 + 8000a70: 687b ldr r3, [r7, #4] + 8000a72: 681b ldr r3, [r3, #0] + 8000a74: 4a19 ldr r2, [pc, #100] ; (8000adc ) + 8000a76: 4293 cmp r3, r2 + 8000a78: d12b bne.n 8000ad2 { /* USER CODE BEGIN USART2_MspInit 0 */ /* USER CODE END USART2_MspInit 0 */ /* Peripheral clock enable */ __HAL_RCC_USART2_CLK_ENABLE(); - 80009fe: 2300 movs r3, #0 - 8000a00: 613b str r3, [r7, #16] - 8000a02: 4b18 ldr r3, [pc, #96] ; (8000a64 ) - 8000a04: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000a06: 4a17 ldr r2, [pc, #92] ; (8000a64 ) - 8000a08: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 8000a0c: 6413 str r3, [r2, #64] ; 0x40 - 8000a0e: 4b15 ldr r3, [pc, #84] ; (8000a64 ) - 8000a10: 6c1b ldr r3, [r3, #64] ; 0x40 - 8000a12: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8000a16: 613b str r3, [r7, #16] - 8000a18: 693b ldr r3, [r7, #16] + 8000a7a: 2300 movs r3, #0 + 8000a7c: 613b str r3, [r7, #16] + 8000a7e: 4b18 ldr r3, [pc, #96] ; (8000ae0 ) + 8000a80: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000a82: 4a17 ldr r2, [pc, #92] ; (8000ae0 ) + 8000a84: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 8000a88: 6413 str r3, [r2, #64] ; 0x40 + 8000a8a: 4b15 ldr r3, [pc, #84] ; (8000ae0 ) + 8000a8c: 6c1b ldr r3, [r3, #64] ; 0x40 + 8000a8e: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8000a92: 613b str r3, [r7, #16] + 8000a94: 693b ldr r3, [r7, #16] __HAL_RCC_GPIOA_CLK_ENABLE(); - 8000a1a: 2300 movs r3, #0 - 8000a1c: 60fb str r3, [r7, #12] - 8000a1e: 4b11 ldr r3, [pc, #68] ; (8000a64 ) - 8000a20: 6b1b ldr r3, [r3, #48] ; 0x30 - 8000a22: 4a10 ldr r2, [pc, #64] ; (8000a64 ) - 8000a24: f043 0301 orr.w r3, r3, #1 - 8000a28: 6313 str r3, [r2, #48] ; 0x30 - 8000a2a: 4b0e ldr r3, [pc, #56] ; (8000a64 ) - 8000a2c: 6b1b ldr r3, [r3, #48] ; 0x30 - 8000a2e: f003 0301 and.w r3, r3, #1 - 8000a32: 60fb str r3, [r7, #12] - 8000a34: 68fb ldr r3, [r7, #12] + 8000a96: 2300 movs r3, #0 + 8000a98: 60fb str r3, [r7, #12] + 8000a9a: 4b11 ldr r3, [pc, #68] ; (8000ae0 ) + 8000a9c: 6b1b ldr r3, [r3, #48] ; 0x30 + 8000a9e: 4a10 ldr r2, [pc, #64] ; (8000ae0 ) + 8000aa0: f043 0301 orr.w r3, r3, #1 + 8000aa4: 6313 str r3, [r2, #48] ; 0x30 + 8000aa6: 4b0e ldr r3, [pc, #56] ; (8000ae0 ) + 8000aa8: 6b1b ldr r3, [r3, #48] ; 0x30 + 8000aaa: f003 0301 and.w r3, r3, #1 + 8000aae: 60fb str r3, [r7, #12] + 8000ab0: 68fb ldr r3, [r7, #12] /**USART2 GPIO Configuration PA2 ------> USART2_TX PA3 ------> USART2_RX */ GPIO_InitStruct.Pin = USART_TX_Pin|USART_RX_Pin; - 8000a36: 230c movs r3, #12 - 8000a38: 617b str r3, [r7, #20] + 8000ab2: 230c movs r3, #12 + 8000ab4: 617b str r3, [r7, #20] GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; - 8000a3a: 2302 movs r3, #2 - 8000a3c: 61bb str r3, [r7, #24] + 8000ab6: 2302 movs r3, #2 + 8000ab8: 61bb str r3, [r7, #24] GPIO_InitStruct.Pull = GPIO_NOPULL; - 8000a3e: 2300 movs r3, #0 - 8000a40: 61fb str r3, [r7, #28] + 8000aba: 2300 movs r3, #0 + 8000abc: 61fb str r3, [r7, #28] GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; - 8000a42: 2303 movs r3, #3 - 8000a44: 623b str r3, [r7, #32] + 8000abe: 2303 movs r3, #3 + 8000ac0: 623b str r3, [r7, #32] GPIO_InitStruct.Alternate = GPIO_AF7_USART2; - 8000a46: 2307 movs r3, #7 - 8000a48: 627b str r3, [r7, #36] ; 0x24 + 8000ac2: 2307 movs r3, #7 + 8000ac4: 627b str r3, [r7, #36] ; 0x24 HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); - 8000a4a: f107 0314 add.w r3, r7, #20 - 8000a4e: 4619 mov r1, r3 - 8000a50: 4805 ldr r0, [pc, #20] ; (8000a68 ) - 8000a52: f000 f9fd bl 8000e50 + 8000ac6: f107 0314 add.w r3, r7, #20 + 8000aca: 4619 mov r1, r3 + 8000acc: 4805 ldr r0, [pc, #20] ; (8000ae4 ) + 8000ace: f000 f9fd bl 8000ecc /* USER CODE BEGIN USART2_MspInit 1 */ /* USER CODE END USART2_MspInit 1 */ } } - 8000a56: bf00 nop - 8000a58: 3728 adds r7, #40 ; 0x28 - 8000a5a: 46bd mov sp, r7 - 8000a5c: bd80 pop {r7, pc} - 8000a5e: bf00 nop - 8000a60: 40004400 .word 0x40004400 - 8000a64: 40023800 .word 0x40023800 - 8000a68: 40020000 .word 0x40020000 + 8000ad2: bf00 nop + 8000ad4: 3728 adds r7, #40 ; 0x28 + 8000ad6: 46bd mov sp, r7 + 8000ad8: bd80 pop {r7, pc} + 8000ada: bf00 nop + 8000adc: 40004400 .word 0x40004400 + 8000ae0: 40023800 .word 0x40023800 + 8000ae4: 40020000 .word 0x40020000 -08000a6c : +08000ae8 : * reset by HAL_Init() or at any time when clock is configured, by HAL_RCC_ClockConfig(). * @param TickPriority: Tick interrupt priority. * @retval HAL status */ HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) { - 8000a6c: b580 push {r7, lr} - 8000a6e: b08c sub sp, #48 ; 0x30 - 8000a70: af00 add r7, sp, #0 - 8000a72: 6078 str r0, [r7, #4] + 8000ae8: b580 push {r7, lr} + 8000aea: b08c sub sp, #48 ; 0x30 + 8000aec: af00 add r7, sp, #0 + 8000aee: 6078 str r0, [r7, #4] RCC_ClkInitTypeDef clkconfig; uint32_t uwTimclock = 0U; - 8000a74: 2300 movs r3, #0 - 8000a76: 62bb str r3, [r7, #40] ; 0x28 + 8000af0: 2300 movs r3, #0 + 8000af2: 62bb str r3, [r7, #40] ; 0x28 uint32_t uwPrescalerValue = 0U; - 8000a78: 2300 movs r3, #0 - 8000a7a: 627b str r3, [r7, #36] ; 0x24 + 8000af4: 2300 movs r3, #0 + 8000af6: 627b str r3, [r7, #36] ; 0x24 uint32_t pFLatency; HAL_StatusTypeDef status; /* Enable TIM1 clock */ __HAL_RCC_TIM1_CLK_ENABLE(); - 8000a7c: 2300 movs r3, #0 - 8000a7e: 60bb str r3, [r7, #8] - 8000a80: 4b2e ldr r3, [pc, #184] ; (8000b3c ) - 8000a82: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000a84: 4a2d ldr r2, [pc, #180] ; (8000b3c ) - 8000a86: f043 0301 orr.w r3, r3, #1 - 8000a8a: 6453 str r3, [r2, #68] ; 0x44 - 8000a8c: 4b2b ldr r3, [pc, #172] ; (8000b3c ) - 8000a8e: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000a90: f003 0301 and.w r3, r3, #1 - 8000a94: 60bb str r3, [r7, #8] - 8000a96: 68bb ldr r3, [r7, #8] + 8000af8: 2300 movs r3, #0 + 8000afa: 60bb str r3, [r7, #8] + 8000afc: 4b2e ldr r3, [pc, #184] ; (8000bb8 ) + 8000afe: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000b00: 4a2d ldr r2, [pc, #180] ; (8000bb8 ) + 8000b02: f043 0301 orr.w r3, r3, #1 + 8000b06: 6453 str r3, [r2, #68] ; 0x44 + 8000b08: 4b2b ldr r3, [pc, #172] ; (8000bb8 ) + 8000b0a: 6c5b ldr r3, [r3, #68] ; 0x44 + 8000b0c: f003 0301 and.w r3, r3, #1 + 8000b10: 60bb str r3, [r7, #8] + 8000b12: 68bb ldr r3, [r7, #8] /* Get clock configuration */ HAL_RCC_GetClockConfig(&clkconfig, &pFLatency); - 8000a98: f107 020c add.w r2, r7, #12 - 8000a9c: f107 0310 add.w r3, r7, #16 - 8000aa0: 4611 mov r1, r2 - 8000aa2: 4618 mov r0, r3 - 8000aa4: f001 f822 bl 8001aec + 8000b14: f107 020c add.w r2, r7, #12 + 8000b18: f107 0310 add.w r3, r7, #16 + 8000b1c: 4611 mov r1, r2 + 8000b1e: 4618 mov r0, r3 + 8000b20: f001 f822 bl 8001b68 /* Compute TIM1 clock */ uwTimclock = HAL_RCC_GetPCLK2Freq(); - 8000aa8: f001 f80c bl 8001ac4 - 8000aac: 62b8 str r0, [r7, #40] ; 0x28 + 8000b24: f001 f80c bl 8001b40 + 8000b28: 62b8 str r0, [r7, #40] ; 0x28 /* Compute the prescaler value to have TIM1 counter clock equal to 1MHz */ uwPrescalerValue = (uint32_t) ((uwTimclock / 1000000U) - 1U); - 8000aae: 6abb ldr r3, [r7, #40] ; 0x28 - 8000ab0: 4a23 ldr r2, [pc, #140] ; (8000b40 ) - 8000ab2: fba2 2303 umull r2, r3, r2, r3 - 8000ab6: 0c9b lsrs r3, r3, #18 - 8000ab8: 3b01 subs r3, #1 - 8000aba: 627b str r3, [r7, #36] ; 0x24 + 8000b2a: 6abb ldr r3, [r7, #40] ; 0x28 + 8000b2c: 4a23 ldr r2, [pc, #140] ; (8000bbc ) + 8000b2e: fba2 2303 umull r2, r3, r2, r3 + 8000b32: 0c9b lsrs r3, r3, #18 + 8000b34: 3b01 subs r3, #1 + 8000b36: 627b str r3, [r7, #36] ; 0x24 /* Initialize TIM1 */ htim1.Instance = TIM1; - 8000abc: 4b21 ldr r3, [pc, #132] ; (8000b44 ) - 8000abe: 4a22 ldr r2, [pc, #136] ; (8000b48 ) - 8000ac0: 601a str r2, [r3, #0] + 8000b38: 4b21 ldr r3, [pc, #132] ; (8000bc0 ) + 8000b3a: 4a22 ldr r2, [pc, #136] ; (8000bc4 ) + 8000b3c: 601a str r2, [r3, #0] + Period = [(TIM1CLK/1000) - 1]. to have a (1/1000) s time base. + Prescaler = (uwTimclock/1000000 - 1) to have a 1MHz counter clock. + ClockDivision = 0 + Counter direction = Up */ htim1.Init.Period = (1000000U / 1000U) - 1U; - 8000ac2: 4b20 ldr r3, [pc, #128] ; (8000b44 ) - 8000ac4: f240 32e7 movw r2, #999 ; 0x3e7 - 8000ac8: 60da str r2, [r3, #12] + 8000b3e: 4b20 ldr r3, [pc, #128] ; (8000bc0 ) + 8000b40: f240 32e7 movw r2, #999 ; 0x3e7 + 8000b44: 60da str r2, [r3, #12] htim1.Init.Prescaler = uwPrescalerValue; - 8000aca: 4a1e ldr r2, [pc, #120] ; (8000b44 ) - 8000acc: 6a7b ldr r3, [r7, #36] ; 0x24 - 8000ace: 6053 str r3, [r2, #4] + 8000b46: 4a1e ldr r2, [pc, #120] ; (8000bc0 ) + 8000b48: 6a7b ldr r3, [r7, #36] ; 0x24 + 8000b4a: 6053 str r3, [r2, #4] htim1.Init.ClockDivision = 0; - 8000ad0: 4b1c ldr r3, [pc, #112] ; (8000b44 ) - 8000ad2: 2200 movs r2, #0 - 8000ad4: 611a str r2, [r3, #16] + 8000b4c: 4b1c ldr r3, [pc, #112] ; (8000bc0 ) + 8000b4e: 2200 movs r2, #0 + 8000b50: 611a str r2, [r3, #16] htim1.Init.CounterMode = TIM_COUNTERMODE_UP; - 8000ad6: 4b1b ldr r3, [pc, #108] ; (8000b44 ) - 8000ad8: 2200 movs r2, #0 - 8000ada: 609a str r2, [r3, #8] + 8000b52: 4b1b ldr r3, [pc, #108] ; (8000bc0 ) + 8000b54: 2200 movs r2, #0 + 8000b56: 609a str r2, [r3, #8] htim1.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; - 8000adc: 4b19 ldr r3, [pc, #100] ; (8000b44 ) - 8000ade: 2200 movs r2, #0 - 8000ae0: 619a str r2, [r3, #24] + 8000b58: 4b19 ldr r3, [pc, #100] ; (8000bc0 ) + 8000b5a: 2200 movs r2, #0 + 8000b5c: 619a str r2, [r3, #24] status = HAL_TIM_Base_Init(&htim1); - 8000ae2: 4818 ldr r0, [pc, #96] ; (8000b44 ) - 8000ae4: f001 f834 bl 8001b50 - 8000ae8: 4603 mov r3, r0 - 8000aea: f887 302f strb.w r3, [r7, #47] ; 0x2f + 8000b5e: 4818 ldr r0, [pc, #96] ; (8000bc0 ) + 8000b60: f001 f834 bl 8001bcc + 8000b64: 4603 mov r3, r0 + 8000b66: f887 302f strb.w r3, [r7, #47] ; 0x2f if (status == HAL_OK) - 8000aee: f897 302f ldrb.w r3, [r7, #47] ; 0x2f - 8000af2: 2b00 cmp r3, #0 - 8000af4: d11b bne.n 8000b2e + 8000b6a: f897 302f ldrb.w r3, [r7, #47] ; 0x2f + 8000b6e: 2b00 cmp r3, #0 + 8000b70: d11b bne.n 8000baa { /* Start the TIM time Base generation in interrupt mode */ status = HAL_TIM_Base_Start_IT(&htim1); - 8000af6: 4813 ldr r0, [pc, #76] ; (8000b44 ) - 8000af8: f001 f884 bl 8001c04 - 8000afc: 4603 mov r3, r0 - 8000afe: f887 302f strb.w r3, [r7, #47] ; 0x2f + 8000b72: 4813 ldr r0, [pc, #76] ; (8000bc0 ) + 8000b74: f001 f884 bl 8001c80 + 8000b78: 4603 mov r3, r0 + 8000b7a: f887 302f strb.w r3, [r7, #47] ; 0x2f if (status == HAL_OK) - 8000b02: f897 302f ldrb.w r3, [r7, #47] ; 0x2f - 8000b06: 2b00 cmp r3, #0 - 8000b08: d111 bne.n 8000b2e + 8000b7e: f897 302f ldrb.w r3, [r7, #47] ; 0x2f + 8000b82: 2b00 cmp r3, #0 + 8000b84: d111 bne.n 8000baa { /* Enable the TIM1 global Interrupt */ HAL_NVIC_EnableIRQ(TIM1_UP_TIM10_IRQn); - 8000b0a: 2019 movs r0, #25 - 8000b0c: f000 f992 bl 8000e34 + 8000b86: 2019 movs r0, #25 + 8000b88: f000 f992 bl 8000eb0 /* Configure the SysTick IRQ priority */ if (TickPriority < (1UL << __NVIC_PRIO_BITS)) - 8000b10: 687b ldr r3, [r7, #4] - 8000b12: 2b0f cmp r3, #15 - 8000b14: d808 bhi.n 8000b28 + 8000b8c: 687b ldr r3, [r7, #4] + 8000b8e: 2b0f cmp r3, #15 + 8000b90: d808 bhi.n 8000ba4 { /* Configure the TIM IRQ priority */ HAL_NVIC_SetPriority(TIM1_UP_TIM10_IRQn, TickPriority, 0U); - 8000b16: 2200 movs r2, #0 - 8000b18: 6879 ldr r1, [r7, #4] - 8000b1a: 2019 movs r0, #25 - 8000b1c: f000 f96e bl 8000dfc + 8000b92: 2200 movs r2, #0 + 8000b94: 6879 ldr r1, [r7, #4] + 8000b96: 2019 movs r0, #25 + 8000b98: f000 f96e bl 8000e78 uwTickPrio = TickPriority; - 8000b20: 4a0a ldr r2, [pc, #40] ; (8000b4c ) - 8000b22: 687b ldr r3, [r7, #4] - 8000b24: 6013 str r3, [r2, #0] - 8000b26: e002 b.n 8000b2e + 8000b9c: 4a0a ldr r2, [pc, #40] ; (8000bc8 ) + 8000b9e: 687b ldr r3, [r7, #4] + 8000ba0: 6013 str r3, [r2, #0] + 8000ba2: e002 b.n 8000baa } else { status = HAL_ERROR; - 8000b28: 2301 movs r3, #1 - 8000b2a: f887 302f strb.w r3, [r7, #47] ; 0x2f + 8000ba4: 2301 movs r3, #1 + 8000ba6: f887 302f strb.w r3, [r7, #47] ; 0x2f } } } /* Return function status */ return status; - 8000b2e: f897 302f ldrb.w r3, [r7, #47] ; 0x2f + 8000baa: f897 302f ldrb.w r3, [r7, #47] ; 0x2f } - 8000b32: 4618 mov r0, r3 - 8000b34: 3730 adds r7, #48 ; 0x30 - 8000b36: 46bd mov sp, r7 - 8000b38: bd80 pop {r7, pc} - 8000b3a: bf00 nop - 8000b3c: 40023800 .word 0x40023800 - 8000b40: 431bde83 .word 0x431bde83 - 8000b44: 200000e0 .word 0x200000e0 - 8000b48: 40010000 .word 0x40010000 - 8000b4c: 20000004 .word 0x20000004 + 8000bae: 4618 mov r0, r3 + 8000bb0: 3730 adds r7, #48 ; 0x30 + 8000bb2: 46bd mov sp, r7 + 8000bb4: bd80 pop {r7, pc} + 8000bb6: bf00 nop + 8000bb8: 40023800 .word 0x40023800 + 8000bbc: 431bde83 .word 0x431bde83 + 8000bc0: 200000e0 .word 0x200000e0 + 8000bc4: 40010000 .word 0x40010000 + 8000bc8: 20000004 .word 0x20000004 -08000b50 : +08000bcc : /******************************************************************************/ /** * @brief This function handles Non maskable interrupt. */ void NMI_Handler(void) { - 8000b50: b480 push {r7} - 8000b52: af00 add r7, sp, #0 + 8000bcc: b480 push {r7} + 8000bce: af00 add r7, sp, #0 /* USER CODE BEGIN NonMaskableInt_IRQn 0 */ /* USER CODE END NonMaskableInt_IRQn 0 */ /* USER CODE BEGIN NonMaskableInt_IRQn 1 */ while (1) - 8000b54: e7fe b.n 8000b54 + 8000bd0: e7fe b.n 8000bd0 -08000b56 : +08000bd2 : /** * @brief This function handles Hard fault interrupt. */ void HardFault_Handler(void) { - 8000b56: b480 push {r7} - 8000b58: af00 add r7, sp, #0 + 8000bd2: b480 push {r7} + 8000bd4: af00 add r7, sp, #0 /* USER CODE BEGIN HardFault_IRQn 0 */ /* USER CODE END HardFault_IRQn 0 */ while (1) - 8000b5a: e7fe b.n 8000b5a + 8000bd6: e7fe b.n 8000bd6 -08000b5c : +08000bd8 : /** * @brief This function handles Memory management fault. */ void MemManage_Handler(void) { - 8000b5c: b480 push {r7} - 8000b5e: af00 add r7, sp, #0 + 8000bd8: b480 push {r7} + 8000bda: af00 add r7, sp, #0 /* USER CODE BEGIN MemoryManagement_IRQn 0 */ /* USER CODE END MemoryManagement_IRQn 0 */ while (1) - 8000b60: e7fe b.n 8000b60 + 8000bdc: e7fe b.n 8000bdc -08000b62 : +08000bde : /** * @brief This function handles Pre-fetch fault, memory access fault. */ void BusFault_Handler(void) { - 8000b62: b480 push {r7} - 8000b64: af00 add r7, sp, #0 + 8000bde: b480 push {r7} + 8000be0: af00 add r7, sp, #0 /* USER CODE BEGIN BusFault_IRQn 0 */ /* USER CODE END BusFault_IRQn 0 */ while (1) - 8000b66: e7fe b.n 8000b66 + 8000be2: e7fe b.n 8000be2 -08000b68 : +08000be4 : /** * @brief This function handles Undefined instruction or illegal state. */ void UsageFault_Handler(void) { - 8000b68: b480 push {r7} - 8000b6a: af00 add r7, sp, #0 + 8000be4: b480 push {r7} + 8000be6: af00 add r7, sp, #0 /* USER CODE BEGIN UsageFault_IRQn 0 */ /* USER CODE END UsageFault_IRQn 0 */ while (1) - 8000b6c: e7fe b.n 8000b6c + 8000be8: e7fe b.n 8000be8 -08000b6e : +08000bea : /** * @brief This function handles Debug monitor. */ void DebugMon_Handler(void) { - 8000b6e: b480 push {r7} - 8000b70: af00 add r7, sp, #0 + 8000bea: b480 push {r7} + 8000bec: af00 add r7, sp, #0 /* USER CODE END DebugMonitor_IRQn 0 */ /* USER CODE BEGIN DebugMonitor_IRQn 1 */ /* USER CODE END DebugMonitor_IRQn 1 */ } - 8000b72: bf00 nop - 8000b74: 46bd mov sp, r7 - 8000b76: f85d 7b04 ldr.w r7, [sp], #4 - 8000b7a: 4770 bx lr + 8000bee: bf00 nop + 8000bf0: 46bd mov sp, r7 + 8000bf2: f85d 7b04 ldr.w r7, [sp], #4 + 8000bf6: 4770 bx lr -08000b7c : +08000bf8 : /** * @brief This function handles TIM1 update interrupt and TIM10 global interrupt. */ void TIM1_UP_TIM10_IRQHandler(void) { - 8000b7c: b580 push {r7, lr} - 8000b7e: af00 add r7, sp, #0 + 8000bf8: b580 push {r7, lr} + 8000bfa: af00 add r7, sp, #0 /* USER CODE BEGIN TIM1_UP_TIM10_IRQn 0 */ /* USER CODE END TIM1_UP_TIM10_IRQn 0 */ HAL_TIM_IRQHandler(&htim1); - 8000b80: 4802 ldr r0, [pc, #8] ; (8000b8c ) - 8000b82: f001 f8a1 bl 8001cc8 + 8000bfc: 4802 ldr r0, [pc, #8] ; (8000c08 ) + 8000bfe: f001 f8a1 bl 8001d44 /* USER CODE BEGIN TIM1_UP_TIM10_IRQn 1 */ /* USER CODE END TIM1_UP_TIM10_IRQn 1 */ } - 8000b86: bf00 nop - 8000b88: bd80 pop {r7, pc} - 8000b8a: bf00 nop - 8000b8c: 200000e0 .word 0x200000e0 + 8000c02: bf00 nop + 8000c04: bd80 pop {r7, pc} + 8000c06: bf00 nop + 8000c08: 200000e0 .word 0x200000e0 -08000b90 : +08000c0c : * configuration. * @param None * @retval None */ void SystemInit(void) { - 8000b90: b480 push {r7} - 8000b92: af00 add r7, sp, #0 + 8000c0c: b480 push {r7} + 8000c0e: af00 add r7, sp, #0 /* FPU settings ------------------------------------------------------------*/ #if (__FPU_PRESENT == 1) && (__FPU_USED == 1) SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */ - 8000b94: 4b06 ldr r3, [pc, #24] ; (8000bb0 ) - 8000b96: f8d3 3088 ldr.w r3, [r3, #136] ; 0x88 - 8000b9a: 4a05 ldr r2, [pc, #20] ; (8000bb0 ) - 8000b9c: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 - 8000ba0: f8c2 3088 str.w r3, [r2, #136] ; 0x88 + 8000c10: 4b06 ldr r3, [pc, #24] ; (8000c2c ) + 8000c12: f8d3 3088 ldr.w r3, [r3, #136] ; 0x88 + 8000c16: 4a05 ldr r2, [pc, #20] ; (8000c2c ) + 8000c18: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 + 8000c1c: f8c2 3088 str.w r3, [r2, #136] ; 0x88 /* Configure the Vector Table location -------------------------------------*/ #if defined(USER_VECT_TAB_ADDRESS) SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */ #endif /* USER_VECT_TAB_ADDRESS */ } - 8000ba4: bf00 nop - 8000ba6: 46bd mov sp, r7 - 8000ba8: f85d 7b04 ldr.w r7, [sp], #4 - 8000bac: 4770 bx lr - 8000bae: bf00 nop - 8000bb0: e000ed00 .word 0xe000ed00 + 8000c20: bf00 nop + 8000c22: 46bd mov sp, r7 + 8000c24: f85d 7b04 ldr.w r7, [sp], #4 + 8000c28: 4770 bx lr + 8000c2a: bf00 nop + 8000c2c: e000ed00 .word 0xe000ed00 -08000bb4 : +08000c30 : .section .text.Reset_Handler .weak Reset_Handler .type Reset_Handler, %function Reset_Handler: ldr sp, =_estack /* set stack pointer */ - 8000bb4: f8df d034 ldr.w sp, [pc, #52] ; 8000bec + 8000c30: f8df d034 ldr.w sp, [pc, #52] ; 8000c68 /* Copy the data segment initializers from flash to SRAM */ ldr r0, =_sdata - 8000bb8: 480d ldr r0, [pc, #52] ; (8000bf0 ) + 8000c34: 480d ldr r0, [pc, #52] ; (8000c6c ) ldr r1, =_edata - 8000bba: 490e ldr r1, [pc, #56] ; (8000bf4 ) + 8000c36: 490e ldr r1, [pc, #56] ; (8000c70 ) ldr r2, =_sidata - 8000bbc: 4a0e ldr r2, [pc, #56] ; (8000bf8 ) + 8000c38: 4a0e ldr r2, [pc, #56] ; (8000c74 ) movs r3, #0 - 8000bbe: 2300 movs r3, #0 + 8000c3a: 2300 movs r3, #0 b LoopCopyDataInit - 8000bc0: e002 b.n 8000bc8 + 8000c3c: e002 b.n 8000c44 -08000bc2 : +08000c3e : CopyDataInit: ldr r4, [r2, r3] - 8000bc2: 58d4 ldr r4, [r2, r3] + 8000c3e: 58d4 ldr r4, [r2, r3] str r4, [r0, r3] - 8000bc4: 50c4 str r4, [r0, r3] + 8000c40: 50c4 str r4, [r0, r3] adds r3, r3, #4 - 8000bc6: 3304 adds r3, #4 + 8000c42: 3304 adds r3, #4 -08000bc8 : +08000c44 : LoopCopyDataInit: adds r4, r0, r3 - 8000bc8: 18c4 adds r4, r0, r3 + 8000c44: 18c4 adds r4, r0, r3 cmp r4, r1 - 8000bca: 428c cmp r4, r1 + 8000c46: 428c cmp r4, r1 bcc CopyDataInit - 8000bcc: d3f9 bcc.n 8000bc2 + 8000c48: d3f9 bcc.n 8000c3e /* Zero fill the bss segment. */ ldr r2, =_sbss - 8000bce: 4a0b ldr r2, [pc, #44] ; (8000bfc ) + 8000c4a: 4a0b ldr r2, [pc, #44] ; (8000c78 ) ldr r4, =_ebss - 8000bd0: 4c0b ldr r4, [pc, #44] ; (8000c00 ) + 8000c4c: 4c0b ldr r4, [pc, #44] ; (8000c7c ) movs r3, #0 - 8000bd2: 2300 movs r3, #0 + 8000c4e: 2300 movs r3, #0 b LoopFillZerobss - 8000bd4: e001 b.n 8000bda + 8000c50: e001 b.n 8000c56 -08000bd6 : +08000c52 : FillZerobss: str r3, [r2] - 8000bd6: 6013 str r3, [r2, #0] + 8000c52: 6013 str r3, [r2, #0] adds r2, r2, #4 - 8000bd8: 3204 adds r2, #4 + 8000c54: 3204 adds r2, #4 -08000bda : +08000c56 : LoopFillZerobss: cmp r2, r4 - 8000bda: 42a2 cmp r2, r4 + 8000c56: 42a2 cmp r2, r4 bcc FillZerobss - 8000bdc: d3fb bcc.n 8000bd6 + 8000c58: d3fb bcc.n 8000c52 /* Call the clock system initialization function.*/ bl SystemInit - 8000bde: f7ff ffd7 bl 8000b90 + 8000c5a: f7ff ffd7 bl 8000c0c /* Call static constructors */ bl __libc_init_array - 8000be2: f004 fc99 bl 8005518 <__libc_init_array> + 8000c5e: f004 fc9b bl 8005598 <__libc_init_array> /* Call the application's entry point.*/ bl main - 8000be6: f7ff fc79 bl 80004dc
+ 8000c62: f7ff fc3b bl 80004dc
bx lr - 8000bea: 4770 bx lr + 8000c66: 4770 bx lr ldr sp, =_estack /* set stack pointer */ - 8000bec: 20020000 .word 0x20020000 + 8000c68: 20020000 .word 0x20020000 ldr r0, =_sdata - 8000bf0: 20000000 .word 0x20000000 + 8000c6c: 20000000 .word 0x20000000 ldr r1, =_edata - 8000bf4: 20000060 .word 0x20000060 + 8000c70: 20000060 .word 0x20000060 ldr r2, =_sidata - 8000bf8: 080056e8 .word 0x080056e8 + 8000c74: 08005768 .word 0x08005768 ldr r2, =_sbss - 8000bfc: 20000060 .word 0x20000060 + 8000c78: 20000060 .word 0x20000060 ldr r4, =_ebss - 8000c00: 20004c54 .word 0x20004c54 + 8000c7c: 20004c54 .word 0x20004c54 -08000c04 : +08000c80 : * @retval None */ .section .text.Default_Handler,"ax",%progbits Default_Handler: Infinite_Loop: b Infinite_Loop - 8000c04: e7fe b.n 8000c04 + 8000c80: e7fe b.n 8000c80 ... -08000c08 : +08000c84 : * need to ensure that the SysTick time base is always set to 1 millisecond * to have correct HAL operation. * @retval HAL status */ HAL_StatusTypeDef HAL_Init(void) { - 8000c08: b580 push {r7, lr} - 8000c0a: af00 add r7, sp, #0 + 8000c84: b580 push {r7, lr} + 8000c86: af00 add r7, sp, #0 /* Configure Flash prefetch, Instruction cache, Data cache */ #if (INSTRUCTION_CACHE_ENABLE != 0U) __HAL_FLASH_INSTRUCTION_CACHE_ENABLE(); - 8000c0c: 4b0e ldr r3, [pc, #56] ; (8000c48 ) - 8000c0e: 681b ldr r3, [r3, #0] - 8000c10: 4a0d ldr r2, [pc, #52] ; (8000c48 ) - 8000c12: f443 7300 orr.w r3, r3, #512 ; 0x200 - 8000c16: 6013 str r3, [r2, #0] + 8000c88: 4b0e ldr r3, [pc, #56] ; (8000cc4 ) + 8000c8a: 681b ldr r3, [r3, #0] + 8000c8c: 4a0d ldr r2, [pc, #52] ; (8000cc4 ) + 8000c8e: f443 7300 orr.w r3, r3, #512 ; 0x200 + 8000c92: 6013 str r3, [r2, #0] #endif /* INSTRUCTION_CACHE_ENABLE */ #if (DATA_CACHE_ENABLE != 0U) __HAL_FLASH_DATA_CACHE_ENABLE(); - 8000c18: 4b0b ldr r3, [pc, #44] ; (8000c48 ) - 8000c1a: 681b ldr r3, [r3, #0] - 8000c1c: 4a0a ldr r2, [pc, #40] ; (8000c48 ) - 8000c1e: f443 6380 orr.w r3, r3, #1024 ; 0x400 - 8000c22: 6013 str r3, [r2, #0] + 8000c94: 4b0b ldr r3, [pc, #44] ; (8000cc4 ) + 8000c96: 681b ldr r3, [r3, #0] + 8000c98: 4a0a ldr r2, [pc, #40] ; (8000cc4 ) + 8000c9a: f443 6380 orr.w r3, r3, #1024 ; 0x400 + 8000c9e: 6013 str r3, [r2, #0] #endif /* DATA_CACHE_ENABLE */ #if (PREFETCH_ENABLE != 0U) __HAL_FLASH_PREFETCH_BUFFER_ENABLE(); - 8000c24: 4b08 ldr r3, [pc, #32] ; (8000c48 ) - 8000c26: 681b ldr r3, [r3, #0] - 8000c28: 4a07 ldr r2, [pc, #28] ; (8000c48 ) - 8000c2a: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8000c2e: 6013 str r3, [r2, #0] + 8000ca0: 4b08 ldr r3, [pc, #32] ; (8000cc4 ) + 8000ca2: 681b ldr r3, [r3, #0] + 8000ca4: 4a07 ldr r2, [pc, #28] ; (8000cc4 ) + 8000ca6: f443 7380 orr.w r3, r3, #256 ; 0x100 + 8000caa: 6013 str r3, [r2, #0] #endif /* PREFETCH_ENABLE */ /* Set Interrupt Group Priority */ HAL_NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); - 8000c30: 2003 movs r0, #3 - 8000c32: f000 f8d8 bl 8000de6 + 8000cac: 2003 movs r0, #3 + 8000cae: f000 f8d8 bl 8000e62 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */ HAL_InitTick(TICK_INT_PRIORITY); - 8000c36: 200f movs r0, #15 - 8000c38: f7ff ff18 bl 8000a6c + 8000cb2: 200f movs r0, #15 + 8000cb4: f7ff ff18 bl 8000ae8 /* Init the low level hardware */ HAL_MspInit(); - 8000c3c: f7ff fea2 bl 8000984 + 8000cb8: f7ff fea2 bl 8000a00 /* Return function status */ return HAL_OK; - 8000c40: 2300 movs r3, #0 + 8000cbc: 2300 movs r3, #0 } - 8000c42: 4618 mov r0, r3 - 8000c44: bd80 pop {r7, pc} - 8000c46: bf00 nop - 8000c48: 40023c00 .word 0x40023c00 + 8000cbe: 4618 mov r0, r3 + 8000cc0: bd80 pop {r7, pc} + 8000cc2: bf00 nop + 8000cc4: 40023c00 .word 0x40023c00 -08000c4c : +08000cc8 : * @note This function is declared as __weak to be overwritten in case of other * implementations in user file. * @retval None */ __weak void HAL_IncTick(void) { - 8000c4c: b480 push {r7} - 8000c4e: af00 add r7, sp, #0 + 8000cc8: b480 push {r7} + 8000cca: af00 add r7, sp, #0 uwTick += uwTickFreq; - 8000c50: 4b06 ldr r3, [pc, #24] ; (8000c6c ) - 8000c52: 781b ldrb r3, [r3, #0] - 8000c54: 461a mov r2, r3 - 8000c56: 4b06 ldr r3, [pc, #24] ; (8000c70 ) - 8000c58: 681b ldr r3, [r3, #0] - 8000c5a: 4413 add r3, r2 - 8000c5c: 4a04 ldr r2, [pc, #16] ; (8000c70 ) - 8000c5e: 6013 str r3, [r2, #0] + 8000ccc: 4b06 ldr r3, [pc, #24] ; (8000ce8 ) + 8000cce: 781b ldrb r3, [r3, #0] + 8000cd0: 461a mov r2, r3 + 8000cd2: 4b06 ldr r3, [pc, #24] ; (8000cec ) + 8000cd4: 681b ldr r3, [r3, #0] + 8000cd6: 4413 add r3, r2 + 8000cd8: 4a04 ldr r2, [pc, #16] ; (8000cec ) + 8000cda: 6013 str r3, [r2, #0] } - 8000c60: bf00 nop - 8000c62: 46bd mov sp, r7 - 8000c64: f85d 7b04 ldr.w r7, [sp], #4 - 8000c68: 4770 bx lr - 8000c6a: bf00 nop - 8000c6c: 20000008 .word 0x20000008 - 8000c70: 20000128 .word 0x20000128 + 8000cdc: bf00 nop + 8000cde: 46bd mov sp, r7 + 8000ce0: f85d 7b04 ldr.w r7, [sp], #4 + 8000ce4: 4770 bx lr + 8000ce6: bf00 nop + 8000ce8: 20000008 .word 0x20000008 + 8000cec: 20000128 .word 0x20000128 -08000c74 : +08000cf0 : * @note This function is declared as __weak to be overwritten in case of other * implementations in user file. * @retval tick value */ __weak uint32_t HAL_GetTick(void) { - 8000c74: b480 push {r7} - 8000c76: af00 add r7, sp, #0 + 8000cf0: b480 push {r7} + 8000cf2: af00 add r7, sp, #0 return uwTick; - 8000c78: 4b03 ldr r3, [pc, #12] ; (8000c88 ) - 8000c7a: 681b ldr r3, [r3, #0] + 8000cf4: 4b03 ldr r3, [pc, #12] ; (8000d04 ) + 8000cf6: 681b ldr r3, [r3, #0] } - 8000c7c: 4618 mov r0, r3 - 8000c7e: 46bd mov sp, r7 - 8000c80: f85d 7b04 ldr.w r7, [sp], #4 - 8000c84: 4770 bx lr - 8000c86: bf00 nop - 8000c88: 20000128 .word 0x20000128 + 8000cf8: 4618 mov r0, r3 + 8000cfa: 46bd mov sp, r7 + 8000cfc: f85d 7b04 ldr.w r7, [sp], #4 + 8000d00: 4770 bx lr + 8000d02: bf00 nop + 8000d04: 20000128 .word 0x20000128 -08000c8c <__NVIC_SetPriorityGrouping>: +08000d08 <__NVIC_SetPriorityGrouping>: In case of a conflict between priority grouping and available priority bits (__NVIC_PRIO_BITS), the smallest possible priority group is set. \param [in] PriorityGroup Priority grouping field. */ __STATIC_INLINE void __NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8000c8c: b480 push {r7} - 8000c8e: b085 sub sp, #20 - 8000c90: af00 add r7, sp, #0 - 8000c92: 6078 str r0, [r7, #4] + 8000d08: b480 push {r7} + 8000d0a: b085 sub sp, #20 + 8000d0c: af00 add r7, sp, #0 + 8000d0e: 6078 str r0, [r7, #4] uint32_t reg_value; uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8000c94: 687b ldr r3, [r7, #4] - 8000c96: f003 0307 and.w r3, r3, #7 - 8000c9a: 60fb str r3, [r7, #12] + 8000d10: 687b ldr r3, [r7, #4] + 8000d12: f003 0307 and.w r3, r3, #7 + 8000d16: 60fb str r3, [r7, #12] reg_value = SCB->AIRCR; /* read old register configuration */ - 8000c9c: 4b0c ldr r3, [pc, #48] ; (8000cd0 <__NVIC_SetPriorityGrouping+0x44>) - 8000c9e: 68db ldr r3, [r3, #12] - 8000ca0: 60bb str r3, [r7, #8] + 8000d18: 4b0c ldr r3, [pc, #48] ; (8000d4c <__NVIC_SetPriorityGrouping+0x44>) + 8000d1a: 68db ldr r3, [r3, #12] + 8000d1c: 60bb str r3, [r7, #8] reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ - 8000ca2: 68ba ldr r2, [r7, #8] - 8000ca4: f64f 03ff movw r3, #63743 ; 0xf8ff - 8000ca8: 4013 ands r3, r2 - 8000caa: 60bb str r3, [r7, #8] + 8000d1e: 68ba ldr r2, [r7, #8] + 8000d20: f64f 03ff movw r3, #63743 ; 0xf8ff + 8000d24: 4013 ands r3, r2 + 8000d26: 60bb str r3, [r7, #8] reg_value = (reg_value | ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | (PriorityGroupTmp << SCB_AIRCR_PRIGROUP_Pos) ); /* Insert write key and priority group */ - 8000cac: 68fb ldr r3, [r7, #12] - 8000cae: 021a lsls r2, r3, #8 + 8000d28: 68fb ldr r3, [r7, #12] + 8000d2a: 021a lsls r2, r3, #8 ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - 8000cb0: 68bb ldr r3, [r7, #8] - 8000cb2: 4313 orrs r3, r2 + 8000d2c: 68bb ldr r3, [r7, #8] + 8000d2e: 4313 orrs r3, r2 reg_value = (reg_value | - 8000cb4: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 - 8000cb8: f443 3300 orr.w r3, r3, #131072 ; 0x20000 - 8000cbc: 60bb str r3, [r7, #8] + 8000d30: f043 63bf orr.w r3, r3, #100139008 ; 0x5f80000 + 8000d34: f443 3300 orr.w r3, r3, #131072 ; 0x20000 + 8000d38: 60bb str r3, [r7, #8] SCB->AIRCR = reg_value; - 8000cbe: 4a04 ldr r2, [pc, #16] ; (8000cd0 <__NVIC_SetPriorityGrouping+0x44>) - 8000cc0: 68bb ldr r3, [r7, #8] - 8000cc2: 60d3 str r3, [r2, #12] + 8000d3a: 4a04 ldr r2, [pc, #16] ; (8000d4c <__NVIC_SetPriorityGrouping+0x44>) + 8000d3c: 68bb ldr r3, [r7, #8] + 8000d3e: 60d3 str r3, [r2, #12] } - 8000cc4: bf00 nop - 8000cc6: 3714 adds r7, #20 - 8000cc8: 46bd mov sp, r7 - 8000cca: f85d 7b04 ldr.w r7, [sp], #4 - 8000cce: 4770 bx lr - 8000cd0: e000ed00 .word 0xe000ed00 + 8000d40: bf00 nop + 8000d42: 3714 adds r7, #20 + 8000d44: 46bd mov sp, r7 + 8000d46: f85d 7b04 ldr.w r7, [sp], #4 + 8000d4a: 4770 bx lr + 8000d4c: e000ed00 .word 0xe000ed00 -08000cd4 <__NVIC_GetPriorityGrouping>: +08000d50 <__NVIC_GetPriorityGrouping>: \brief Get Priority Grouping \details Reads the priority grouping field from the NVIC Interrupt Controller. \return Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field). */ __STATIC_INLINE uint32_t __NVIC_GetPriorityGrouping(void) { - 8000cd4: b480 push {r7} - 8000cd6: af00 add r7, sp, #0 + 8000d50: b480 push {r7} + 8000d52: af00 add r7, sp, #0 return ((uint32_t)((SCB->AIRCR & SCB_AIRCR_PRIGROUP_Msk) >> SCB_AIRCR_PRIGROUP_Pos)); - 8000cd8: 4b04 ldr r3, [pc, #16] ; (8000cec <__NVIC_GetPriorityGrouping+0x18>) - 8000cda: 68db ldr r3, [r3, #12] - 8000cdc: 0a1b lsrs r3, r3, #8 - 8000cde: f003 0307 and.w r3, r3, #7 + 8000d54: 4b04 ldr r3, [pc, #16] ; (8000d68 <__NVIC_GetPriorityGrouping+0x18>) + 8000d56: 68db ldr r3, [r3, #12] + 8000d58: 0a1b lsrs r3, r3, #8 + 8000d5a: f003 0307 and.w r3, r3, #7 } - 8000ce2: 4618 mov r0, r3 - 8000ce4: 46bd mov sp, r7 - 8000ce6: f85d 7b04 ldr.w r7, [sp], #4 - 8000cea: 4770 bx lr - 8000cec: e000ed00 .word 0xe000ed00 + 8000d5e: 4618 mov r0, r3 + 8000d60: 46bd mov sp, r7 + 8000d62: f85d 7b04 ldr.w r7, [sp], #4 + 8000d66: 4770 bx lr + 8000d68: e000ed00 .word 0xe000ed00 -08000cf0 <__NVIC_EnableIRQ>: +08000d6c <__NVIC_EnableIRQ>: \details Enables a device specific interrupt in the NVIC interrupt controller. \param [in] IRQn Device specific interrupt number. \note IRQn must not be negative. */ __STATIC_INLINE void __NVIC_EnableIRQ(IRQn_Type IRQn) { - 8000cf0: b480 push {r7} - 8000cf2: b083 sub sp, #12 - 8000cf4: af00 add r7, sp, #0 - 8000cf6: 4603 mov r3, r0 - 8000cf8: 71fb strb r3, [r7, #7] + 8000d6c: b480 push {r7} + 8000d6e: b083 sub sp, #12 + 8000d70: af00 add r7, sp, #0 + 8000d72: 4603 mov r3, r0 + 8000d74: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8000cfa: f997 3007 ldrsb.w r3, [r7, #7] - 8000cfe: 2b00 cmp r3, #0 - 8000d00: db0b blt.n 8000d1a <__NVIC_EnableIRQ+0x2a> + 8000d76: f997 3007 ldrsb.w r3, [r7, #7] + 8000d7a: 2b00 cmp r3, #0 + 8000d7c: db0b blt.n 8000d96 <__NVIC_EnableIRQ+0x2a> { NVIC->ISER[(((uint32_t)IRQn) >> 5UL)] = (uint32_t)(1UL << (((uint32_t)IRQn) & 0x1FUL)); - 8000d02: 79fb ldrb r3, [r7, #7] - 8000d04: f003 021f and.w r2, r3, #31 - 8000d08: 4907 ldr r1, [pc, #28] ; (8000d28 <__NVIC_EnableIRQ+0x38>) - 8000d0a: f997 3007 ldrsb.w r3, [r7, #7] - 8000d0e: 095b lsrs r3, r3, #5 - 8000d10: 2001 movs r0, #1 - 8000d12: fa00 f202 lsl.w r2, r0, r2 - 8000d16: f841 2023 str.w r2, [r1, r3, lsl #2] + 8000d7e: 79fb ldrb r3, [r7, #7] + 8000d80: f003 021f and.w r2, r3, #31 + 8000d84: 4907 ldr r1, [pc, #28] ; (8000da4 <__NVIC_EnableIRQ+0x38>) + 8000d86: f997 3007 ldrsb.w r3, [r7, #7] + 8000d8a: 095b lsrs r3, r3, #5 + 8000d8c: 2001 movs r0, #1 + 8000d8e: fa00 f202 lsl.w r2, r0, r2 + 8000d92: f841 2023 str.w r2, [r1, r3, lsl #2] } } - 8000d1a: bf00 nop - 8000d1c: 370c adds r7, #12 - 8000d1e: 46bd mov sp, r7 - 8000d20: f85d 7b04 ldr.w r7, [sp], #4 - 8000d24: 4770 bx lr - 8000d26: bf00 nop - 8000d28: e000e100 .word 0xe000e100 + 8000d96: bf00 nop + 8000d98: 370c adds r7, #12 + 8000d9a: 46bd mov sp, r7 + 8000d9c: f85d 7b04 ldr.w r7, [sp], #4 + 8000da0: 4770 bx lr + 8000da2: bf00 nop + 8000da4: e000e100 .word 0xe000e100 -08000d2c <__NVIC_SetPriority>: +08000da8 <__NVIC_SetPriority>: \param [in] IRQn Interrupt number. \param [in] priority Priority to set. \note The priority cannot be set for every processor exception. */ __STATIC_INLINE void __NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority) { - 8000d2c: b480 push {r7} - 8000d2e: b083 sub sp, #12 - 8000d30: af00 add r7, sp, #0 - 8000d32: 4603 mov r3, r0 - 8000d34: 6039 str r1, [r7, #0] - 8000d36: 71fb strb r3, [r7, #7] + 8000da8: b480 push {r7} + 8000daa: b083 sub sp, #12 + 8000dac: af00 add r7, sp, #0 + 8000dae: 4603 mov r3, r0 + 8000db0: 6039 str r1, [r7, #0] + 8000db2: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8000d38: f997 3007 ldrsb.w r3, [r7, #7] - 8000d3c: 2b00 cmp r3, #0 - 8000d3e: db0a blt.n 8000d56 <__NVIC_SetPriority+0x2a> + 8000db4: f997 3007 ldrsb.w r3, [r7, #7] + 8000db8: 2b00 cmp r3, #0 + 8000dba: db0a blt.n 8000dd2 <__NVIC_SetPriority+0x2a> { NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8000d40: 683b ldr r3, [r7, #0] - 8000d42: b2da uxtb r2, r3 - 8000d44: 490c ldr r1, [pc, #48] ; (8000d78 <__NVIC_SetPriority+0x4c>) - 8000d46: f997 3007 ldrsb.w r3, [r7, #7] - 8000d4a: 0112 lsls r2, r2, #4 - 8000d4c: b2d2 uxtb r2, r2 - 8000d4e: 440b add r3, r1 - 8000d50: f883 2300 strb.w r2, [r3, #768] ; 0x300 + 8000dbc: 683b ldr r3, [r7, #0] + 8000dbe: b2da uxtb r2, r3 + 8000dc0: 490c ldr r1, [pc, #48] ; (8000df4 <__NVIC_SetPriority+0x4c>) + 8000dc2: f997 3007 ldrsb.w r3, [r7, #7] + 8000dc6: 0112 lsls r2, r2, #4 + 8000dc8: b2d2 uxtb r2, r2 + 8000dca: 440b add r3, r1 + 8000dcc: f883 2300 strb.w r2, [r3, #768] ; 0x300 } else { SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); } } - 8000d54: e00a b.n 8000d6c <__NVIC_SetPriority+0x40> + 8000dd0: e00a b.n 8000de8 <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8000d56: 683b ldr r3, [r7, #0] - 8000d58: b2da uxtb r2, r3 - 8000d5a: 4908 ldr r1, [pc, #32] ; (8000d7c <__NVIC_SetPriority+0x50>) - 8000d5c: 79fb ldrb r3, [r7, #7] - 8000d5e: f003 030f and.w r3, r3, #15 - 8000d62: 3b04 subs r3, #4 - 8000d64: 0112 lsls r2, r2, #4 - 8000d66: b2d2 uxtb r2, r2 - 8000d68: 440b add r3, r1 - 8000d6a: 761a strb r2, [r3, #24] + 8000dd2: 683b ldr r3, [r7, #0] + 8000dd4: b2da uxtb r2, r3 + 8000dd6: 4908 ldr r1, [pc, #32] ; (8000df8 <__NVIC_SetPriority+0x50>) + 8000dd8: 79fb ldrb r3, [r7, #7] + 8000dda: f003 030f and.w r3, r3, #15 + 8000dde: 3b04 subs r3, #4 + 8000de0: 0112 lsls r2, r2, #4 + 8000de2: b2d2 uxtb r2, r2 + 8000de4: 440b add r3, r1 + 8000de6: 761a strb r2, [r3, #24] } - 8000d6c: bf00 nop - 8000d6e: 370c adds r7, #12 - 8000d70: 46bd mov sp, r7 - 8000d72: f85d 7b04 ldr.w r7, [sp], #4 - 8000d76: 4770 bx lr - 8000d78: e000e100 .word 0xe000e100 - 8000d7c: e000ed00 .word 0xe000ed00 + 8000de8: bf00 nop + 8000dea: 370c adds r7, #12 + 8000dec: 46bd mov sp, r7 + 8000dee: f85d 7b04 ldr.w r7, [sp], #4 + 8000df2: 4770 bx lr + 8000df4: e000e100 .word 0xe000e100 + 8000df8: e000ed00 .word 0xe000ed00 -08000d80 : +08000dfc : \param [in] PreemptPriority Preemptive priority value (starting from 0). \param [in] SubPriority Subpriority value (starting from 0). \return Encoded priority. Value can be used in the function \ref NVIC_SetPriority(). */ __STATIC_INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority) { - 8000d80: b480 push {r7} - 8000d82: b089 sub sp, #36 ; 0x24 - 8000d84: af00 add r7, sp, #0 - 8000d86: 60f8 str r0, [r7, #12] - 8000d88: 60b9 str r1, [r7, #8] - 8000d8a: 607a str r2, [r7, #4] + 8000dfc: b480 push {r7} + 8000dfe: b089 sub sp, #36 ; 0x24 + 8000e00: af00 add r7, sp, #0 + 8000e02: 60f8 str r0, [r7, #12] + 8000e04: 60b9 str r1, [r7, #8] + 8000e06: 607a str r2, [r7, #4] uint32_t PriorityGroupTmp = (PriorityGroup & (uint32_t)0x07UL); /* only values 0..7 are used */ - 8000d8c: 68fb ldr r3, [r7, #12] - 8000d8e: f003 0307 and.w r3, r3, #7 - 8000d92: 61fb str r3, [r7, #28] + 8000e08: 68fb ldr r3, [r7, #12] + 8000e0a: f003 0307 and.w r3, r3, #7 + 8000e0e: 61fb str r3, [r7, #28] uint32_t PreemptPriorityBits; uint32_t SubPriorityBits; PreemptPriorityBits = ((7UL - PriorityGroupTmp) > (uint32_t)(__NVIC_PRIO_BITS)) ? (uint32_t)(__NVIC_PRIO_BITS) : (uint32_t)(7UL - PriorityGroupTmp); - 8000d94: 69fb ldr r3, [r7, #28] - 8000d96: f1c3 0307 rsb r3, r3, #7 - 8000d9a: 2b04 cmp r3, #4 - 8000d9c: bf28 it cs - 8000d9e: 2304 movcs r3, #4 - 8000da0: 61bb str r3, [r7, #24] + 8000e10: 69fb ldr r3, [r7, #28] + 8000e12: f1c3 0307 rsb r3, r3, #7 + 8000e16: 2b04 cmp r3, #4 + 8000e18: bf28 it cs + 8000e1a: 2304 movcs r3, #4 + 8000e1c: 61bb str r3, [r7, #24] SubPriorityBits = ((PriorityGroupTmp + (uint32_t)(__NVIC_PRIO_BITS)) < (uint32_t)7UL) ? (uint32_t)0UL : (uint32_t)((PriorityGroupTmp - 7UL) + (uint32_t)(__NVIC_PRIO_BITS)); - 8000da2: 69fb ldr r3, [r7, #28] - 8000da4: 3304 adds r3, #4 - 8000da6: 2b06 cmp r3, #6 - 8000da8: d902 bls.n 8000db0 - 8000daa: 69fb ldr r3, [r7, #28] - 8000dac: 3b03 subs r3, #3 - 8000dae: e000 b.n 8000db2 - 8000db0: 2300 movs r3, #0 - 8000db2: 617b str r3, [r7, #20] + 8000e1e: 69fb ldr r3, [r7, #28] + 8000e20: 3304 adds r3, #4 + 8000e22: 2b06 cmp r3, #6 + 8000e24: d902 bls.n 8000e2c + 8000e26: 69fb ldr r3, [r7, #28] + 8000e28: 3b03 subs r3, #3 + 8000e2a: e000 b.n 8000e2e + 8000e2c: 2300 movs r3, #0 + 8000e2e: 617b str r3, [r7, #20] return ( ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8000db4: f04f 32ff mov.w r2, #4294967295 - 8000db8: 69bb ldr r3, [r7, #24] - 8000dba: fa02 f303 lsl.w r3, r2, r3 - 8000dbe: 43da mvns r2, r3 - 8000dc0: 68bb ldr r3, [r7, #8] - 8000dc2: 401a ands r2, r3 - 8000dc4: 697b ldr r3, [r7, #20] - 8000dc6: 409a lsls r2, r3 + 8000e30: f04f 32ff mov.w r2, #4294967295 + 8000e34: 69bb ldr r3, [r7, #24] + 8000e36: fa02 f303 lsl.w r3, r2, r3 + 8000e3a: 43da mvns r2, r3 + 8000e3c: 68bb ldr r3, [r7, #8] + 8000e3e: 401a ands r2, r3 + 8000e40: 697b ldr r3, [r7, #20] + 8000e42: 409a lsls r2, r3 ((SubPriority & (uint32_t)((1UL << (SubPriorityBits )) - 1UL))) - 8000dc8: f04f 31ff mov.w r1, #4294967295 - 8000dcc: 697b ldr r3, [r7, #20] - 8000dce: fa01 f303 lsl.w r3, r1, r3 - 8000dd2: 43d9 mvns r1, r3 - 8000dd4: 687b ldr r3, [r7, #4] - 8000dd6: 400b ands r3, r1 + 8000e44: f04f 31ff mov.w r1, #4294967295 + 8000e48: 697b ldr r3, [r7, #20] + 8000e4a: fa01 f303 lsl.w r3, r1, r3 + 8000e4e: 43d9 mvns r1, r3 + 8000e50: 687b ldr r3, [r7, #4] + 8000e52: 400b ands r3, r1 ((PreemptPriority & (uint32_t)((1UL << (PreemptPriorityBits)) - 1UL)) << SubPriorityBits) | - 8000dd8: 4313 orrs r3, r2 + 8000e54: 4313 orrs r3, r2 ); } - 8000dda: 4618 mov r0, r3 - 8000ddc: 3724 adds r7, #36 ; 0x24 - 8000dde: 46bd mov sp, r7 - 8000de0: f85d 7b04 ldr.w r7, [sp], #4 - 8000de4: 4770 bx lr + 8000e56: 4618 mov r0, r3 + 8000e58: 3724 adds r7, #36 ; 0x24 + 8000e5a: 46bd mov sp, r7 + 8000e5c: f85d 7b04 ldr.w r7, [sp], #4 + 8000e60: 4770 bx lr -08000de6 : +08000e62 : * @note When the NVIC_PriorityGroup_0 is selected, IRQ preemption is no more possible. * The pending IRQ priority will be managed only by the subpriority. * @retval None */ void HAL_NVIC_SetPriorityGrouping(uint32_t PriorityGroup) { - 8000de6: b580 push {r7, lr} - 8000de8: b082 sub sp, #8 - 8000dea: af00 add r7, sp, #0 - 8000dec: 6078 str r0, [r7, #4] + 8000e62: b580 push {r7, lr} + 8000e64: b082 sub sp, #8 + 8000e66: af00 add r7, sp, #0 + 8000e68: 6078 str r0, [r7, #4] /* Check the parameters */ assert_param(IS_NVIC_PRIORITY_GROUP(PriorityGroup)); /* Set the PRIGROUP[10:8] bits according to the PriorityGroup parameter value */ NVIC_SetPriorityGrouping(PriorityGroup); - 8000dee: 6878 ldr r0, [r7, #4] - 8000df0: f7ff ff4c bl 8000c8c <__NVIC_SetPriorityGrouping> + 8000e6a: 6878 ldr r0, [r7, #4] + 8000e6c: f7ff ff4c bl 8000d08 <__NVIC_SetPriorityGrouping> } - 8000df4: bf00 nop - 8000df6: 3708 adds r7, #8 - 8000df8: 46bd mov sp, r7 - 8000dfa: bd80 pop {r7, pc} + 8000e70: bf00 nop + 8000e72: 3708 adds r7, #8 + 8000e74: 46bd mov sp, r7 + 8000e76: bd80 pop {r7, pc} -08000dfc : +08000e78 : * This parameter can be a value between 0 and 15 * A lower priority value indicates a higher priority. * @retval None */ void HAL_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority) { - 8000dfc: b580 push {r7, lr} - 8000dfe: b086 sub sp, #24 - 8000e00: af00 add r7, sp, #0 - 8000e02: 4603 mov r3, r0 - 8000e04: 60b9 str r1, [r7, #8] - 8000e06: 607a str r2, [r7, #4] - 8000e08: 73fb strb r3, [r7, #15] + 8000e78: b580 push {r7, lr} + 8000e7a: b086 sub sp, #24 + 8000e7c: af00 add r7, sp, #0 + 8000e7e: 4603 mov r3, r0 + 8000e80: 60b9 str r1, [r7, #8] + 8000e82: 607a str r2, [r7, #4] + 8000e84: 73fb strb r3, [r7, #15] uint32_t prioritygroup = 0x00U; - 8000e0a: 2300 movs r3, #0 - 8000e0c: 617b str r3, [r7, #20] + 8000e86: 2300 movs r3, #0 + 8000e88: 617b str r3, [r7, #20] /* Check the parameters */ assert_param(IS_NVIC_SUB_PRIORITY(SubPriority)); assert_param(IS_NVIC_PREEMPTION_PRIORITY(PreemptPriority)); prioritygroup = NVIC_GetPriorityGrouping(); - 8000e0e: f7ff ff61 bl 8000cd4 <__NVIC_GetPriorityGrouping> - 8000e12: 6178 str r0, [r7, #20] + 8000e8a: f7ff ff61 bl 8000d50 <__NVIC_GetPriorityGrouping> + 8000e8e: 6178 str r0, [r7, #20] NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority)); - 8000e14: 687a ldr r2, [r7, #4] - 8000e16: 68b9 ldr r1, [r7, #8] - 8000e18: 6978 ldr r0, [r7, #20] - 8000e1a: f7ff ffb1 bl 8000d80 - 8000e1e: 4602 mov r2, r0 - 8000e20: f997 300f ldrsb.w r3, [r7, #15] - 8000e24: 4611 mov r1, r2 - 8000e26: 4618 mov r0, r3 - 8000e28: f7ff ff80 bl 8000d2c <__NVIC_SetPriority> + 8000e90: 687a ldr r2, [r7, #4] + 8000e92: 68b9 ldr r1, [r7, #8] + 8000e94: 6978 ldr r0, [r7, #20] + 8000e96: f7ff ffb1 bl 8000dfc + 8000e9a: 4602 mov r2, r0 + 8000e9c: f997 300f ldrsb.w r3, [r7, #15] + 8000ea0: 4611 mov r1, r2 + 8000ea2: 4618 mov r0, r3 + 8000ea4: f7ff ff80 bl 8000da8 <__NVIC_SetPriority> } - 8000e2c: bf00 nop - 8000e2e: 3718 adds r7, #24 - 8000e30: 46bd mov sp, r7 - 8000e32: bd80 pop {r7, pc} + 8000ea8: bf00 nop + 8000eaa: 3718 adds r7, #24 + 8000eac: 46bd mov sp, r7 + 8000eae: bd80 pop {r7, pc} -08000e34 : +08000eb0 : * This parameter can be an enumerator of IRQn_Type enumeration * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h)) * @retval None */ void HAL_NVIC_EnableIRQ(IRQn_Type IRQn) { - 8000e34: b580 push {r7, lr} - 8000e36: b082 sub sp, #8 - 8000e38: af00 add r7, sp, #0 - 8000e3a: 4603 mov r3, r0 - 8000e3c: 71fb strb r3, [r7, #7] + 8000eb0: b580 push {r7, lr} + 8000eb2: b082 sub sp, #8 + 8000eb4: af00 add r7, sp, #0 + 8000eb6: 4603 mov r3, r0 + 8000eb8: 71fb strb r3, [r7, #7] /* Check the parameters */ assert_param(IS_NVIC_DEVICE_IRQ(IRQn)); /* Enable interrupt */ NVIC_EnableIRQ(IRQn); - 8000e3e: f997 3007 ldrsb.w r3, [r7, #7] - 8000e42: 4618 mov r0, r3 - 8000e44: f7ff ff54 bl 8000cf0 <__NVIC_EnableIRQ> + 8000eba: f997 3007 ldrsb.w r3, [r7, #7] + 8000ebe: 4618 mov r0, r3 + 8000ec0: f7ff ff54 bl 8000d6c <__NVIC_EnableIRQ> } - 8000e48: bf00 nop - 8000e4a: 3708 adds r7, #8 - 8000e4c: 46bd mov sp, r7 - 8000e4e: bd80 pop {r7, pc} + 8000ec4: bf00 nop + 8000ec6: 3708 adds r7, #8 + 8000ec8: 46bd mov sp, r7 + 8000eca: bd80 pop {r7, pc} -08000e50 : +08000ecc : * @param GPIO_Init pointer to a GPIO_InitTypeDef structure that contains * the configuration information for the specified GPIO peripheral. * @retval None */ void HAL_GPIO_Init(GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init) { - 8000e50: b480 push {r7} - 8000e52: b089 sub sp, #36 ; 0x24 - 8000e54: af00 add r7, sp, #0 - 8000e56: 6078 str r0, [r7, #4] - 8000e58: 6039 str r1, [r7, #0] + 8000ecc: b480 push {r7} + 8000ece: b089 sub sp, #36 ; 0x24 + 8000ed0: af00 add r7, sp, #0 + 8000ed2: 6078 str r0, [r7, #4] + 8000ed4: 6039 str r1, [r7, #0] uint32_t position; uint32_t ioposition = 0x00U; - 8000e5a: 2300 movs r3, #0 - 8000e5c: 617b str r3, [r7, #20] + 8000ed6: 2300 movs r3, #0 + 8000ed8: 617b str r3, [r7, #20] uint32_t iocurrent = 0x00U; - 8000e5e: 2300 movs r3, #0 - 8000e60: 613b str r3, [r7, #16] + 8000eda: 2300 movs r3, #0 + 8000edc: 613b str r3, [r7, #16] uint32_t temp = 0x00U; - 8000e62: 2300 movs r3, #0 - 8000e64: 61bb str r3, [r7, #24] + 8000ede: 2300 movs r3, #0 + 8000ee0: 61bb str r3, [r7, #24] assert_param(IS_GPIO_ALL_INSTANCE(GPIOx)); assert_param(IS_GPIO_PIN(GPIO_Init->Pin)); assert_param(IS_GPIO_MODE(GPIO_Init->Mode)); /* Configure the port pins */ for(position = 0U; position < GPIO_NUMBER; position++) - 8000e66: 2300 movs r3, #0 - 8000e68: 61fb str r3, [r7, #28] - 8000e6a: e159 b.n 8001120 + 8000ee2: 2300 movs r3, #0 + 8000ee4: 61fb str r3, [r7, #28] + 8000ee6: e159 b.n 800119c { /* Get the IO position */ ioposition = 0x01U << position; - 8000e6c: 2201 movs r2, #1 - 8000e6e: 69fb ldr r3, [r7, #28] - 8000e70: fa02 f303 lsl.w r3, r2, r3 - 8000e74: 617b str r3, [r7, #20] + 8000ee8: 2201 movs r2, #1 + 8000eea: 69fb ldr r3, [r7, #28] + 8000eec: fa02 f303 lsl.w r3, r2, r3 + 8000ef0: 617b str r3, [r7, #20] /* Get the current IO position */ iocurrent = (uint32_t)(GPIO_Init->Pin) & ioposition; - 8000e76: 683b ldr r3, [r7, #0] - 8000e78: 681b ldr r3, [r3, #0] - 8000e7a: 697a ldr r2, [r7, #20] - 8000e7c: 4013 ands r3, r2 - 8000e7e: 613b str r3, [r7, #16] + 8000ef2: 683b ldr r3, [r7, #0] + 8000ef4: 681b ldr r3, [r3, #0] + 8000ef6: 697a ldr r2, [r7, #20] + 8000ef8: 4013 ands r3, r2 + 8000efa: 613b str r3, [r7, #16] if(iocurrent == ioposition) - 8000e80: 693a ldr r2, [r7, #16] - 8000e82: 697b ldr r3, [r7, #20] - 8000e84: 429a cmp r2, r3 - 8000e86: f040 8148 bne.w 800111a + 8000efc: 693a ldr r2, [r7, #16] + 8000efe: 697b ldr r3, [r7, #20] + 8000f00: 429a cmp r2, r3 + 8000f02: f040 8148 bne.w 8001196 { /*--------------------- GPIO Mode Configuration ------------------------*/ /* In case of Output or Alternate function mode selection */ if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 8000e8a: 683b ldr r3, [r7, #0] - 8000e8c: 685b ldr r3, [r3, #4] - 8000e8e: f003 0303 and.w r3, r3, #3 - 8000e92: 2b01 cmp r3, #1 - 8000e94: d005 beq.n 8000ea2 + 8000f06: 683b ldr r3, [r7, #0] + 8000f08: 685b ldr r3, [r3, #4] + 8000f0a: f003 0303 and.w r3, r3, #3 + 8000f0e: 2b01 cmp r3, #1 + 8000f10: d005 beq.n 8000f1e (GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 8000e96: 683b ldr r3, [r7, #0] - 8000e98: 685b ldr r3, [r3, #4] - 8000e9a: f003 0303 and.w r3, r3, #3 + 8000f12: 683b ldr r3, [r7, #0] + 8000f14: 685b ldr r3, [r3, #4] + 8000f16: f003 0303 and.w r3, r3, #3 if(((GPIO_Init->Mode & GPIO_MODE) == MODE_OUTPUT) || \ - 8000e9e: 2b02 cmp r3, #2 - 8000ea0: d130 bne.n 8000f04 + 8000f1a: 2b02 cmp r3, #2 + 8000f1c: d130 bne.n 8000f80 { /* Check the Speed parameter */ assert_param(IS_GPIO_SPEED(GPIO_Init->Speed)); /* Configure the IO Speed */ temp = GPIOx->OSPEEDR; - 8000ea2: 687b ldr r3, [r7, #4] - 8000ea4: 689b ldr r3, [r3, #8] - 8000ea6: 61bb str r3, [r7, #24] + 8000f1e: 687b ldr r3, [r7, #4] + 8000f20: 689b ldr r3, [r3, #8] + 8000f22: 61bb str r3, [r7, #24] temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); - 8000ea8: 69fb ldr r3, [r7, #28] - 8000eaa: 005b lsls r3, r3, #1 - 8000eac: 2203 movs r2, #3 - 8000eae: fa02 f303 lsl.w r3, r2, r3 - 8000eb2: 43db mvns r3, r3 - 8000eb4: 69ba ldr r2, [r7, #24] - 8000eb6: 4013 ands r3, r2 - 8000eb8: 61bb str r3, [r7, #24] + 8000f24: 69fb ldr r3, [r7, #28] + 8000f26: 005b lsls r3, r3, #1 + 8000f28: 2203 movs r2, #3 + 8000f2a: fa02 f303 lsl.w r3, r2, r3 + 8000f2e: 43db mvns r3, r3 + 8000f30: 69ba ldr r2, [r7, #24] + 8000f32: 4013 ands r3, r2 + 8000f34: 61bb str r3, [r7, #24] temp |= (GPIO_Init->Speed << (position * 2U)); - 8000eba: 683b ldr r3, [r7, #0] - 8000ebc: 68da ldr r2, [r3, #12] - 8000ebe: 69fb ldr r3, [r7, #28] - 8000ec0: 005b lsls r3, r3, #1 - 8000ec2: fa02 f303 lsl.w r3, r2, r3 - 8000ec6: 69ba ldr r2, [r7, #24] - 8000ec8: 4313 orrs r3, r2 - 8000eca: 61bb str r3, [r7, #24] + 8000f36: 683b ldr r3, [r7, #0] + 8000f38: 68da ldr r2, [r3, #12] + 8000f3a: 69fb ldr r3, [r7, #28] + 8000f3c: 005b lsls r3, r3, #1 + 8000f3e: fa02 f303 lsl.w r3, r2, r3 + 8000f42: 69ba ldr r2, [r7, #24] + 8000f44: 4313 orrs r3, r2 + 8000f46: 61bb str r3, [r7, #24] GPIOx->OSPEEDR = temp; - 8000ecc: 687b ldr r3, [r7, #4] - 8000ece: 69ba ldr r2, [r7, #24] - 8000ed0: 609a str r2, [r3, #8] + 8000f48: 687b ldr r3, [r7, #4] + 8000f4a: 69ba ldr r2, [r7, #24] + 8000f4c: 609a str r2, [r3, #8] /* Configure the IO Output Type */ temp = GPIOx->OTYPER; - 8000ed2: 687b ldr r3, [r7, #4] - 8000ed4: 685b ldr r3, [r3, #4] - 8000ed6: 61bb str r3, [r7, #24] + 8000f4e: 687b ldr r3, [r7, #4] + 8000f50: 685b ldr r3, [r3, #4] + 8000f52: 61bb str r3, [r7, #24] temp &= ~(GPIO_OTYPER_OT_0 << position) ; - 8000ed8: 2201 movs r2, #1 - 8000eda: 69fb ldr r3, [r7, #28] - 8000edc: fa02 f303 lsl.w r3, r2, r3 - 8000ee0: 43db mvns r3, r3 - 8000ee2: 69ba ldr r2, [r7, #24] - 8000ee4: 4013 ands r3, r2 - 8000ee6: 61bb str r3, [r7, #24] + 8000f54: 2201 movs r2, #1 + 8000f56: 69fb ldr r3, [r7, #28] + 8000f58: fa02 f303 lsl.w r3, r2, r3 + 8000f5c: 43db mvns r3, r3 + 8000f5e: 69ba ldr r2, [r7, #24] + 8000f60: 4013 ands r3, r2 + 8000f62: 61bb str r3, [r7, #24] temp |= (((GPIO_Init->Mode & OUTPUT_TYPE) >> OUTPUT_TYPE_Pos) << position); - 8000ee8: 683b ldr r3, [r7, #0] - 8000eea: 685b ldr r3, [r3, #4] - 8000eec: 091b lsrs r3, r3, #4 - 8000eee: f003 0201 and.w r2, r3, #1 - 8000ef2: 69fb ldr r3, [r7, #28] - 8000ef4: fa02 f303 lsl.w r3, r2, r3 - 8000ef8: 69ba ldr r2, [r7, #24] - 8000efa: 4313 orrs r3, r2 - 8000efc: 61bb str r3, [r7, #24] + 8000f64: 683b ldr r3, [r7, #0] + 8000f66: 685b ldr r3, [r3, #4] + 8000f68: 091b lsrs r3, r3, #4 + 8000f6a: f003 0201 and.w r2, r3, #1 + 8000f6e: 69fb ldr r3, [r7, #28] + 8000f70: fa02 f303 lsl.w r3, r2, r3 + 8000f74: 69ba ldr r2, [r7, #24] + 8000f76: 4313 orrs r3, r2 + 8000f78: 61bb str r3, [r7, #24] GPIOx->OTYPER = temp; - 8000efe: 687b ldr r3, [r7, #4] - 8000f00: 69ba ldr r2, [r7, #24] - 8000f02: 605a str r2, [r3, #4] + 8000f7a: 687b ldr r3, [r7, #4] + 8000f7c: 69ba ldr r2, [r7, #24] + 8000f7e: 605a str r2, [r3, #4] } if((GPIO_Init->Mode & GPIO_MODE) != MODE_ANALOG) - 8000f04: 683b ldr r3, [r7, #0] - 8000f06: 685b ldr r3, [r3, #4] - 8000f08: f003 0303 and.w r3, r3, #3 - 8000f0c: 2b03 cmp r3, #3 - 8000f0e: d017 beq.n 8000f40 + 8000f80: 683b ldr r3, [r7, #0] + 8000f82: 685b ldr r3, [r3, #4] + 8000f84: f003 0303 and.w r3, r3, #3 + 8000f88: 2b03 cmp r3, #3 + 8000f8a: d017 beq.n 8000fbc { /* Check the parameters */ assert_param(IS_GPIO_PULL(GPIO_Init->Pull)); /* Activate the Pull-up or Pull down resistor for the current IO */ temp = GPIOx->PUPDR; - 8000f10: 687b ldr r3, [r7, #4] - 8000f12: 68db ldr r3, [r3, #12] - 8000f14: 61bb str r3, [r7, #24] + 8000f8c: 687b ldr r3, [r7, #4] + 8000f8e: 68db ldr r3, [r3, #12] + 8000f90: 61bb str r3, [r7, #24] temp &= ~(GPIO_PUPDR_PUPDR0 << (position * 2U)); - 8000f16: 69fb ldr r3, [r7, #28] - 8000f18: 005b lsls r3, r3, #1 - 8000f1a: 2203 movs r2, #3 - 8000f1c: fa02 f303 lsl.w r3, r2, r3 - 8000f20: 43db mvns r3, r3 - 8000f22: 69ba ldr r2, [r7, #24] - 8000f24: 4013 ands r3, r2 - 8000f26: 61bb str r3, [r7, #24] + 8000f92: 69fb ldr r3, [r7, #28] + 8000f94: 005b lsls r3, r3, #1 + 8000f96: 2203 movs r2, #3 + 8000f98: fa02 f303 lsl.w r3, r2, r3 + 8000f9c: 43db mvns r3, r3 + 8000f9e: 69ba ldr r2, [r7, #24] + 8000fa0: 4013 ands r3, r2 + 8000fa2: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Pull) << (position * 2U)); - 8000f28: 683b ldr r3, [r7, #0] - 8000f2a: 689a ldr r2, [r3, #8] - 8000f2c: 69fb ldr r3, [r7, #28] - 8000f2e: 005b lsls r3, r3, #1 - 8000f30: fa02 f303 lsl.w r3, r2, r3 - 8000f34: 69ba ldr r2, [r7, #24] - 8000f36: 4313 orrs r3, r2 - 8000f38: 61bb str r3, [r7, #24] + 8000fa4: 683b ldr r3, [r7, #0] + 8000fa6: 689a ldr r2, [r3, #8] + 8000fa8: 69fb ldr r3, [r7, #28] + 8000faa: 005b lsls r3, r3, #1 + 8000fac: fa02 f303 lsl.w r3, r2, r3 + 8000fb0: 69ba ldr r2, [r7, #24] + 8000fb2: 4313 orrs r3, r2 + 8000fb4: 61bb str r3, [r7, #24] GPIOx->PUPDR = temp; - 8000f3a: 687b ldr r3, [r7, #4] - 8000f3c: 69ba ldr r2, [r7, #24] - 8000f3e: 60da str r2, [r3, #12] + 8000fb6: 687b ldr r3, [r7, #4] + 8000fb8: 69ba ldr r2, [r7, #24] + 8000fba: 60da str r2, [r3, #12] } /* In case of Alternate function mode selection */ if((GPIO_Init->Mode & GPIO_MODE) == MODE_AF) - 8000f40: 683b ldr r3, [r7, #0] - 8000f42: 685b ldr r3, [r3, #4] - 8000f44: f003 0303 and.w r3, r3, #3 - 8000f48: 2b02 cmp r3, #2 - 8000f4a: d123 bne.n 8000f94 + 8000fbc: 683b ldr r3, [r7, #0] + 8000fbe: 685b ldr r3, [r3, #4] + 8000fc0: f003 0303 and.w r3, r3, #3 + 8000fc4: 2b02 cmp r3, #2 + 8000fc6: d123 bne.n 8001010 { /* Check the Alternate function parameter */ assert_param(IS_GPIO_AF(GPIO_Init->Alternate)); /* Configure Alternate function mapped with the current IO */ temp = GPIOx->AFR[position >> 3U]; - 8000f4c: 69fb ldr r3, [r7, #28] - 8000f4e: 08da lsrs r2, r3, #3 - 8000f50: 687b ldr r3, [r7, #4] - 8000f52: 3208 adds r2, #8 - 8000f54: f853 3022 ldr.w r3, [r3, r2, lsl #2] - 8000f58: 61bb str r3, [r7, #24] + 8000fc8: 69fb ldr r3, [r7, #28] + 8000fca: 08da lsrs r2, r3, #3 + 8000fcc: 687b ldr r3, [r7, #4] + 8000fce: 3208 adds r2, #8 + 8000fd0: f853 3022 ldr.w r3, [r3, r2, lsl #2] + 8000fd4: 61bb str r3, [r7, #24] temp &= ~(0xFU << ((uint32_t)(position & 0x07U) * 4U)) ; - 8000f5a: 69fb ldr r3, [r7, #28] - 8000f5c: f003 0307 and.w r3, r3, #7 - 8000f60: 009b lsls r3, r3, #2 - 8000f62: 220f movs r2, #15 - 8000f64: fa02 f303 lsl.w r3, r2, r3 - 8000f68: 43db mvns r3, r3 - 8000f6a: 69ba ldr r2, [r7, #24] - 8000f6c: 4013 ands r3, r2 - 8000f6e: 61bb str r3, [r7, #24] + 8000fd6: 69fb ldr r3, [r7, #28] + 8000fd8: f003 0307 and.w r3, r3, #7 + 8000fdc: 009b lsls r3, r3, #2 + 8000fde: 220f movs r2, #15 + 8000fe0: fa02 f303 lsl.w r3, r2, r3 + 8000fe4: 43db mvns r3, r3 + 8000fe6: 69ba ldr r2, [r7, #24] + 8000fe8: 4013 ands r3, r2 + 8000fea: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & 0x07U) * 4U)); - 8000f70: 683b ldr r3, [r7, #0] - 8000f72: 691a ldr r2, [r3, #16] - 8000f74: 69fb ldr r3, [r7, #28] - 8000f76: f003 0307 and.w r3, r3, #7 - 8000f7a: 009b lsls r3, r3, #2 - 8000f7c: fa02 f303 lsl.w r3, r2, r3 - 8000f80: 69ba ldr r2, [r7, #24] - 8000f82: 4313 orrs r3, r2 - 8000f84: 61bb str r3, [r7, #24] + 8000fec: 683b ldr r3, [r7, #0] + 8000fee: 691a ldr r2, [r3, #16] + 8000ff0: 69fb ldr r3, [r7, #28] + 8000ff2: f003 0307 and.w r3, r3, #7 + 8000ff6: 009b lsls r3, r3, #2 + 8000ff8: fa02 f303 lsl.w r3, r2, r3 + 8000ffc: 69ba ldr r2, [r7, #24] + 8000ffe: 4313 orrs r3, r2 + 8001000: 61bb str r3, [r7, #24] GPIOx->AFR[position >> 3U] = temp; - 8000f86: 69fb ldr r3, [r7, #28] - 8000f88: 08da lsrs r2, r3, #3 - 8000f8a: 687b ldr r3, [r7, #4] - 8000f8c: 3208 adds r2, #8 - 8000f8e: 69b9 ldr r1, [r7, #24] - 8000f90: f843 1022 str.w r1, [r3, r2, lsl #2] + 8001002: 69fb ldr r3, [r7, #28] + 8001004: 08da lsrs r2, r3, #3 + 8001006: 687b ldr r3, [r7, #4] + 8001008: 3208 adds r2, #8 + 800100a: 69b9 ldr r1, [r7, #24] + 800100c: f843 1022 str.w r1, [r3, r2, lsl #2] } /* Configure IO Direction mode (Input, Output, Alternate or Analog) */ temp = GPIOx->MODER; - 8000f94: 687b ldr r3, [r7, #4] - 8000f96: 681b ldr r3, [r3, #0] - 8000f98: 61bb str r3, [r7, #24] + 8001010: 687b ldr r3, [r7, #4] + 8001012: 681b ldr r3, [r3, #0] + 8001014: 61bb str r3, [r7, #24] temp &= ~(GPIO_MODER_MODER0 << (position * 2U)); - 8000f9a: 69fb ldr r3, [r7, #28] - 8000f9c: 005b lsls r3, r3, #1 - 8000f9e: 2203 movs r2, #3 - 8000fa0: fa02 f303 lsl.w r3, r2, r3 - 8000fa4: 43db mvns r3, r3 - 8000fa6: 69ba ldr r2, [r7, #24] - 8000fa8: 4013 ands r3, r2 - 8000faa: 61bb str r3, [r7, #24] + 8001016: 69fb ldr r3, [r7, #28] + 8001018: 005b lsls r3, r3, #1 + 800101a: 2203 movs r2, #3 + 800101c: fa02 f303 lsl.w r3, r2, r3 + 8001020: 43db mvns r3, r3 + 8001022: 69ba ldr r2, [r7, #24] + 8001024: 4013 ands r3, r2 + 8001026: 61bb str r3, [r7, #24] temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2U)); - 8000fac: 683b ldr r3, [r7, #0] - 8000fae: 685b ldr r3, [r3, #4] - 8000fb0: f003 0203 and.w r2, r3, #3 - 8000fb4: 69fb ldr r3, [r7, #28] - 8000fb6: 005b lsls r3, r3, #1 - 8000fb8: fa02 f303 lsl.w r3, r2, r3 - 8000fbc: 69ba ldr r2, [r7, #24] - 8000fbe: 4313 orrs r3, r2 - 8000fc0: 61bb str r3, [r7, #24] + 8001028: 683b ldr r3, [r7, #0] + 800102a: 685b ldr r3, [r3, #4] + 800102c: f003 0203 and.w r2, r3, #3 + 8001030: 69fb ldr r3, [r7, #28] + 8001032: 005b lsls r3, r3, #1 + 8001034: fa02 f303 lsl.w r3, r2, r3 + 8001038: 69ba ldr r2, [r7, #24] + 800103a: 4313 orrs r3, r2 + 800103c: 61bb str r3, [r7, #24] GPIOx->MODER = temp; - 8000fc2: 687b ldr r3, [r7, #4] - 8000fc4: 69ba ldr r2, [r7, #24] - 8000fc6: 601a str r2, [r3, #0] + 800103e: 687b ldr r3, [r7, #4] + 8001040: 69ba ldr r2, [r7, #24] + 8001042: 601a str r2, [r3, #0] /*--------------------- EXTI Mode Configuration ------------------------*/ /* Configure the External Interrupt or event for the current IO */ if((GPIO_Init->Mode & EXTI_MODE) != 0x00U) - 8000fc8: 683b ldr r3, [r7, #0] - 8000fca: 685b ldr r3, [r3, #4] - 8000fcc: f403 3340 and.w r3, r3, #196608 ; 0x30000 - 8000fd0: 2b00 cmp r3, #0 - 8000fd2: f000 80a2 beq.w 800111a + 8001044: 683b ldr r3, [r7, #0] + 8001046: 685b ldr r3, [r3, #4] + 8001048: f403 3340 and.w r3, r3, #196608 ; 0x30000 + 800104c: 2b00 cmp r3, #0 + 800104e: f000 80a2 beq.w 8001196 { /* Enable SYSCFG Clock */ __HAL_RCC_SYSCFG_CLK_ENABLE(); - 8000fd6: 2300 movs r3, #0 - 8000fd8: 60fb str r3, [r7, #12] - 8000fda: 4b57 ldr r3, [pc, #348] ; (8001138 ) - 8000fdc: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000fde: 4a56 ldr r2, [pc, #344] ; (8001138 ) - 8000fe0: f443 4380 orr.w r3, r3, #16384 ; 0x4000 - 8000fe4: 6453 str r3, [r2, #68] ; 0x44 - 8000fe6: 4b54 ldr r3, [pc, #336] ; (8001138 ) - 8000fe8: 6c5b ldr r3, [r3, #68] ; 0x44 - 8000fea: f403 4380 and.w r3, r3, #16384 ; 0x4000 - 8000fee: 60fb str r3, [r7, #12] - 8000ff0: 68fb ldr r3, [r7, #12] + 8001052: 2300 movs r3, #0 + 8001054: 60fb str r3, [r7, #12] + 8001056: 4b57 ldr r3, [pc, #348] ; (80011b4 ) + 8001058: 6c5b ldr r3, [r3, #68] ; 0x44 + 800105a: 4a56 ldr r2, [pc, #344] ; (80011b4 ) + 800105c: f443 4380 orr.w r3, r3, #16384 ; 0x4000 + 8001060: 6453 str r3, [r2, #68] ; 0x44 + 8001062: 4b54 ldr r3, [pc, #336] ; (80011b4 ) + 8001064: 6c5b ldr r3, [r3, #68] ; 0x44 + 8001066: f403 4380 and.w r3, r3, #16384 ; 0x4000 + 800106a: 60fb str r3, [r7, #12] + 800106c: 68fb ldr r3, [r7, #12] temp = SYSCFG->EXTICR[position >> 2U]; - 8000ff2: 4a52 ldr r2, [pc, #328] ; (800113c ) - 8000ff4: 69fb ldr r3, [r7, #28] - 8000ff6: 089b lsrs r3, r3, #2 - 8000ff8: 3302 adds r3, #2 - 8000ffa: f852 3023 ldr.w r3, [r2, r3, lsl #2] - 8000ffe: 61bb str r3, [r7, #24] + 800106e: 4a52 ldr r2, [pc, #328] ; (80011b8 ) + 8001070: 69fb ldr r3, [r7, #28] + 8001072: 089b lsrs r3, r3, #2 + 8001074: 3302 adds r3, #2 + 8001076: f852 3023 ldr.w r3, [r2, r3, lsl #2] + 800107a: 61bb str r3, [r7, #24] temp &= ~(0x0FU << (4U * (position & 0x03U))); - 8001000: 69fb ldr r3, [r7, #28] - 8001002: f003 0303 and.w r3, r3, #3 - 8001006: 009b lsls r3, r3, #2 - 8001008: 220f movs r2, #15 - 800100a: fa02 f303 lsl.w r3, r2, r3 - 800100e: 43db mvns r3, r3 - 8001010: 69ba ldr r2, [r7, #24] - 8001012: 4013 ands r3, r2 - 8001014: 61bb str r3, [r7, #24] + 800107c: 69fb ldr r3, [r7, #28] + 800107e: f003 0303 and.w r3, r3, #3 + 8001082: 009b lsls r3, r3, #2 + 8001084: 220f movs r2, #15 + 8001086: fa02 f303 lsl.w r3, r2, r3 + 800108a: 43db mvns r3, r3 + 800108c: 69ba ldr r2, [r7, #24] + 800108e: 4013 ands r3, r2 + 8001090: 61bb str r3, [r7, #24] temp |= ((uint32_t)(GPIO_GET_INDEX(GPIOx)) << (4U * (position & 0x03U))); - 8001016: 687b ldr r3, [r7, #4] - 8001018: 4a49 ldr r2, [pc, #292] ; (8001140 ) - 800101a: 4293 cmp r3, r2 - 800101c: d019 beq.n 8001052 - 800101e: 687b ldr r3, [r7, #4] - 8001020: 4a48 ldr r2, [pc, #288] ; (8001144 ) - 8001022: 4293 cmp r3, r2 - 8001024: d013 beq.n 800104e - 8001026: 687b ldr r3, [r7, #4] - 8001028: 4a47 ldr r2, [pc, #284] ; (8001148 ) - 800102a: 4293 cmp r3, r2 - 800102c: d00d beq.n 800104a - 800102e: 687b ldr r3, [r7, #4] - 8001030: 4a46 ldr r2, [pc, #280] ; (800114c ) - 8001032: 4293 cmp r3, r2 - 8001034: d007 beq.n 8001046 - 8001036: 687b ldr r3, [r7, #4] - 8001038: 4a45 ldr r2, [pc, #276] ; (8001150 ) - 800103a: 4293 cmp r3, r2 - 800103c: d101 bne.n 8001042 - 800103e: 2304 movs r3, #4 - 8001040: e008 b.n 8001054 - 8001042: 2307 movs r3, #7 - 8001044: e006 b.n 8001054 - 8001046: 2303 movs r3, #3 - 8001048: e004 b.n 8001054 - 800104a: 2302 movs r3, #2 - 800104c: e002 b.n 8001054 - 800104e: 2301 movs r3, #1 - 8001050: e000 b.n 8001054 - 8001052: 2300 movs r3, #0 - 8001054: 69fa ldr r2, [r7, #28] - 8001056: f002 0203 and.w r2, r2, #3 - 800105a: 0092 lsls r2, r2, #2 - 800105c: 4093 lsls r3, r2 - 800105e: 69ba ldr r2, [r7, #24] - 8001060: 4313 orrs r3, r2 - 8001062: 61bb str r3, [r7, #24] + 8001092: 687b ldr r3, [r7, #4] + 8001094: 4a49 ldr r2, [pc, #292] ; (80011bc ) + 8001096: 4293 cmp r3, r2 + 8001098: d019 beq.n 80010ce + 800109a: 687b ldr r3, [r7, #4] + 800109c: 4a48 ldr r2, [pc, #288] ; (80011c0 ) + 800109e: 4293 cmp r3, r2 + 80010a0: d013 beq.n 80010ca + 80010a2: 687b ldr r3, [r7, #4] + 80010a4: 4a47 ldr r2, [pc, #284] ; (80011c4 ) + 80010a6: 4293 cmp r3, r2 + 80010a8: d00d beq.n 80010c6 + 80010aa: 687b ldr r3, [r7, #4] + 80010ac: 4a46 ldr r2, [pc, #280] ; (80011c8 ) + 80010ae: 4293 cmp r3, r2 + 80010b0: d007 beq.n 80010c2 + 80010b2: 687b ldr r3, [r7, #4] + 80010b4: 4a45 ldr r2, [pc, #276] ; (80011cc ) + 80010b6: 4293 cmp r3, r2 + 80010b8: d101 bne.n 80010be + 80010ba: 2304 movs r3, #4 + 80010bc: e008 b.n 80010d0 + 80010be: 2307 movs r3, #7 + 80010c0: e006 b.n 80010d0 + 80010c2: 2303 movs r3, #3 + 80010c4: e004 b.n 80010d0 + 80010c6: 2302 movs r3, #2 + 80010c8: e002 b.n 80010d0 + 80010ca: 2301 movs r3, #1 + 80010cc: e000 b.n 80010d0 + 80010ce: 2300 movs r3, #0 + 80010d0: 69fa ldr r2, [r7, #28] + 80010d2: f002 0203 and.w r2, r2, #3 + 80010d6: 0092 lsls r2, r2, #2 + 80010d8: 4093 lsls r3, r2 + 80010da: 69ba ldr r2, [r7, #24] + 80010dc: 4313 orrs r3, r2 + 80010de: 61bb str r3, [r7, #24] SYSCFG->EXTICR[position >> 2U] = temp; - 8001064: 4935 ldr r1, [pc, #212] ; (800113c ) - 8001066: 69fb ldr r3, [r7, #28] - 8001068: 089b lsrs r3, r3, #2 - 800106a: 3302 adds r3, #2 - 800106c: 69ba ldr r2, [r7, #24] - 800106e: f841 2023 str.w r2, [r1, r3, lsl #2] + 80010e0: 4935 ldr r1, [pc, #212] ; (80011b8 ) + 80010e2: 69fb ldr r3, [r7, #28] + 80010e4: 089b lsrs r3, r3, #2 + 80010e6: 3302 adds r3, #2 + 80010e8: 69ba ldr r2, [r7, #24] + 80010ea: f841 2023 str.w r2, [r1, r3, lsl #2] /* Clear Rising Falling edge configuration */ temp = EXTI->RTSR; - 8001072: 4b38 ldr r3, [pc, #224] ; (8001154 ) - 8001074: 689b ldr r3, [r3, #8] - 8001076: 61bb str r3, [r7, #24] + 80010ee: 4b38 ldr r3, [pc, #224] ; (80011d0 ) + 80010f0: 689b ldr r3, [r3, #8] + 80010f2: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 8001078: 693b ldr r3, [r7, #16] - 800107a: 43db mvns r3, r3 - 800107c: 69ba ldr r2, [r7, #24] - 800107e: 4013 ands r3, r2 - 8001080: 61bb str r3, [r7, #24] + 80010f4: 693b ldr r3, [r7, #16] + 80010f6: 43db mvns r3, r3 + 80010f8: 69ba ldr r2, [r7, #24] + 80010fa: 4013 ands r3, r2 + 80010fc: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_RISING) != 0x00U) - 8001082: 683b ldr r3, [r7, #0] - 8001084: 685b ldr r3, [r3, #4] - 8001086: f403 1380 and.w r3, r3, #1048576 ; 0x100000 - 800108a: 2b00 cmp r3, #0 - 800108c: d003 beq.n 8001096 + 80010fe: 683b ldr r3, [r7, #0] + 8001100: 685b ldr r3, [r3, #4] + 8001102: f403 1380 and.w r3, r3, #1048576 ; 0x100000 + 8001106: 2b00 cmp r3, #0 + 8001108: d003 beq.n 8001112 { temp |= iocurrent; - 800108e: 69ba ldr r2, [r7, #24] - 8001090: 693b ldr r3, [r7, #16] - 8001092: 4313 orrs r3, r2 - 8001094: 61bb str r3, [r7, #24] + 800110a: 69ba ldr r2, [r7, #24] + 800110c: 693b ldr r3, [r7, #16] + 800110e: 4313 orrs r3, r2 + 8001110: 61bb str r3, [r7, #24] } EXTI->RTSR = temp; - 8001096: 4a2f ldr r2, [pc, #188] ; (8001154 ) - 8001098: 69bb ldr r3, [r7, #24] - 800109a: 6093 str r3, [r2, #8] + 8001112: 4a2f ldr r2, [pc, #188] ; (80011d0 ) + 8001114: 69bb ldr r3, [r7, #24] + 8001116: 6093 str r3, [r2, #8] temp = EXTI->FTSR; - 800109c: 4b2d ldr r3, [pc, #180] ; (8001154 ) - 800109e: 68db ldr r3, [r3, #12] - 80010a0: 61bb str r3, [r7, #24] + 8001118: 4b2d ldr r3, [pc, #180] ; (80011d0 ) + 800111a: 68db ldr r3, [r3, #12] + 800111c: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 80010a2: 693b ldr r3, [r7, #16] - 80010a4: 43db mvns r3, r3 - 80010a6: 69ba ldr r2, [r7, #24] - 80010a8: 4013 ands r3, r2 - 80010aa: 61bb str r3, [r7, #24] + 800111e: 693b ldr r3, [r7, #16] + 8001120: 43db mvns r3, r3 + 8001122: 69ba ldr r2, [r7, #24] + 8001124: 4013 ands r3, r2 + 8001126: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & TRIGGER_FALLING) != 0x00U) - 80010ac: 683b ldr r3, [r7, #0] - 80010ae: 685b ldr r3, [r3, #4] - 80010b0: f403 1300 and.w r3, r3, #2097152 ; 0x200000 - 80010b4: 2b00 cmp r3, #0 - 80010b6: d003 beq.n 80010c0 + 8001128: 683b ldr r3, [r7, #0] + 800112a: 685b ldr r3, [r3, #4] + 800112c: f403 1300 and.w r3, r3, #2097152 ; 0x200000 + 8001130: 2b00 cmp r3, #0 + 8001132: d003 beq.n 800113c { temp |= iocurrent; - 80010b8: 69ba ldr r2, [r7, #24] - 80010ba: 693b ldr r3, [r7, #16] - 80010bc: 4313 orrs r3, r2 - 80010be: 61bb str r3, [r7, #24] + 8001134: 69ba ldr r2, [r7, #24] + 8001136: 693b ldr r3, [r7, #16] + 8001138: 4313 orrs r3, r2 + 800113a: 61bb str r3, [r7, #24] } EXTI->FTSR = temp; - 80010c0: 4a24 ldr r2, [pc, #144] ; (8001154 ) - 80010c2: 69bb ldr r3, [r7, #24] - 80010c4: 60d3 str r3, [r2, #12] + 800113c: 4a24 ldr r2, [pc, #144] ; (80011d0 ) + 800113e: 69bb ldr r3, [r7, #24] + 8001140: 60d3 str r3, [r2, #12] temp = EXTI->EMR; - 80010c6: 4b23 ldr r3, [pc, #140] ; (8001154 ) - 80010c8: 685b ldr r3, [r3, #4] - 80010ca: 61bb str r3, [r7, #24] + 8001142: 4b23 ldr r3, [pc, #140] ; (80011d0 ) + 8001144: 685b ldr r3, [r3, #4] + 8001146: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 80010cc: 693b ldr r3, [r7, #16] - 80010ce: 43db mvns r3, r3 - 80010d0: 69ba ldr r2, [r7, #24] - 80010d2: 4013 ands r3, r2 - 80010d4: 61bb str r3, [r7, #24] + 8001148: 693b ldr r3, [r7, #16] + 800114a: 43db mvns r3, r3 + 800114c: 69ba ldr r2, [r7, #24] + 800114e: 4013 ands r3, r2 + 8001150: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_EVT) != 0x00U) - 80010d6: 683b ldr r3, [r7, #0] - 80010d8: 685b ldr r3, [r3, #4] - 80010da: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 80010de: 2b00 cmp r3, #0 - 80010e0: d003 beq.n 80010ea + 8001152: 683b ldr r3, [r7, #0] + 8001154: 685b ldr r3, [r3, #4] + 8001156: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 800115a: 2b00 cmp r3, #0 + 800115c: d003 beq.n 8001166 { temp |= iocurrent; - 80010e2: 69ba ldr r2, [r7, #24] - 80010e4: 693b ldr r3, [r7, #16] - 80010e6: 4313 orrs r3, r2 - 80010e8: 61bb str r3, [r7, #24] + 800115e: 69ba ldr r2, [r7, #24] + 8001160: 693b ldr r3, [r7, #16] + 8001162: 4313 orrs r3, r2 + 8001164: 61bb str r3, [r7, #24] } EXTI->EMR = temp; - 80010ea: 4a1a ldr r2, [pc, #104] ; (8001154 ) - 80010ec: 69bb ldr r3, [r7, #24] - 80010ee: 6053 str r3, [r2, #4] + 8001166: 4a1a ldr r2, [pc, #104] ; (80011d0 ) + 8001168: 69bb ldr r3, [r7, #24] + 800116a: 6053 str r3, [r2, #4] /* Clear EXTI line configuration */ temp = EXTI->IMR; - 80010f0: 4b18 ldr r3, [pc, #96] ; (8001154 ) - 80010f2: 681b ldr r3, [r3, #0] - 80010f4: 61bb str r3, [r7, #24] + 800116c: 4b18 ldr r3, [pc, #96] ; (80011d0 ) + 800116e: 681b ldr r3, [r3, #0] + 8001170: 61bb str r3, [r7, #24] temp &= ~((uint32_t)iocurrent); - 80010f6: 693b ldr r3, [r7, #16] - 80010f8: 43db mvns r3, r3 - 80010fa: 69ba ldr r2, [r7, #24] - 80010fc: 4013 ands r3, r2 - 80010fe: 61bb str r3, [r7, #24] + 8001172: 693b ldr r3, [r7, #16] + 8001174: 43db mvns r3, r3 + 8001176: 69ba ldr r2, [r7, #24] + 8001178: 4013 ands r3, r2 + 800117a: 61bb str r3, [r7, #24] if((GPIO_Init->Mode & EXTI_IT) != 0x00U) - 8001100: 683b ldr r3, [r7, #0] - 8001102: 685b ldr r3, [r3, #4] - 8001104: f403 3380 and.w r3, r3, #65536 ; 0x10000 - 8001108: 2b00 cmp r3, #0 - 800110a: d003 beq.n 8001114 + 800117c: 683b ldr r3, [r7, #0] + 800117e: 685b ldr r3, [r3, #4] + 8001180: f403 3380 and.w r3, r3, #65536 ; 0x10000 + 8001184: 2b00 cmp r3, #0 + 8001186: d003 beq.n 8001190 { temp |= iocurrent; - 800110c: 69ba ldr r2, [r7, #24] - 800110e: 693b ldr r3, [r7, #16] - 8001110: 4313 orrs r3, r2 - 8001112: 61bb str r3, [r7, #24] + 8001188: 69ba ldr r2, [r7, #24] + 800118a: 693b ldr r3, [r7, #16] + 800118c: 4313 orrs r3, r2 + 800118e: 61bb str r3, [r7, #24] } EXTI->IMR = temp; - 8001114: 4a0f ldr r2, [pc, #60] ; (8001154 ) - 8001116: 69bb ldr r3, [r7, #24] - 8001118: 6013 str r3, [r2, #0] + 8001190: 4a0f ldr r2, [pc, #60] ; (80011d0 ) + 8001192: 69bb ldr r3, [r7, #24] + 8001194: 6013 str r3, [r2, #0] for(position = 0U; position < GPIO_NUMBER; position++) - 800111a: 69fb ldr r3, [r7, #28] - 800111c: 3301 adds r3, #1 - 800111e: 61fb str r3, [r7, #28] - 8001120: 69fb ldr r3, [r7, #28] - 8001122: 2b0f cmp r3, #15 - 8001124: f67f aea2 bls.w 8000e6c + 8001196: 69fb ldr r3, [r7, #28] + 8001198: 3301 adds r3, #1 + 800119a: 61fb str r3, [r7, #28] + 800119c: 69fb ldr r3, [r7, #28] + 800119e: 2b0f cmp r3, #15 + 80011a0: f67f aea2 bls.w 8000ee8 } } } } - 8001128: bf00 nop - 800112a: bf00 nop - 800112c: 3724 adds r7, #36 ; 0x24 - 800112e: 46bd mov sp, r7 - 8001130: f85d 7b04 ldr.w r7, [sp], #4 - 8001134: 4770 bx lr - 8001136: bf00 nop - 8001138: 40023800 .word 0x40023800 - 800113c: 40013800 .word 0x40013800 - 8001140: 40020000 .word 0x40020000 - 8001144: 40020400 .word 0x40020400 - 8001148: 40020800 .word 0x40020800 - 800114c: 40020c00 .word 0x40020c00 - 8001150: 40021000 .word 0x40021000 - 8001154: 40013c00 .word 0x40013c00 + 80011a4: bf00 nop + 80011a6: bf00 nop + 80011a8: 3724 adds r7, #36 ; 0x24 + 80011aa: 46bd mov sp, r7 + 80011ac: f85d 7b04 ldr.w r7, [sp], #4 + 80011b0: 4770 bx lr + 80011b2: bf00 nop + 80011b4: 40023800 .word 0x40023800 + 80011b8: 40013800 .word 0x40013800 + 80011bc: 40020000 .word 0x40020000 + 80011c0: 40020400 .word 0x40020400 + 80011c4: 40020800 .word 0x40020800 + 80011c8: 40020c00 .word 0x40020c00 + 80011cc: 40021000 .word 0x40021000 + 80011d0: 40013c00 .word 0x40013c00 -08001158 : +080011d4 : * @param GPIO_Pin specifies the port bit to read. * This parameter can be GPIO_PIN_x where x can be (0..15). * @retval The input port pin value. */ GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin) { - 8001158: b480 push {r7} - 800115a: b085 sub sp, #20 - 800115c: af00 add r7, sp, #0 - 800115e: 6078 str r0, [r7, #4] - 8001160: 460b mov r3, r1 - 8001162: 807b strh r3, [r7, #2] + 80011d4: b480 push {r7} + 80011d6: b085 sub sp, #20 + 80011d8: af00 add r7, sp, #0 + 80011da: 6078 str r0, [r7, #4] + 80011dc: 460b mov r3, r1 + 80011de: 807b strh r3, [r7, #2] GPIO_PinState bitstatus; /* Check the parameters */ assert_param(IS_GPIO_PIN(GPIO_Pin)); if((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET) - 8001164: 687b ldr r3, [r7, #4] - 8001166: 691a ldr r2, [r3, #16] - 8001168: 887b ldrh r3, [r7, #2] - 800116a: 4013 ands r3, r2 - 800116c: 2b00 cmp r3, #0 - 800116e: d002 beq.n 8001176 + 80011e0: 687b ldr r3, [r7, #4] + 80011e2: 691a ldr r2, [r3, #16] + 80011e4: 887b ldrh r3, [r7, #2] + 80011e6: 4013 ands r3, r2 + 80011e8: 2b00 cmp r3, #0 + 80011ea: d002 beq.n 80011f2 { bitstatus = GPIO_PIN_SET; - 8001170: 2301 movs r3, #1 - 8001172: 73fb strb r3, [r7, #15] - 8001174: e001 b.n 800117a + 80011ec: 2301 movs r3, #1 + 80011ee: 73fb strb r3, [r7, #15] + 80011f0: e001 b.n 80011f6 } else { bitstatus = GPIO_PIN_RESET; - 8001176: 2300 movs r3, #0 - 8001178: 73fb strb r3, [r7, #15] + 80011f2: 2300 movs r3, #0 + 80011f4: 73fb strb r3, [r7, #15] } return bitstatus; - 800117a: 7bfb ldrb r3, [r7, #15] + 80011f6: 7bfb ldrb r3, [r7, #15] } - 800117c: 4618 mov r0, r3 - 800117e: 3714 adds r7, #20 - 8001180: 46bd mov sp, r7 - 8001182: f85d 7b04 ldr.w r7, [sp], #4 - 8001186: 4770 bx lr + 80011f8: 4618 mov r0, r3 + 80011fa: 3714 adds r7, #20 + 80011fc: 46bd mov sp, r7 + 80011fe: f85d 7b04 ldr.w r7, [sp], #4 + 8001202: 4770 bx lr -08001188 : +08001204 : * @arg GPIO_PIN_RESET: to clear the port pin * @arg GPIO_PIN_SET: to set the port pin * @retval None */ void HAL_GPIO_WritePin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState) { - 8001188: b480 push {r7} - 800118a: b083 sub sp, #12 - 800118c: af00 add r7, sp, #0 - 800118e: 6078 str r0, [r7, #4] - 8001190: 460b mov r3, r1 - 8001192: 807b strh r3, [r7, #2] - 8001194: 4613 mov r3, r2 - 8001196: 707b strb r3, [r7, #1] + 8001204: b480 push {r7} + 8001206: b083 sub sp, #12 + 8001208: af00 add r7, sp, #0 + 800120a: 6078 str r0, [r7, #4] + 800120c: 460b mov r3, r1 + 800120e: 807b strh r3, [r7, #2] + 8001210: 4613 mov r3, r2 + 8001212: 707b strb r3, [r7, #1] /* Check the parameters */ assert_param(IS_GPIO_PIN(GPIO_Pin)); assert_param(IS_GPIO_PIN_ACTION(PinState)); if(PinState != GPIO_PIN_RESET) - 8001198: 787b ldrb r3, [r7, #1] - 800119a: 2b00 cmp r3, #0 - 800119c: d003 beq.n 80011a6 + 8001214: 787b ldrb r3, [r7, #1] + 8001216: 2b00 cmp r3, #0 + 8001218: d003 beq.n 8001222 { GPIOx->BSRR = GPIO_Pin; - 800119e: 887a ldrh r2, [r7, #2] - 80011a0: 687b ldr r3, [r7, #4] - 80011a2: 619a str r2, [r3, #24] + 800121a: 887a ldrh r2, [r7, #2] + 800121c: 687b ldr r3, [r7, #4] + 800121e: 619a str r2, [r3, #24] } else { GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; } } - 80011a4: e003 b.n 80011ae + 8001220: e003 b.n 800122a GPIOx->BSRR = (uint32_t)GPIO_Pin << 16U; - 80011a6: 887b ldrh r3, [r7, #2] - 80011a8: 041a lsls r2, r3, #16 - 80011aa: 687b ldr r3, [r7, #4] - 80011ac: 619a str r2, [r3, #24] + 8001222: 887b ldrh r3, [r7, #2] + 8001224: 041a lsls r2, r3, #16 + 8001226: 687b ldr r3, [r7, #4] + 8001228: 619a str r2, [r3, #24] } - 80011ae: bf00 nop - 80011b0: 370c adds r7, #12 - 80011b2: 46bd mov sp, r7 - 80011b4: f85d 7b04 ldr.w r7, [sp], #4 - 80011b8: 4770 bx lr + 800122a: bf00 nop + 800122c: 370c adds r7, #12 + 800122e: 46bd mov sp, r7 + 8001230: f85d 7b04 ldr.w r7, [sp], #4 + 8001234: 4770 bx lr ... -080011bc : +08001238 : * supported by this API. User should request a transition to HSE Off * first and then HSE On or HSE Bypass. * @retval HAL status */ __weak HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *RCC_OscInitStruct) { - 80011bc: b580 push {r7, lr} - 80011be: b086 sub sp, #24 - 80011c0: af00 add r7, sp, #0 - 80011c2: 6078 str r0, [r7, #4] + 8001238: b580 push {r7, lr} + 800123a: b086 sub sp, #24 + 800123c: af00 add r7, sp, #0 + 800123e: 6078 str r0, [r7, #4] uint32_t tickstart, pll_config; /* Check Null pointer */ if(RCC_OscInitStruct == NULL) - 80011c4: 687b ldr r3, [r7, #4] - 80011c6: 2b00 cmp r3, #0 - 80011c8: d101 bne.n 80011ce + 8001240: 687b ldr r3, [r7, #4] + 8001242: 2b00 cmp r3, #0 + 8001244: d101 bne.n 800124a { return HAL_ERROR; - 80011ca: 2301 movs r3, #1 - 80011cc: e267 b.n 800169e + 8001246: 2301 movs r3, #1 + 8001248: e267 b.n 800171a } /* Check the parameters */ assert_param(IS_RCC_OSCILLATORTYPE(RCC_OscInitStruct->OscillatorType)); /*------------------------------- HSE Configuration ------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSE) == RCC_OSCILLATORTYPE_HSE) - 80011ce: 687b ldr r3, [r7, #4] - 80011d0: 681b ldr r3, [r3, #0] - 80011d2: f003 0301 and.w r3, r3, #1 - 80011d6: 2b00 cmp r3, #0 - 80011d8: d075 beq.n 80012c6 + 800124a: 687b ldr r3, [r7, #4] + 800124c: 681b ldr r3, [r3, #0] + 800124e: f003 0301 and.w r3, r3, #1 + 8001252: 2b00 cmp r3, #0 + 8001254: d075 beq.n 8001342 { /* Check the parameters */ assert_param(IS_RCC_HSE(RCC_OscInitStruct->HSEState)); /* When the HSE is used as system clock or clock source for PLL in these cases HSE will not disabled */ if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) ||\ - 80011da: 4b88 ldr r3, [pc, #544] ; (80013fc ) - 80011dc: 689b ldr r3, [r3, #8] - 80011de: f003 030c and.w r3, r3, #12 - 80011e2: 2b04 cmp r3, #4 - 80011e4: d00c beq.n 8001200 + 8001256: 4b88 ldr r3, [pc, #544] ; (8001478 ) + 8001258: 689b ldr r3, [r3, #8] + 800125a: f003 030c and.w r3, r3, #12 + 800125e: 2b04 cmp r3, #4 + 8001260: d00c beq.n 800127c ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 80011e6: 4b85 ldr r3, [pc, #532] ; (80013fc ) - 80011e8: 689b ldr r3, [r3, #8] - 80011ea: f003 030c and.w r3, r3, #12 + 8001262: 4b85 ldr r3, [pc, #532] ; (8001478 ) + 8001264: 689b ldr r3, [r3, #8] + 8001266: f003 030c and.w r3, r3, #12 if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSE) ||\ - 80011ee: 2b08 cmp r3, #8 - 80011f0: d112 bne.n 8001218 + 800126a: 2b08 cmp r3, #8 + 800126c: d112 bne.n 8001294 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSE))) - 80011f2: 4b82 ldr r3, [pc, #520] ; (80013fc ) - 80011f4: 685b ldr r3, [r3, #4] - 80011f6: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 80011fa: f5b3 0f80 cmp.w r3, #4194304 ; 0x400000 - 80011fe: d10b bne.n 8001218 + 800126e: 4b82 ldr r3, [pc, #520] ; (8001478 ) + 8001270: 685b ldr r3, [r3, #4] + 8001272: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 8001276: f5b3 0f80 cmp.w r3, #4194304 ; 0x400000 + 800127a: d10b bne.n 8001294 { if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 8001200: 4b7e ldr r3, [pc, #504] ; (80013fc ) - 8001202: 681b ldr r3, [r3, #0] - 8001204: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001208: 2b00 cmp r3, #0 - 800120a: d05b beq.n 80012c4 - 800120c: 687b ldr r3, [r7, #4] - 800120e: 685b ldr r3, [r3, #4] - 8001210: 2b00 cmp r3, #0 - 8001212: d157 bne.n 80012c4 + 800127c: 4b7e ldr r3, [pc, #504] ; (8001478 ) + 800127e: 681b ldr r3, [r3, #0] + 8001280: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001284: 2b00 cmp r3, #0 + 8001286: d05b beq.n 8001340 + 8001288: 687b ldr r3, [r7, #4] + 800128a: 685b ldr r3, [r3, #4] + 800128c: 2b00 cmp r3, #0 + 800128e: d157 bne.n 8001340 { return HAL_ERROR; - 8001214: 2301 movs r3, #1 - 8001216: e242 b.n 800169e + 8001290: 2301 movs r3, #1 + 8001292: e242 b.n 800171a } } else { /* Set the new HSE configuration ---------------------------------------*/ __HAL_RCC_HSE_CONFIG(RCC_OscInitStruct->HSEState); - 8001218: 687b ldr r3, [r7, #4] - 800121a: 685b ldr r3, [r3, #4] - 800121c: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 - 8001220: d106 bne.n 8001230 - 8001222: 4b76 ldr r3, [pc, #472] ; (80013fc ) - 8001224: 681b ldr r3, [r3, #0] - 8001226: 4a75 ldr r2, [pc, #468] ; (80013fc ) - 8001228: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 800122c: 6013 str r3, [r2, #0] - 800122e: e01d b.n 800126c - 8001230: 687b ldr r3, [r7, #4] - 8001232: 685b ldr r3, [r3, #4] - 8001234: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 - 8001238: d10c bne.n 8001254 - 800123a: 4b70 ldr r3, [pc, #448] ; (80013fc ) - 800123c: 681b ldr r3, [r3, #0] - 800123e: 4a6f ldr r2, [pc, #444] ; (80013fc ) - 8001240: f443 2380 orr.w r3, r3, #262144 ; 0x40000 - 8001244: 6013 str r3, [r2, #0] - 8001246: 4b6d ldr r3, [pc, #436] ; (80013fc ) - 8001248: 681b ldr r3, [r3, #0] - 800124a: 4a6c ldr r2, [pc, #432] ; (80013fc ) - 800124c: f443 3380 orr.w r3, r3, #65536 ; 0x10000 - 8001250: 6013 str r3, [r2, #0] - 8001252: e00b b.n 800126c - 8001254: 4b69 ldr r3, [pc, #420] ; (80013fc ) - 8001256: 681b ldr r3, [r3, #0] - 8001258: 4a68 ldr r2, [pc, #416] ; (80013fc ) - 800125a: f423 3380 bic.w r3, r3, #65536 ; 0x10000 - 800125e: 6013 str r3, [r2, #0] - 8001260: 4b66 ldr r3, [pc, #408] ; (80013fc ) - 8001262: 681b ldr r3, [r3, #0] - 8001264: 4a65 ldr r2, [pc, #404] ; (80013fc ) - 8001266: f423 2380 bic.w r3, r3, #262144 ; 0x40000 - 800126a: 6013 str r3, [r2, #0] + 8001294: 687b ldr r3, [r7, #4] + 8001296: 685b ldr r3, [r3, #4] + 8001298: f5b3 3f80 cmp.w r3, #65536 ; 0x10000 + 800129c: d106 bne.n 80012ac + 800129e: 4b76 ldr r3, [pc, #472] ; (8001478 ) + 80012a0: 681b ldr r3, [r3, #0] + 80012a2: 4a75 ldr r2, [pc, #468] ; (8001478 ) + 80012a4: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 80012a8: 6013 str r3, [r2, #0] + 80012aa: e01d b.n 80012e8 + 80012ac: 687b ldr r3, [r7, #4] + 80012ae: 685b ldr r3, [r3, #4] + 80012b0: f5b3 2fa0 cmp.w r3, #327680 ; 0x50000 + 80012b4: d10c bne.n 80012d0 + 80012b6: 4b70 ldr r3, [pc, #448] ; (8001478 ) + 80012b8: 681b ldr r3, [r3, #0] + 80012ba: 4a6f ldr r2, [pc, #444] ; (8001478 ) + 80012bc: f443 2380 orr.w r3, r3, #262144 ; 0x40000 + 80012c0: 6013 str r3, [r2, #0] + 80012c2: 4b6d ldr r3, [pc, #436] ; (8001478 ) + 80012c4: 681b ldr r3, [r3, #0] + 80012c6: 4a6c ldr r2, [pc, #432] ; (8001478 ) + 80012c8: f443 3380 orr.w r3, r3, #65536 ; 0x10000 + 80012cc: 6013 str r3, [r2, #0] + 80012ce: e00b b.n 80012e8 + 80012d0: 4b69 ldr r3, [pc, #420] ; (8001478 ) + 80012d2: 681b ldr r3, [r3, #0] + 80012d4: 4a68 ldr r2, [pc, #416] ; (8001478 ) + 80012d6: f423 3380 bic.w r3, r3, #65536 ; 0x10000 + 80012da: 6013 str r3, [r2, #0] + 80012dc: 4b66 ldr r3, [pc, #408] ; (8001478 ) + 80012de: 681b ldr r3, [r3, #0] + 80012e0: 4a65 ldr r2, [pc, #404] ; (8001478 ) + 80012e2: f423 2380 bic.w r3, r3, #262144 ; 0x40000 + 80012e6: 6013 str r3, [r2, #0] /* Check the HSE State */ if((RCC_OscInitStruct->HSEState) != RCC_HSE_OFF) - 800126c: 687b ldr r3, [r7, #4] - 800126e: 685b ldr r3, [r3, #4] - 8001270: 2b00 cmp r3, #0 - 8001272: d013 beq.n 800129c + 80012e8: 687b ldr r3, [r7, #4] + 80012ea: 685b ldr r3, [r3, #4] + 80012ec: 2b00 cmp r3, #0 + 80012ee: d013 beq.n 8001318 { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8001274: f7ff fcfe bl 8000c74 - 8001278: 6138 str r0, [r7, #16] + 80012f0: f7ff fcfe bl 8000cf0 + 80012f4: 6138 str r0, [r7, #16] /* Wait till HSE is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800127a: e008 b.n 800128e + 80012f6: e008 b.n 800130a { if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) - 800127c: f7ff fcfa bl 8000c74 - 8001280: 4602 mov r2, r0 - 8001282: 693b ldr r3, [r7, #16] - 8001284: 1ad3 subs r3, r2, r3 - 8001286: 2b64 cmp r3, #100 ; 0x64 - 8001288: d901 bls.n 800128e + 80012f8: f7ff fcfa bl 8000cf0 + 80012fc: 4602 mov r2, r0 + 80012fe: 693b ldr r3, [r7, #16] + 8001300: 1ad3 subs r3, r2, r3 + 8001302: 2b64 cmp r3, #100 ; 0x64 + 8001304: d901 bls.n 800130a { return HAL_TIMEOUT; - 800128a: 2303 movs r3, #3 - 800128c: e207 b.n 800169e + 8001306: 2303 movs r3, #3 + 8001308: e207 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800128e: 4b5b ldr r3, [pc, #364] ; (80013fc ) - 8001290: 681b ldr r3, [r3, #0] - 8001292: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001296: 2b00 cmp r3, #0 - 8001298: d0f0 beq.n 800127c - 800129a: e014 b.n 80012c6 + 800130a: 4b5b ldr r3, [pc, #364] ; (8001478 ) + 800130c: 681b ldr r3, [r3, #0] + 800130e: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 8001312: 2b00 cmp r3, #0 + 8001314: d0f0 beq.n 80012f8 + 8001316: e014 b.n 8001342 } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 800129c: f7ff fcea bl 8000c74 - 80012a0: 6138 str r0, [r7, #16] + 8001318: f7ff fcea bl 8000cf0 + 800131c: 6138 str r0, [r7, #16] /* Wait till HSE is bypassed or disabled */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 80012a2: e008 b.n 80012b6 + 800131e: e008 b.n 8001332 { if((HAL_GetTick() - tickstart ) > HSE_TIMEOUT_VALUE) - 80012a4: f7ff fce6 bl 8000c74 - 80012a8: 4602 mov r2, r0 - 80012aa: 693b ldr r3, [r7, #16] - 80012ac: 1ad3 subs r3, r2, r3 - 80012ae: 2b64 cmp r3, #100 ; 0x64 - 80012b0: d901 bls.n 80012b6 + 8001320: f7ff fce6 bl 8000cf0 + 8001324: 4602 mov r2, r0 + 8001326: 693b ldr r3, [r7, #16] + 8001328: 1ad3 subs r3, r2, r3 + 800132a: 2b64 cmp r3, #100 ; 0x64 + 800132c: d901 bls.n 8001332 { return HAL_TIMEOUT; - 80012b2: 2303 movs r3, #3 - 80012b4: e1f3 b.n 800169e + 800132e: 2303 movs r3, #3 + 8001330: e1f3 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) - 80012b6: 4b51 ldr r3, [pc, #324] ; (80013fc ) - 80012b8: 681b ldr r3, [r3, #0] - 80012ba: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 80012be: 2b00 cmp r3, #0 - 80012c0: d1f0 bne.n 80012a4 - 80012c2: e000 b.n 80012c6 + 8001332: 4b51 ldr r3, [pc, #324] ; (8001478 ) + 8001334: 681b ldr r3, [r3, #0] + 8001336: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 800133a: 2b00 cmp r3, #0 + 800133c: d1f0 bne.n 8001320 + 800133e: e000 b.n 8001342 if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) != RESET) && (RCC_OscInitStruct->HSEState == RCC_HSE_OFF)) - 80012c4: bf00 nop + 8001340: bf00 nop } } } } /*----------------------------- HSI Configuration --------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_HSI) == RCC_OSCILLATORTYPE_HSI) - 80012c6: 687b ldr r3, [r7, #4] - 80012c8: 681b ldr r3, [r3, #0] - 80012ca: f003 0302 and.w r3, r3, #2 - 80012ce: 2b00 cmp r3, #0 - 80012d0: d063 beq.n 800139a + 8001342: 687b ldr r3, [r7, #4] + 8001344: 681b ldr r3, [r3, #0] + 8001346: f003 0302 and.w r3, r3, #2 + 800134a: 2b00 cmp r3, #0 + 800134c: d063 beq.n 8001416 /* Check the parameters */ assert_param(IS_RCC_HSI(RCC_OscInitStruct->HSIState)); assert_param(IS_RCC_CALIBRATION_VALUE(RCC_OscInitStruct->HSICalibrationValue)); /* Check if HSI is used as system clock or as PLL source when PLL is selected as system clock */ if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSI) ||\ - 80012d2: 4b4a ldr r3, [pc, #296] ; (80013fc ) - 80012d4: 689b ldr r3, [r3, #8] - 80012d6: f003 030c and.w r3, r3, #12 - 80012da: 2b00 cmp r3, #0 - 80012dc: d00b beq.n 80012f6 + 800134e: 4b4a ldr r3, [pc, #296] ; (8001478 ) + 8001350: 689b ldr r3, [r3, #8] + 8001352: f003 030c and.w r3, r3, #12 + 8001356: 2b00 cmp r3, #0 + 8001358: d00b beq.n 8001372 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 80012de: 4b47 ldr r3, [pc, #284] ; (80013fc ) - 80012e0: 689b ldr r3, [r3, #8] - 80012e2: f003 030c and.w r3, r3, #12 + 800135a: 4b47 ldr r3, [pc, #284] ; (8001478 ) + 800135c: 689b ldr r3, [r3, #8] + 800135e: f003 030c and.w r3, r3, #12 if((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_HSI) ||\ - 80012e6: 2b08 cmp r3, #8 - 80012e8: d11c bne.n 8001324 + 8001362: 2b08 cmp r3, #8 + 8001364: d11c bne.n 80013a0 ((__HAL_RCC_GET_SYSCLK_SOURCE() == RCC_CFGR_SWS_PLL) && ((RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) == RCC_PLLCFGR_PLLSRC_HSI))) - 80012ea: 4b44 ldr r3, [pc, #272] ; (80013fc ) - 80012ec: 685b ldr r3, [r3, #4] - 80012ee: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 80012f2: 2b00 cmp r3, #0 - 80012f4: d116 bne.n 8001324 + 8001366: 4b44 ldr r3, [pc, #272] ; (8001478 ) + 8001368: 685b ldr r3, [r3, #4] + 800136a: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 800136e: 2b00 cmp r3, #0 + 8001370: d116 bne.n 80013a0 { /* When HSI is used as system clock it will not disabled */ if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 80012f6: 4b41 ldr r3, [pc, #260] ; (80013fc ) - 80012f8: 681b ldr r3, [r3, #0] - 80012fa: f003 0302 and.w r3, r3, #2 - 80012fe: 2b00 cmp r3, #0 - 8001300: d005 beq.n 800130e - 8001302: 687b ldr r3, [r7, #4] - 8001304: 68db ldr r3, [r3, #12] - 8001306: 2b01 cmp r3, #1 - 8001308: d001 beq.n 800130e + 8001372: 4b41 ldr r3, [pc, #260] ; (8001478 ) + 8001374: 681b ldr r3, [r3, #0] + 8001376: f003 0302 and.w r3, r3, #2 + 800137a: 2b00 cmp r3, #0 + 800137c: d005 beq.n 800138a + 800137e: 687b ldr r3, [r7, #4] + 8001380: 68db ldr r3, [r3, #12] + 8001382: 2b01 cmp r3, #1 + 8001384: d001 beq.n 800138a { return HAL_ERROR; - 800130a: 2301 movs r3, #1 - 800130c: e1c7 b.n 800169e + 8001386: 2301 movs r3, #1 + 8001388: e1c7 b.n 800171a } /* Otherwise, just the calibration is allowed */ else { /* Adjusts the Internal High Speed oscillator (HSI) calibration value.*/ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 800130e: 4b3b ldr r3, [pc, #236] ; (80013fc ) - 8001310: 681b ldr r3, [r3, #0] - 8001312: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8001316: 687b ldr r3, [r7, #4] - 8001318: 691b ldr r3, [r3, #16] - 800131a: 00db lsls r3, r3, #3 - 800131c: 4937 ldr r1, [pc, #220] ; (80013fc ) - 800131e: 4313 orrs r3, r2 - 8001320: 600b str r3, [r1, #0] + 800138a: 4b3b ldr r3, [pc, #236] ; (8001478 ) + 800138c: 681b ldr r3, [r3, #0] + 800138e: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 8001392: 687b ldr r3, [r7, #4] + 8001394: 691b ldr r3, [r3, #16] + 8001396: 00db lsls r3, r3, #3 + 8001398: 4937 ldr r1, [pc, #220] ; (8001478 ) + 800139a: 4313 orrs r3, r2 + 800139c: 600b str r3, [r1, #0] if((__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) && (RCC_OscInitStruct->HSIState != RCC_HSI_ON)) - 8001322: e03a b.n 800139a + 800139e: e03a b.n 8001416 } } else { /* Check the HSI State */ if((RCC_OscInitStruct->HSIState)!= RCC_HSI_OFF) - 8001324: 687b ldr r3, [r7, #4] - 8001326: 68db ldr r3, [r3, #12] - 8001328: 2b00 cmp r3, #0 - 800132a: d020 beq.n 800136e + 80013a0: 687b ldr r3, [r7, #4] + 80013a2: 68db ldr r3, [r3, #12] + 80013a4: 2b00 cmp r3, #0 + 80013a6: d020 beq.n 80013ea { /* Enable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_ENABLE(); - 800132c: 4b34 ldr r3, [pc, #208] ; (8001400 ) - 800132e: 2201 movs r2, #1 - 8001330: 601a str r2, [r3, #0] + 80013a8: 4b34 ldr r3, [pc, #208] ; (800147c ) + 80013aa: 2201 movs r2, #1 + 80013ac: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8001332: f7ff fc9f bl 8000c74 - 8001336: 6138 str r0, [r7, #16] + 80013ae: f7ff fc9f bl 8000cf0 + 80013b2: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 8001338: e008 b.n 800134c + 80013b4: e008 b.n 80013c8 { if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) - 800133a: f7ff fc9b bl 8000c74 - 800133e: 4602 mov r2, r0 - 8001340: 693b ldr r3, [r7, #16] - 8001342: 1ad3 subs r3, r2, r3 - 8001344: 2b02 cmp r3, #2 - 8001346: d901 bls.n 800134c + 80013b6: f7ff fc9b bl 8000cf0 + 80013ba: 4602 mov r2, r0 + 80013bc: 693b ldr r3, [r7, #16] + 80013be: 1ad3 subs r3, r2, r3 + 80013c0: 2b02 cmp r3, #2 + 80013c2: d901 bls.n 80013c8 { return HAL_TIMEOUT; - 8001348: 2303 movs r3, #3 - 800134a: e1a8 b.n 800169e + 80013c4: 2303 movs r3, #3 + 80013c6: e1a8 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800134c: 4b2b ldr r3, [pc, #172] ; (80013fc ) - 800134e: 681b ldr r3, [r3, #0] - 8001350: f003 0302 and.w r3, r3, #2 - 8001354: 2b00 cmp r3, #0 - 8001356: d0f0 beq.n 800133a + 80013c8: 4b2b ldr r3, [pc, #172] ; (8001478 ) + 80013ca: 681b ldr r3, [r3, #0] + 80013cc: f003 0302 and.w r3, r3, #2 + 80013d0: 2b00 cmp r3, #0 + 80013d2: d0f0 beq.n 80013b6 } } /* Adjusts the Internal High Speed oscillator (HSI) calibration value. */ __HAL_RCC_HSI_CALIBRATIONVALUE_ADJUST(RCC_OscInitStruct->HSICalibrationValue); - 8001358: 4b28 ldr r3, [pc, #160] ; (80013fc ) - 800135a: 681b ldr r3, [r3, #0] - 800135c: f023 02f8 bic.w r2, r3, #248 ; 0xf8 - 8001360: 687b ldr r3, [r7, #4] - 8001362: 691b ldr r3, [r3, #16] - 8001364: 00db lsls r3, r3, #3 - 8001366: 4925 ldr r1, [pc, #148] ; (80013fc ) - 8001368: 4313 orrs r3, r2 - 800136a: 600b str r3, [r1, #0] - 800136c: e015 b.n 800139a + 80013d4: 4b28 ldr r3, [pc, #160] ; (8001478 ) + 80013d6: 681b ldr r3, [r3, #0] + 80013d8: f023 02f8 bic.w r2, r3, #248 ; 0xf8 + 80013dc: 687b ldr r3, [r7, #4] + 80013de: 691b ldr r3, [r3, #16] + 80013e0: 00db lsls r3, r3, #3 + 80013e2: 4925 ldr r1, [pc, #148] ; (8001478 ) + 80013e4: 4313 orrs r3, r2 + 80013e6: 600b str r3, [r1, #0] + 80013e8: e015 b.n 8001416 } else { /* Disable the Internal High Speed oscillator (HSI). */ __HAL_RCC_HSI_DISABLE(); - 800136e: 4b24 ldr r3, [pc, #144] ; (8001400 ) - 8001370: 2200 movs r2, #0 - 8001372: 601a str r2, [r3, #0] + 80013ea: 4b24 ldr r3, [pc, #144] ; (800147c ) + 80013ec: 2200 movs r2, #0 + 80013ee: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 8001374: f7ff fc7e bl 8000c74 - 8001378: 6138 str r0, [r7, #16] + 80013f0: f7ff fc7e bl 8000cf0 + 80013f4: 6138 str r0, [r7, #16] /* Wait till HSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 800137a: e008 b.n 800138e + 80013f6: e008 b.n 800140a { if((HAL_GetTick() - tickstart ) > HSI_TIMEOUT_VALUE) - 800137c: f7ff fc7a bl 8000c74 - 8001380: 4602 mov r2, r0 - 8001382: 693b ldr r3, [r7, #16] - 8001384: 1ad3 subs r3, r2, r3 - 8001386: 2b02 cmp r3, #2 - 8001388: d901 bls.n 800138e + 80013f8: f7ff fc7a bl 8000cf0 + 80013fc: 4602 mov r2, r0 + 80013fe: 693b ldr r3, [r7, #16] + 8001400: 1ad3 subs r3, r2, r3 + 8001402: 2b02 cmp r3, #2 + 8001404: d901 bls.n 800140a { return HAL_TIMEOUT; - 800138a: 2303 movs r3, #3 - 800138c: e187 b.n 800169e + 8001406: 2303 movs r3, #3 + 8001408: e187 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) != RESET) - 800138e: 4b1b ldr r3, [pc, #108] ; (80013fc ) - 8001390: 681b ldr r3, [r3, #0] - 8001392: f003 0302 and.w r3, r3, #2 - 8001396: 2b00 cmp r3, #0 - 8001398: d1f0 bne.n 800137c + 800140a: 4b1b ldr r3, [pc, #108] ; (8001478 ) + 800140c: 681b ldr r3, [r3, #0] + 800140e: f003 0302 and.w r3, r3, #2 + 8001412: 2b00 cmp r3, #0 + 8001414: d1f0 bne.n 80013f8 } } } } /*------------------------------ LSI Configuration -------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSI) == RCC_OSCILLATORTYPE_LSI) - 800139a: 687b ldr r3, [r7, #4] - 800139c: 681b ldr r3, [r3, #0] - 800139e: f003 0308 and.w r3, r3, #8 - 80013a2: 2b00 cmp r3, #0 - 80013a4: d036 beq.n 8001414 + 8001416: 687b ldr r3, [r7, #4] + 8001418: 681b ldr r3, [r3, #0] + 800141a: f003 0308 and.w r3, r3, #8 + 800141e: 2b00 cmp r3, #0 + 8001420: d036 beq.n 8001490 { /* Check the parameters */ assert_param(IS_RCC_LSI(RCC_OscInitStruct->LSIState)); /* Check the LSI State */ if((RCC_OscInitStruct->LSIState)!= RCC_LSI_OFF) - 80013a6: 687b ldr r3, [r7, #4] - 80013a8: 695b ldr r3, [r3, #20] - 80013aa: 2b00 cmp r3, #0 - 80013ac: d016 beq.n 80013dc + 8001422: 687b ldr r3, [r7, #4] + 8001424: 695b ldr r3, [r3, #20] + 8001426: 2b00 cmp r3, #0 + 8001428: d016 beq.n 8001458 { /* Enable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_ENABLE(); - 80013ae: 4b15 ldr r3, [pc, #84] ; (8001404 ) - 80013b0: 2201 movs r2, #1 - 80013b2: 601a str r2, [r3, #0] + 800142a: 4b15 ldr r3, [pc, #84] ; (8001480 ) + 800142c: 2201 movs r2, #1 + 800142e: 601a str r2, [r3, #0] /* Get Start Tick*/ tickstart = HAL_GetTick(); - 80013b4: f7ff fc5e bl 8000c74 - 80013b8: 6138 str r0, [r7, #16] + 8001430: f7ff fc5e bl 8000cf0 + 8001434: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 80013ba: e008 b.n 80013ce + 8001436: e008 b.n 800144a { if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) - 80013bc: f7ff fc5a bl 8000c74 - 80013c0: 4602 mov r2, r0 - 80013c2: 693b ldr r3, [r7, #16] - 80013c4: 1ad3 subs r3, r2, r3 - 80013c6: 2b02 cmp r3, #2 - 80013c8: d901 bls.n 80013ce + 8001438: f7ff fc5a bl 8000cf0 + 800143c: 4602 mov r2, r0 + 800143e: 693b ldr r3, [r7, #16] + 8001440: 1ad3 subs r3, r2, r3 + 8001442: 2b02 cmp r3, #2 + 8001444: d901 bls.n 800144a { return HAL_TIMEOUT; - 80013ca: 2303 movs r3, #3 - 80013cc: e167 b.n 800169e + 8001446: 2303 movs r3, #3 + 8001448: e167 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) == RESET) - 80013ce: 4b0b ldr r3, [pc, #44] ; (80013fc ) - 80013d0: 6f5b ldr r3, [r3, #116] ; 0x74 - 80013d2: f003 0302 and.w r3, r3, #2 - 80013d6: 2b00 cmp r3, #0 - 80013d8: d0f0 beq.n 80013bc - 80013da: e01b b.n 8001414 + 800144a: 4b0b ldr r3, [pc, #44] ; (8001478 ) + 800144c: 6f5b ldr r3, [r3, #116] ; 0x74 + 800144e: f003 0302 and.w r3, r3, #2 + 8001452: 2b00 cmp r3, #0 + 8001454: d0f0 beq.n 8001438 + 8001456: e01b b.n 8001490 } } else { /* Disable the Internal Low Speed oscillator (LSI). */ __HAL_RCC_LSI_DISABLE(); - 80013dc: 4b09 ldr r3, [pc, #36] ; (8001404 ) - 80013de: 2200 movs r2, #0 - 80013e0: 601a str r2, [r3, #0] + 8001458: 4b09 ldr r3, [pc, #36] ; (8001480 ) + 800145a: 2200 movs r2, #0 + 800145c: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80013e2: f7ff fc47 bl 8000c74 - 80013e6: 6138 str r0, [r7, #16] + 800145e: f7ff fc47 bl 8000cf0 + 8001462: 6138 str r0, [r7, #16] /* Wait till LSI is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 80013e8: e00e b.n 8001408 + 8001464: e00e b.n 8001484 { if((HAL_GetTick() - tickstart ) > LSI_TIMEOUT_VALUE) - 80013ea: f7ff fc43 bl 8000c74 - 80013ee: 4602 mov r2, r0 - 80013f0: 693b ldr r3, [r7, #16] - 80013f2: 1ad3 subs r3, r2, r3 - 80013f4: 2b02 cmp r3, #2 - 80013f6: d907 bls.n 8001408 + 8001466: f7ff fc43 bl 8000cf0 + 800146a: 4602 mov r2, r0 + 800146c: 693b ldr r3, [r7, #16] + 800146e: 1ad3 subs r3, r2, r3 + 8001470: 2b02 cmp r3, #2 + 8001472: d907 bls.n 8001484 { return HAL_TIMEOUT; - 80013f8: 2303 movs r3, #3 - 80013fa: e150 b.n 800169e - 80013fc: 40023800 .word 0x40023800 - 8001400: 42470000 .word 0x42470000 - 8001404: 42470e80 .word 0x42470e80 + 8001474: 2303 movs r3, #3 + 8001476: e150 b.n 800171a + 8001478: 40023800 .word 0x40023800 + 800147c: 42470000 .word 0x42470000 + 8001480: 42470e80 .word 0x42470e80 while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSIRDY) != RESET) - 8001408: 4b88 ldr r3, [pc, #544] ; (800162c ) - 800140a: 6f5b ldr r3, [r3, #116] ; 0x74 - 800140c: f003 0302 and.w r3, r3, #2 - 8001410: 2b00 cmp r3, #0 - 8001412: d1ea bne.n 80013ea + 8001484: 4b88 ldr r3, [pc, #544] ; (80016a8 ) + 8001486: 6f5b ldr r3, [r3, #116] ; 0x74 + 8001488: f003 0302 and.w r3, r3, #2 + 800148c: 2b00 cmp r3, #0 + 800148e: d1ea bne.n 8001466 } } } } /*------------------------------ LSE Configuration -------------------------*/ if(((RCC_OscInitStruct->OscillatorType) & RCC_OSCILLATORTYPE_LSE) == RCC_OSCILLATORTYPE_LSE) - 8001414: 687b ldr r3, [r7, #4] - 8001416: 681b ldr r3, [r3, #0] - 8001418: f003 0304 and.w r3, r3, #4 - 800141c: 2b00 cmp r3, #0 - 800141e: f000 8097 beq.w 8001550 + 8001490: 687b ldr r3, [r7, #4] + 8001492: 681b ldr r3, [r3, #0] + 8001494: f003 0304 and.w r3, r3, #4 + 8001498: 2b00 cmp r3, #0 + 800149a: f000 8097 beq.w 80015cc { FlagStatus pwrclkchanged = RESET; - 8001422: 2300 movs r3, #0 - 8001424: 75fb strb r3, [r7, #23] + 800149e: 2300 movs r3, #0 + 80014a0: 75fb strb r3, [r7, #23] /* Check the parameters */ assert_param(IS_RCC_LSE(RCC_OscInitStruct->LSEState)); /* Update LSE configuration in Backup Domain control register */ /* Requires to enable write access to Backup Domain of necessary */ if(__HAL_RCC_PWR_IS_CLK_DISABLED()) - 8001426: 4b81 ldr r3, [pc, #516] ; (800162c ) - 8001428: 6c1b ldr r3, [r3, #64] ; 0x40 - 800142a: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 800142e: 2b00 cmp r3, #0 - 8001430: d10f bne.n 8001452 + 80014a2: 4b81 ldr r3, [pc, #516] ; (80016a8 ) + 80014a4: 6c1b ldr r3, [r3, #64] ; 0x40 + 80014a6: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 80014aa: 2b00 cmp r3, #0 + 80014ac: d10f bne.n 80014ce { __HAL_RCC_PWR_CLK_ENABLE(); - 8001432: 2300 movs r3, #0 - 8001434: 60bb str r3, [r7, #8] - 8001436: 4b7d ldr r3, [pc, #500] ; (800162c ) - 8001438: 6c1b ldr r3, [r3, #64] ; 0x40 - 800143a: 4a7c ldr r2, [pc, #496] ; (800162c ) - 800143c: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 - 8001440: 6413 str r3, [r2, #64] ; 0x40 - 8001442: 4b7a ldr r3, [pc, #488] ; (800162c ) - 8001444: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001446: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 - 800144a: 60bb str r3, [r7, #8] - 800144c: 68bb ldr r3, [r7, #8] + 80014ae: 2300 movs r3, #0 + 80014b0: 60bb str r3, [r7, #8] + 80014b2: 4b7d ldr r3, [pc, #500] ; (80016a8 ) + 80014b4: 6c1b ldr r3, [r3, #64] ; 0x40 + 80014b6: 4a7c ldr r2, [pc, #496] ; (80016a8 ) + 80014b8: f043 5380 orr.w r3, r3, #268435456 ; 0x10000000 + 80014bc: 6413 str r3, [r2, #64] ; 0x40 + 80014be: 4b7a ldr r3, [pc, #488] ; (80016a8 ) + 80014c0: 6c1b ldr r3, [r3, #64] ; 0x40 + 80014c2: f003 5380 and.w r3, r3, #268435456 ; 0x10000000 + 80014c6: 60bb str r3, [r7, #8] + 80014c8: 68bb ldr r3, [r7, #8] pwrclkchanged = SET; - 800144e: 2301 movs r3, #1 - 8001450: 75fb strb r3, [r7, #23] + 80014ca: 2301 movs r3, #1 + 80014cc: 75fb strb r3, [r7, #23] } if(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8001452: 4b77 ldr r3, [pc, #476] ; (8001630 ) - 8001454: 681b ldr r3, [r3, #0] - 8001456: f403 7380 and.w r3, r3, #256 ; 0x100 - 800145a: 2b00 cmp r3, #0 - 800145c: d118 bne.n 8001490 + 80014ce: 4b77 ldr r3, [pc, #476] ; (80016ac ) + 80014d0: 681b ldr r3, [r3, #0] + 80014d2: f403 7380 and.w r3, r3, #256 ; 0x100 + 80014d6: 2b00 cmp r3, #0 + 80014d8: d118 bne.n 800150c { /* Enable write access to Backup domain */ SET_BIT(PWR->CR, PWR_CR_DBP); - 800145e: 4b74 ldr r3, [pc, #464] ; (8001630 ) - 8001460: 681b ldr r3, [r3, #0] - 8001462: 4a73 ldr r2, [pc, #460] ; (8001630 ) - 8001464: f443 7380 orr.w r3, r3, #256 ; 0x100 - 8001468: 6013 str r3, [r2, #0] + 80014da: 4b74 ldr r3, [pc, #464] ; (80016ac ) + 80014dc: 681b ldr r3, [r3, #0] + 80014de: 4a73 ldr r2, [pc, #460] ; (80016ac ) + 80014e0: f443 7380 orr.w r3, r3, #256 ; 0x100 + 80014e4: 6013 str r3, [r2, #0] /* Wait for Backup domain Write protection disable */ tickstart = HAL_GetTick(); - 800146a: f7ff fc03 bl 8000c74 - 800146e: 6138 str r0, [r7, #16] + 80014e6: f7ff fc03 bl 8000cf0 + 80014ea: 6138 str r0, [r7, #16] while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8001470: e008 b.n 8001484 + 80014ec: e008 b.n 8001500 { if((HAL_GetTick() - tickstart) > RCC_DBP_TIMEOUT_VALUE) - 8001472: f7ff fbff bl 8000c74 - 8001476: 4602 mov r2, r0 - 8001478: 693b ldr r3, [r7, #16] - 800147a: 1ad3 subs r3, r2, r3 - 800147c: 2b02 cmp r3, #2 - 800147e: d901 bls.n 8001484 + 80014ee: f7ff fbff bl 8000cf0 + 80014f2: 4602 mov r2, r0 + 80014f4: 693b ldr r3, [r7, #16] + 80014f6: 1ad3 subs r3, r2, r3 + 80014f8: 2b02 cmp r3, #2 + 80014fa: d901 bls.n 8001500 { return HAL_TIMEOUT; - 8001480: 2303 movs r3, #3 - 8001482: e10c b.n 800169e + 80014fc: 2303 movs r3, #3 + 80014fe: e10c b.n 800171a while(HAL_IS_BIT_CLR(PWR->CR, PWR_CR_DBP)) - 8001484: 4b6a ldr r3, [pc, #424] ; (8001630 ) - 8001486: 681b ldr r3, [r3, #0] - 8001488: f403 7380 and.w r3, r3, #256 ; 0x100 - 800148c: 2b00 cmp r3, #0 - 800148e: d0f0 beq.n 8001472 + 8001500: 4b6a ldr r3, [pc, #424] ; (80016ac ) + 8001502: 681b ldr r3, [r3, #0] + 8001504: f403 7380 and.w r3, r3, #256 ; 0x100 + 8001508: 2b00 cmp r3, #0 + 800150a: d0f0 beq.n 80014ee } } } /* Set the new LSE configuration -----------------------------------------*/ __HAL_RCC_LSE_CONFIG(RCC_OscInitStruct->LSEState); - 8001490: 687b ldr r3, [r7, #4] - 8001492: 689b ldr r3, [r3, #8] - 8001494: 2b01 cmp r3, #1 - 8001496: d106 bne.n 80014a6 - 8001498: 4b64 ldr r3, [pc, #400] ; (800162c ) - 800149a: 6f1b ldr r3, [r3, #112] ; 0x70 - 800149c: 4a63 ldr r2, [pc, #396] ; (800162c ) - 800149e: f043 0301 orr.w r3, r3, #1 - 80014a2: 6713 str r3, [r2, #112] ; 0x70 - 80014a4: e01c b.n 80014e0 - 80014a6: 687b ldr r3, [r7, #4] - 80014a8: 689b ldr r3, [r3, #8] - 80014aa: 2b05 cmp r3, #5 - 80014ac: d10c bne.n 80014c8 - 80014ae: 4b5f ldr r3, [pc, #380] ; (800162c ) - 80014b0: 6f1b ldr r3, [r3, #112] ; 0x70 - 80014b2: 4a5e ldr r2, [pc, #376] ; (800162c ) - 80014b4: f043 0304 orr.w r3, r3, #4 - 80014b8: 6713 str r3, [r2, #112] ; 0x70 - 80014ba: 4b5c ldr r3, [pc, #368] ; (800162c ) - 80014bc: 6f1b ldr r3, [r3, #112] ; 0x70 - 80014be: 4a5b ldr r2, [pc, #364] ; (800162c ) - 80014c0: f043 0301 orr.w r3, r3, #1 - 80014c4: 6713 str r3, [r2, #112] ; 0x70 - 80014c6: e00b b.n 80014e0 - 80014c8: 4b58 ldr r3, [pc, #352] ; (800162c ) - 80014ca: 6f1b ldr r3, [r3, #112] ; 0x70 - 80014cc: 4a57 ldr r2, [pc, #348] ; (800162c ) - 80014ce: f023 0301 bic.w r3, r3, #1 - 80014d2: 6713 str r3, [r2, #112] ; 0x70 - 80014d4: 4b55 ldr r3, [pc, #340] ; (800162c ) - 80014d6: 6f1b ldr r3, [r3, #112] ; 0x70 - 80014d8: 4a54 ldr r2, [pc, #336] ; (800162c ) - 80014da: f023 0304 bic.w r3, r3, #4 - 80014de: 6713 str r3, [r2, #112] ; 0x70 + 800150c: 687b ldr r3, [r7, #4] + 800150e: 689b ldr r3, [r3, #8] + 8001510: 2b01 cmp r3, #1 + 8001512: d106 bne.n 8001522 + 8001514: 4b64 ldr r3, [pc, #400] ; (80016a8 ) + 8001516: 6f1b ldr r3, [r3, #112] ; 0x70 + 8001518: 4a63 ldr r2, [pc, #396] ; (80016a8 ) + 800151a: f043 0301 orr.w r3, r3, #1 + 800151e: 6713 str r3, [r2, #112] ; 0x70 + 8001520: e01c b.n 800155c + 8001522: 687b ldr r3, [r7, #4] + 8001524: 689b ldr r3, [r3, #8] + 8001526: 2b05 cmp r3, #5 + 8001528: d10c bne.n 8001544 + 800152a: 4b5f ldr r3, [pc, #380] ; (80016a8 ) + 800152c: 6f1b ldr r3, [r3, #112] ; 0x70 + 800152e: 4a5e ldr r2, [pc, #376] ; (80016a8 ) + 8001530: f043 0304 orr.w r3, r3, #4 + 8001534: 6713 str r3, [r2, #112] ; 0x70 + 8001536: 4b5c ldr r3, [pc, #368] ; (80016a8 ) + 8001538: 6f1b ldr r3, [r3, #112] ; 0x70 + 800153a: 4a5b ldr r2, [pc, #364] ; (80016a8 ) + 800153c: f043 0301 orr.w r3, r3, #1 + 8001540: 6713 str r3, [r2, #112] ; 0x70 + 8001542: e00b b.n 800155c + 8001544: 4b58 ldr r3, [pc, #352] ; (80016a8 ) + 8001546: 6f1b ldr r3, [r3, #112] ; 0x70 + 8001548: 4a57 ldr r2, [pc, #348] ; (80016a8 ) + 800154a: f023 0301 bic.w r3, r3, #1 + 800154e: 6713 str r3, [r2, #112] ; 0x70 + 8001550: 4b55 ldr r3, [pc, #340] ; (80016a8 ) + 8001552: 6f1b ldr r3, [r3, #112] ; 0x70 + 8001554: 4a54 ldr r2, [pc, #336] ; (80016a8 ) + 8001556: f023 0304 bic.w r3, r3, #4 + 800155a: 6713 str r3, [r2, #112] ; 0x70 /* Check the LSE State */ if((RCC_OscInitStruct->LSEState) != RCC_LSE_OFF) - 80014e0: 687b ldr r3, [r7, #4] - 80014e2: 689b ldr r3, [r3, #8] - 80014e4: 2b00 cmp r3, #0 - 80014e6: d015 beq.n 8001514 + 800155c: 687b ldr r3, [r7, #4] + 800155e: 689b ldr r3, [r3, #8] + 8001560: 2b00 cmp r3, #0 + 8001562: d015 beq.n 8001590 { /* Get Start Tick*/ tickstart = HAL_GetTick(); - 80014e8: f7ff fbc4 bl 8000c74 - 80014ec: 6138 str r0, [r7, #16] + 8001564: f7ff fbc4 bl 8000cf0 + 8001568: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 80014ee: e00a b.n 8001506 + 800156a: e00a b.n 8001582 { if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 80014f0: f7ff fbc0 bl 8000c74 - 80014f4: 4602 mov r2, r0 - 80014f6: 693b ldr r3, [r7, #16] - 80014f8: 1ad3 subs r3, r2, r3 - 80014fa: f241 3288 movw r2, #5000 ; 0x1388 - 80014fe: 4293 cmp r3, r2 - 8001500: d901 bls.n 8001506 + 800156c: f7ff fbc0 bl 8000cf0 + 8001570: 4602 mov r2, r0 + 8001572: 693b ldr r3, [r7, #16] + 8001574: 1ad3 subs r3, r2, r3 + 8001576: f241 3288 movw r2, #5000 ; 0x1388 + 800157a: 4293 cmp r3, r2 + 800157c: d901 bls.n 8001582 { return HAL_TIMEOUT; - 8001502: 2303 movs r3, #3 - 8001504: e0cb b.n 800169e + 800157e: 2303 movs r3, #3 + 8001580: e0cb b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) == RESET) - 8001506: 4b49 ldr r3, [pc, #292] ; (800162c ) - 8001508: 6f1b ldr r3, [r3, #112] ; 0x70 - 800150a: f003 0302 and.w r3, r3, #2 - 800150e: 2b00 cmp r3, #0 - 8001510: d0ee beq.n 80014f0 - 8001512: e014 b.n 800153e + 8001582: 4b49 ldr r3, [pc, #292] ; (80016a8 ) + 8001584: 6f1b ldr r3, [r3, #112] ; 0x70 + 8001586: f003 0302 and.w r3, r3, #2 + 800158a: 2b00 cmp r3, #0 + 800158c: d0ee beq.n 800156c + 800158e: e014 b.n 80015ba } } else { /* Get Start Tick */ tickstart = HAL_GetTick(); - 8001514: f7ff fbae bl 8000c74 - 8001518: 6138 str r0, [r7, #16] + 8001590: f7ff fbae bl 8000cf0 + 8001594: 6138 str r0, [r7, #16] /* Wait till LSE is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 800151a: e00a b.n 8001532 + 8001596: e00a b.n 80015ae { if((HAL_GetTick() - tickstart ) > RCC_LSE_TIMEOUT_VALUE) - 800151c: f7ff fbaa bl 8000c74 - 8001520: 4602 mov r2, r0 - 8001522: 693b ldr r3, [r7, #16] - 8001524: 1ad3 subs r3, r2, r3 - 8001526: f241 3288 movw r2, #5000 ; 0x1388 - 800152a: 4293 cmp r3, r2 - 800152c: d901 bls.n 8001532 + 8001598: f7ff fbaa bl 8000cf0 + 800159c: 4602 mov r2, r0 + 800159e: 693b ldr r3, [r7, #16] + 80015a0: 1ad3 subs r3, r2, r3 + 80015a2: f241 3288 movw r2, #5000 ; 0x1388 + 80015a6: 4293 cmp r3, r2 + 80015a8: d901 bls.n 80015ae { return HAL_TIMEOUT; - 800152e: 2303 movs r3, #3 - 8001530: e0b5 b.n 800169e + 80015aa: 2303 movs r3, #3 + 80015ac: e0b5 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_LSERDY) != RESET) - 8001532: 4b3e ldr r3, [pc, #248] ; (800162c ) - 8001534: 6f1b ldr r3, [r3, #112] ; 0x70 - 8001536: f003 0302 and.w r3, r3, #2 - 800153a: 2b00 cmp r3, #0 - 800153c: d1ee bne.n 800151c + 80015ae: 4b3e ldr r3, [pc, #248] ; (80016a8 ) + 80015b0: 6f1b ldr r3, [r3, #112] ; 0x70 + 80015b2: f003 0302 and.w r3, r3, #2 + 80015b6: 2b00 cmp r3, #0 + 80015b8: d1ee bne.n 8001598 } } } /* Restore clock configuration if changed */ if(pwrclkchanged == SET) - 800153e: 7dfb ldrb r3, [r7, #23] - 8001540: 2b01 cmp r3, #1 - 8001542: d105 bne.n 8001550 + 80015ba: 7dfb ldrb r3, [r7, #23] + 80015bc: 2b01 cmp r3, #1 + 80015be: d105 bne.n 80015cc { __HAL_RCC_PWR_CLK_DISABLE(); - 8001544: 4b39 ldr r3, [pc, #228] ; (800162c ) - 8001546: 6c1b ldr r3, [r3, #64] ; 0x40 - 8001548: 4a38 ldr r2, [pc, #224] ; (800162c ) - 800154a: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 - 800154e: 6413 str r3, [r2, #64] ; 0x40 + 80015c0: 4b39 ldr r3, [pc, #228] ; (80016a8 ) + 80015c2: 6c1b ldr r3, [r3, #64] ; 0x40 + 80015c4: 4a38 ldr r2, [pc, #224] ; (80016a8 ) + 80015c6: f023 5380 bic.w r3, r3, #268435456 ; 0x10000000 + 80015ca: 6413 str r3, [r2, #64] ; 0x40 } } /*-------------------------------- PLL Configuration -----------------------*/ /* Check the parameters */ assert_param(IS_RCC_PLL(RCC_OscInitStruct->PLL.PLLState)); if ((RCC_OscInitStruct->PLL.PLLState) != RCC_PLL_NONE) - 8001550: 687b ldr r3, [r7, #4] - 8001552: 699b ldr r3, [r3, #24] - 8001554: 2b00 cmp r3, #0 - 8001556: f000 80a1 beq.w 800169c + 80015cc: 687b ldr r3, [r7, #4] + 80015ce: 699b ldr r3, [r3, #24] + 80015d0: 2b00 cmp r3, #0 + 80015d2: f000 80a1 beq.w 8001718 { /* Check if the PLL is used as system clock or not */ if(__HAL_RCC_GET_SYSCLK_SOURCE() != RCC_CFGR_SWS_PLL) - 800155a: 4b34 ldr r3, [pc, #208] ; (800162c ) - 800155c: 689b ldr r3, [r3, #8] - 800155e: f003 030c and.w r3, r3, #12 - 8001562: 2b08 cmp r3, #8 - 8001564: d05c beq.n 8001620 + 80015d6: 4b34 ldr r3, [pc, #208] ; (80016a8 ) + 80015d8: 689b ldr r3, [r3, #8] + 80015da: f003 030c and.w r3, r3, #12 + 80015de: 2b08 cmp r3, #8 + 80015e0: d05c beq.n 800169c { if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_ON) - 8001566: 687b ldr r3, [r7, #4] - 8001568: 699b ldr r3, [r3, #24] - 800156a: 2b02 cmp r3, #2 - 800156c: d141 bne.n 80015f2 + 80015e2: 687b ldr r3, [r7, #4] + 80015e4: 699b ldr r3, [r3, #24] + 80015e6: 2b02 cmp r3, #2 + 80015e8: d141 bne.n 800166e assert_param(IS_RCC_PLLN_VALUE(RCC_OscInitStruct->PLL.PLLN)); assert_param(IS_RCC_PLLP_VALUE(RCC_OscInitStruct->PLL.PLLP)); assert_param(IS_RCC_PLLQ_VALUE(RCC_OscInitStruct->PLL.PLLQ)); /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 800156e: 4b31 ldr r3, [pc, #196] ; (8001634 ) - 8001570: 2200 movs r2, #0 - 8001572: 601a str r2, [r3, #0] + 80015ea: 4b31 ldr r3, [pc, #196] ; (80016b0 ) + 80015ec: 2200 movs r2, #0 + 80015ee: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 8001574: f7ff fb7e bl 8000c74 - 8001578: 6138 str r0, [r7, #16] + 80015f0: f7ff fb7e bl 8000cf0 + 80015f4: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800157a: e008 b.n 800158e + 80015f6: e008 b.n 800160a { if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 800157c: f7ff fb7a bl 8000c74 - 8001580: 4602 mov r2, r0 - 8001582: 693b ldr r3, [r7, #16] - 8001584: 1ad3 subs r3, r2, r3 - 8001586: 2b02 cmp r3, #2 - 8001588: d901 bls.n 800158e + 80015f8: f7ff fb7a bl 8000cf0 + 80015fc: 4602 mov r2, r0 + 80015fe: 693b ldr r3, [r7, #16] + 8001600: 1ad3 subs r3, r2, r3 + 8001602: 2b02 cmp r3, #2 + 8001604: d901 bls.n 800160a { return HAL_TIMEOUT; - 800158a: 2303 movs r3, #3 - 800158c: e087 b.n 800169e + 8001606: 2303 movs r3, #3 + 8001608: e087 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 800158e: 4b27 ldr r3, [pc, #156] ; (800162c ) - 8001590: 681b ldr r3, [r3, #0] - 8001592: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8001596: 2b00 cmp r3, #0 - 8001598: d1f0 bne.n 800157c + 800160a: 4b27 ldr r3, [pc, #156] ; (80016a8 ) + 800160c: 681b ldr r3, [r3, #0] + 800160e: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8001612: 2b00 cmp r3, #0 + 8001614: d1f0 bne.n 80015f8 } } /* Configure the main PLL clock source, multiplication and division factors. */ WRITE_REG(RCC->PLLCFGR, (RCC_OscInitStruct->PLL.PLLSource | \ - 800159a: 687b ldr r3, [r7, #4] - 800159c: 69da ldr r2, [r3, #28] - 800159e: 687b ldr r3, [r7, #4] - 80015a0: 6a1b ldr r3, [r3, #32] - 80015a2: 431a orrs r2, r3 - 80015a4: 687b ldr r3, [r7, #4] - 80015a6: 6a5b ldr r3, [r3, #36] ; 0x24 - 80015a8: 019b lsls r3, r3, #6 - 80015aa: 431a orrs r2, r3 - 80015ac: 687b ldr r3, [r7, #4] - 80015ae: 6a9b ldr r3, [r3, #40] ; 0x28 - 80015b0: 085b lsrs r3, r3, #1 - 80015b2: 3b01 subs r3, #1 - 80015b4: 041b lsls r3, r3, #16 - 80015b6: 431a orrs r2, r3 - 80015b8: 687b ldr r3, [r7, #4] - 80015ba: 6adb ldr r3, [r3, #44] ; 0x2c - 80015bc: 061b lsls r3, r3, #24 - 80015be: 491b ldr r1, [pc, #108] ; (800162c ) - 80015c0: 4313 orrs r3, r2 - 80015c2: 604b str r3, [r1, #4] + 8001616: 687b ldr r3, [r7, #4] + 8001618: 69da ldr r2, [r3, #28] + 800161a: 687b ldr r3, [r7, #4] + 800161c: 6a1b ldr r3, [r3, #32] + 800161e: 431a orrs r2, r3 + 8001620: 687b ldr r3, [r7, #4] + 8001622: 6a5b ldr r3, [r3, #36] ; 0x24 + 8001624: 019b lsls r3, r3, #6 + 8001626: 431a orrs r2, r3 + 8001628: 687b ldr r3, [r7, #4] + 800162a: 6a9b ldr r3, [r3, #40] ; 0x28 + 800162c: 085b lsrs r3, r3, #1 + 800162e: 3b01 subs r3, #1 + 8001630: 041b lsls r3, r3, #16 + 8001632: 431a orrs r2, r3 + 8001634: 687b ldr r3, [r7, #4] + 8001636: 6adb ldr r3, [r3, #44] ; 0x2c + 8001638: 061b lsls r3, r3, #24 + 800163a: 491b ldr r1, [pc, #108] ; (80016a8 ) + 800163c: 4313 orrs r3, r2 + 800163e: 604b str r3, [r1, #4] RCC_OscInitStruct->PLL.PLLM | \ (RCC_OscInitStruct->PLL.PLLN << RCC_PLLCFGR_PLLN_Pos) | \ (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U) << RCC_PLLCFGR_PLLP_Pos) | \ (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))); /* Enable the main PLL. */ __HAL_RCC_PLL_ENABLE(); - 80015c4: 4b1b ldr r3, [pc, #108] ; (8001634 ) - 80015c6: 2201 movs r2, #1 - 80015c8: 601a str r2, [r3, #0] + 8001640: 4b1b ldr r3, [pc, #108] ; (80016b0 ) + 8001642: 2201 movs r2, #1 + 8001644: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80015ca: f7ff fb53 bl 8000c74 - 80015ce: 6138 str r0, [r7, #16] + 8001646: f7ff fb53 bl 8000cf0 + 800164a: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80015d0: e008 b.n 80015e4 + 800164c: e008 b.n 8001660 { if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 80015d2: f7ff fb4f bl 8000c74 - 80015d6: 4602 mov r2, r0 - 80015d8: 693b ldr r3, [r7, #16] - 80015da: 1ad3 subs r3, r2, r3 - 80015dc: 2b02 cmp r3, #2 - 80015de: d901 bls.n 80015e4 + 800164e: f7ff fb4f bl 8000cf0 + 8001652: 4602 mov r2, r0 + 8001654: 693b ldr r3, [r7, #16] + 8001656: 1ad3 subs r3, r2, r3 + 8001658: 2b02 cmp r3, #2 + 800165a: d901 bls.n 8001660 { return HAL_TIMEOUT; - 80015e0: 2303 movs r3, #3 - 80015e2: e05c b.n 800169e + 800165c: 2303 movs r3, #3 + 800165e: e05c b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 80015e4: 4b11 ldr r3, [pc, #68] ; (800162c ) - 80015e6: 681b ldr r3, [r3, #0] - 80015e8: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 80015ec: 2b00 cmp r3, #0 - 80015ee: d0f0 beq.n 80015d2 - 80015f0: e054 b.n 800169c + 8001660: 4b11 ldr r3, [pc, #68] ; (80016a8 ) + 8001662: 681b ldr r3, [r3, #0] + 8001664: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8001668: 2b00 cmp r3, #0 + 800166a: d0f0 beq.n 800164e + 800166c: e054 b.n 8001718 } } else { /* Disable the main PLL. */ __HAL_RCC_PLL_DISABLE(); - 80015f2: 4b10 ldr r3, [pc, #64] ; (8001634 ) - 80015f4: 2200 movs r2, #0 - 80015f6: 601a str r2, [r3, #0] + 800166e: 4b10 ldr r3, [pc, #64] ; (80016b0 ) + 8001670: 2200 movs r2, #0 + 8001672: 601a str r2, [r3, #0] /* Get Start Tick */ tickstart = HAL_GetTick(); - 80015f8: f7ff fb3c bl 8000c74 - 80015fc: 6138 str r0, [r7, #16] + 8001674: f7ff fb3c bl 8000cf0 + 8001678: 6138 str r0, [r7, #16] /* Wait till PLL is ready */ while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 80015fe: e008 b.n 8001612 + 800167a: e008 b.n 800168e { if((HAL_GetTick() - tickstart ) > PLL_TIMEOUT_VALUE) - 8001600: f7ff fb38 bl 8000c74 - 8001604: 4602 mov r2, r0 - 8001606: 693b ldr r3, [r7, #16] - 8001608: 1ad3 subs r3, r2, r3 - 800160a: 2b02 cmp r3, #2 - 800160c: d901 bls.n 8001612 + 800167c: f7ff fb38 bl 8000cf0 + 8001680: 4602 mov r2, r0 + 8001682: 693b ldr r3, [r7, #16] + 8001684: 1ad3 subs r3, r2, r3 + 8001686: 2b02 cmp r3, #2 + 8001688: d901 bls.n 800168e { return HAL_TIMEOUT; - 800160e: 2303 movs r3, #3 - 8001610: e045 b.n 800169e + 800168a: 2303 movs r3, #3 + 800168c: e045 b.n 800171a while(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) != RESET) - 8001612: 4b06 ldr r3, [pc, #24] ; (800162c ) - 8001614: 681b ldr r3, [r3, #0] - 8001616: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 800161a: 2b00 cmp r3, #0 - 800161c: d1f0 bne.n 8001600 - 800161e: e03d b.n 800169c + 800168e: 4b06 ldr r3, [pc, #24] ; (80016a8 ) + 8001690: 681b ldr r3, [r3, #0] + 8001692: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 8001696: 2b00 cmp r3, #0 + 8001698: d1f0 bne.n 800167c + 800169a: e03d b.n 8001718 } } else { /* Check if there is a request to disable the PLL used as System clock source */ if((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) - 8001620: 687b ldr r3, [r7, #4] - 8001622: 699b ldr r3, [r3, #24] - 8001624: 2b01 cmp r3, #1 - 8001626: d107 bne.n 8001638 + 800169c: 687b ldr r3, [r7, #4] + 800169e: 699b ldr r3, [r3, #24] + 80016a0: 2b01 cmp r3, #1 + 80016a2: d107 bne.n 80016b4 { return HAL_ERROR; - 8001628: 2301 movs r3, #1 - 800162a: e038 b.n 800169e - 800162c: 40023800 .word 0x40023800 - 8001630: 40007000 .word 0x40007000 - 8001634: 42470060 .word 0x42470060 + 80016a4: 2301 movs r3, #1 + 80016a6: e038 b.n 800171a + 80016a8: 40023800 .word 0x40023800 + 80016ac: 40007000 .word 0x40007000 + 80016b0: 42470060 .word 0x42470060 } else { /* Do not return HAL_ERROR if request repeats the current configuration */ pll_config = RCC->PLLCFGR; - 8001638: 4b1b ldr r3, [pc, #108] ; (80016a8 ) - 800163a: 685b ldr r3, [r3, #4] - 800163c: 60fb str r3, [r7, #12] + 80016b4: 4b1b ldr r3, [pc, #108] ; (8001724 ) + 80016b6: 685b ldr r3, [r3, #4] + 80016b8: 60fb str r3, [r7, #12] (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos)) || (READ_BIT(pll_config, RCC_PLLCFGR_PLLR) != (RCC_OscInitStruct->PLL.PLLR << RCC_PLLCFGR_PLLR_Pos))) #else if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 800163e: 687b ldr r3, [r7, #4] - 8001640: 699b ldr r3, [r3, #24] - 8001642: 2b01 cmp r3, #1 - 8001644: d028 beq.n 8001698 + 80016ba: 687b ldr r3, [r7, #4] + 80016bc: 699b ldr r3, [r3, #24] + 80016be: 2b01 cmp r3, #1 + 80016c0: d028 beq.n 8001714 (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 8001646: 68fb ldr r3, [r7, #12] - 8001648: f403 0280 and.w r2, r3, #4194304 ; 0x400000 - 800164c: 687b ldr r3, [r7, #4] - 800164e: 69db ldr r3, [r3, #28] + 80016c2: 68fb ldr r3, [r7, #12] + 80016c4: f403 0280 and.w r2, r3, #4194304 ; 0x400000 + 80016c8: 687b ldr r3, [r7, #4] + 80016ca: 69db ldr r3, [r3, #28] if (((RCC_OscInitStruct->PLL.PLLState) == RCC_PLL_OFF) || - 8001650: 429a cmp r2, r3 - 8001652: d121 bne.n 8001698 + 80016cc: 429a cmp r2, r3 + 80016ce: d121 bne.n 8001714 (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 8001654: 68fb ldr r3, [r7, #12] - 8001656: f003 023f and.w r2, r3, #63 ; 0x3f - 800165a: 687b ldr r3, [r7, #4] - 800165c: 6a1b ldr r3, [r3, #32] + 80016d0: 68fb ldr r3, [r7, #12] + 80016d2: f003 023f and.w r2, r3, #63 ; 0x3f + 80016d6: 687b ldr r3, [r7, #4] + 80016d8: 6a1b ldr r3, [r3, #32] (READ_BIT(pll_config, RCC_PLLCFGR_PLLSRC) != RCC_OscInitStruct->PLL.PLLSource) || - 800165e: 429a cmp r2, r3 - 8001660: d11a bne.n 8001698 + 80016da: 429a cmp r2, r3 + 80016dc: d11a bne.n 8001714 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 8001662: 68fa ldr r2, [r7, #12] - 8001664: f647 73c0 movw r3, #32704 ; 0x7fc0 - 8001668: 4013 ands r3, r2 - 800166a: 687a ldr r2, [r7, #4] - 800166c: 6a52 ldr r2, [r2, #36] ; 0x24 - 800166e: 0192 lsls r2, r2, #6 + 80016de: 68fa ldr r2, [r7, #12] + 80016e0: f647 73c0 movw r3, #32704 ; 0x7fc0 + 80016e4: 4013 ands r3, r2 + 80016e6: 687a ldr r2, [r7, #4] + 80016e8: 6a52 ldr r2, [r2, #36] ; 0x24 + 80016ea: 0192 lsls r2, r2, #6 (READ_BIT(pll_config, RCC_PLLCFGR_PLLM) != (RCC_OscInitStruct->PLL.PLLM) << RCC_PLLCFGR_PLLM_Pos) || - 8001670: 4293 cmp r3, r2 - 8001672: d111 bne.n 8001698 + 80016ec: 4293 cmp r3, r2 + 80016ee: d111 bne.n 8001714 (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 8001674: 68fb ldr r3, [r7, #12] - 8001676: f403 3240 and.w r2, r3, #196608 ; 0x30000 - 800167a: 687b ldr r3, [r7, #4] - 800167c: 6a9b ldr r3, [r3, #40] ; 0x28 - 800167e: 085b lsrs r3, r3, #1 - 8001680: 3b01 subs r3, #1 - 8001682: 041b lsls r3, r3, #16 + 80016f0: 68fb ldr r3, [r7, #12] + 80016f2: f403 3240 and.w r2, r3, #196608 ; 0x30000 + 80016f6: 687b ldr r3, [r7, #4] + 80016f8: 6a9b ldr r3, [r3, #40] ; 0x28 + 80016fa: 085b lsrs r3, r3, #1 + 80016fc: 3b01 subs r3, #1 + 80016fe: 041b lsls r3, r3, #16 (READ_BIT(pll_config, RCC_PLLCFGR_PLLN) != (RCC_OscInitStruct->PLL.PLLN) << RCC_PLLCFGR_PLLN_Pos) || - 8001684: 429a cmp r2, r3 - 8001686: d107 bne.n 8001698 + 8001700: 429a cmp r2, r3 + 8001702: d107 bne.n 8001714 (READ_BIT(pll_config, RCC_PLLCFGR_PLLQ) != (RCC_OscInitStruct->PLL.PLLQ << RCC_PLLCFGR_PLLQ_Pos))) - 8001688: 68fb ldr r3, [r7, #12] - 800168a: f003 6270 and.w r2, r3, #251658240 ; 0xf000000 - 800168e: 687b ldr r3, [r7, #4] - 8001690: 6adb ldr r3, [r3, #44] ; 0x2c - 8001692: 061b lsls r3, r3, #24 + 8001704: 68fb ldr r3, [r7, #12] + 8001706: f003 6270 and.w r2, r3, #251658240 ; 0xf000000 + 800170a: 687b ldr r3, [r7, #4] + 800170c: 6adb ldr r3, [r3, #44] ; 0x2c + 800170e: 061b lsls r3, r3, #24 (READ_BIT(pll_config, RCC_PLLCFGR_PLLP) != (((RCC_OscInitStruct->PLL.PLLP >> 1U) - 1U)) << RCC_PLLCFGR_PLLP_Pos) || - 8001694: 429a cmp r2, r3 - 8001696: d001 beq.n 800169c + 8001710: 429a cmp r2, r3 + 8001712: d001 beq.n 8001718 #endif { return HAL_ERROR; - 8001698: 2301 movs r3, #1 - 800169a: e000 b.n 800169e + 8001714: 2301 movs r3, #1 + 8001716: e000 b.n 800171a } } } } return HAL_OK; - 800169c: 2300 movs r3, #0 + 8001718: 2300 movs r3, #0 } - 800169e: 4618 mov r0, r3 - 80016a0: 3718 adds r7, #24 - 80016a2: 46bd mov sp, r7 - 80016a4: bd80 pop {r7, pc} - 80016a6: bf00 nop - 80016a8: 40023800 .word 0x40023800 + 800171a: 4618 mov r0, r3 + 800171c: 3718 adds r7, #24 + 800171e: 46bd mov sp, r7 + 8001720: bd80 pop {r7, pc} + 8001722: bf00 nop + 8001724: 40023800 .word 0x40023800 -080016ac : +08001728 : * HPRE[3:0] bits to ensure that HCLK not exceed the maximum allowed frequency * (for more details refer to section above "Initialization/de-initialization functions") * @retval None */ HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t FLatency) { - 80016ac: b580 push {r7, lr} - 80016ae: b084 sub sp, #16 - 80016b0: af00 add r7, sp, #0 - 80016b2: 6078 str r0, [r7, #4] - 80016b4: 6039 str r1, [r7, #0] + 8001728: b580 push {r7, lr} + 800172a: b084 sub sp, #16 + 800172c: af00 add r7, sp, #0 + 800172e: 6078 str r0, [r7, #4] + 8001730: 6039 str r1, [r7, #0] uint32_t tickstart; /* Check Null pointer */ if(RCC_ClkInitStruct == NULL) - 80016b6: 687b ldr r3, [r7, #4] - 80016b8: 2b00 cmp r3, #0 - 80016ba: d101 bne.n 80016c0 + 8001732: 687b ldr r3, [r7, #4] + 8001734: 2b00 cmp r3, #0 + 8001736: d101 bne.n 800173c { return HAL_ERROR; - 80016bc: 2301 movs r3, #1 - 80016be: e0cc b.n 800185a + 8001738: 2301 movs r3, #1 + 800173a: e0cc b.n 80018d6 /* To correctly read data from FLASH memory, the number of wait states (LATENCY) must be correctly programmed according to the frequency of the CPU clock (HCLK) and the supply voltage of the device. */ /* Increasing the number of wait states because of higher CPU frequency */ if(FLatency > __HAL_FLASH_GET_LATENCY()) - 80016c0: 4b68 ldr r3, [pc, #416] ; (8001864 ) - 80016c2: 681b ldr r3, [r3, #0] - 80016c4: f003 0307 and.w r3, r3, #7 - 80016c8: 683a ldr r2, [r7, #0] - 80016ca: 429a cmp r2, r3 - 80016cc: d90c bls.n 80016e8 + 800173c: 4b68 ldr r3, [pc, #416] ; (80018e0 ) + 800173e: 681b ldr r3, [r3, #0] + 8001740: f003 0307 and.w r3, r3, #7 + 8001744: 683a ldr r2, [r7, #0] + 8001746: 429a cmp r2, r3 + 8001748: d90c bls.n 8001764 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 80016ce: 4b65 ldr r3, [pc, #404] ; (8001864 ) - 80016d0: 683a ldr r2, [r7, #0] - 80016d2: b2d2 uxtb r2, r2 - 80016d4: 701a strb r2, [r3, #0] + 800174a: 4b65 ldr r3, [pc, #404] ; (80018e0 ) + 800174c: 683a ldr r2, [r7, #0] + 800174e: b2d2 uxtb r2, r2 + 8001750: 701a strb r2, [r3, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if(__HAL_FLASH_GET_LATENCY() != FLatency) - 80016d6: 4b63 ldr r3, [pc, #396] ; (8001864 ) - 80016d8: 681b ldr r3, [r3, #0] - 80016da: f003 0307 and.w r3, r3, #7 - 80016de: 683a ldr r2, [r7, #0] - 80016e0: 429a cmp r2, r3 - 80016e2: d001 beq.n 80016e8 + 8001752: 4b63 ldr r3, [pc, #396] ; (80018e0 ) + 8001754: 681b ldr r3, [r3, #0] + 8001756: f003 0307 and.w r3, r3, #7 + 800175a: 683a ldr r2, [r7, #0] + 800175c: 429a cmp r2, r3 + 800175e: d001 beq.n 8001764 { return HAL_ERROR; - 80016e4: 2301 movs r3, #1 - 80016e6: e0b8 b.n 800185a + 8001760: 2301 movs r3, #1 + 8001762: e0b8 b.n 80018d6 } } /*-------------------------- HCLK Configuration --------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_HCLK) == RCC_CLOCKTYPE_HCLK) - 80016e8: 687b ldr r3, [r7, #4] - 80016ea: 681b ldr r3, [r3, #0] - 80016ec: f003 0302 and.w r3, r3, #2 - 80016f0: 2b00 cmp r3, #0 - 80016f2: d020 beq.n 8001736 + 8001764: 687b ldr r3, [r7, #4] + 8001766: 681b ldr r3, [r3, #0] + 8001768: f003 0302 and.w r3, r3, #2 + 800176c: 2b00 cmp r3, #0 + 800176e: d020 beq.n 80017b2 { /* Set the highest APBx dividers in order to ensure that we do not go through a non-spec phase whatever we decrease or increase HCLK. */ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80016f4: 687b ldr r3, [r7, #4] - 80016f6: 681b ldr r3, [r3, #0] - 80016f8: f003 0304 and.w r3, r3, #4 - 80016fc: 2b00 cmp r3, #0 - 80016fe: d005 beq.n 800170c + 8001770: 687b ldr r3, [r7, #4] + 8001772: 681b ldr r3, [r3, #0] + 8001774: f003 0304 and.w r3, r3, #4 + 8001778: 2b00 cmp r3, #0 + 800177a: d005 beq.n 8001788 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_HCLK_DIV16); - 8001700: 4b59 ldr r3, [pc, #356] ; (8001868 ) - 8001702: 689b ldr r3, [r3, #8] - 8001704: 4a58 ldr r2, [pc, #352] ; (8001868 ) - 8001706: f443 53e0 orr.w r3, r3, #7168 ; 0x1c00 - 800170a: 6093 str r3, [r2, #8] + 800177c: 4b59 ldr r3, [pc, #356] ; (80018e4 ) + 800177e: 689b ldr r3, [r3, #8] + 8001780: 4a58 ldr r2, [pc, #352] ; (80018e4 ) + 8001782: f443 53e0 orr.w r3, r3, #7168 ; 0x1c00 + 8001786: 6093 str r3, [r2, #8] } if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 800170c: 687b ldr r3, [r7, #4] - 800170e: 681b ldr r3, [r3, #0] - 8001710: f003 0308 and.w r3, r3, #8 - 8001714: 2b00 cmp r3, #0 - 8001716: d005 beq.n 8001724 + 8001788: 687b ldr r3, [r7, #4] + 800178a: 681b ldr r3, [r3, #0] + 800178c: f003 0308 and.w r3, r3, #8 + 8001790: 2b00 cmp r3, #0 + 8001792: d005 beq.n 80017a0 { MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, (RCC_HCLK_DIV16 << 3)); - 8001718: 4b53 ldr r3, [pc, #332] ; (8001868 ) - 800171a: 689b ldr r3, [r3, #8] - 800171c: 4a52 ldr r2, [pc, #328] ; (8001868 ) - 800171e: f443 4360 orr.w r3, r3, #57344 ; 0xe000 - 8001722: 6093 str r3, [r2, #8] + 8001794: 4b53 ldr r3, [pc, #332] ; (80018e4 ) + 8001796: 689b ldr r3, [r3, #8] + 8001798: 4a52 ldr r2, [pc, #328] ; (80018e4 ) + 800179a: f443 4360 orr.w r3, r3, #57344 ; 0xe000 + 800179e: 6093 str r3, [r2, #8] } assert_param(IS_RCC_HCLK(RCC_ClkInitStruct->AHBCLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_HPRE, RCC_ClkInitStruct->AHBCLKDivider); - 8001724: 4b50 ldr r3, [pc, #320] ; (8001868 ) - 8001726: 689b ldr r3, [r3, #8] - 8001728: f023 02f0 bic.w r2, r3, #240 ; 0xf0 - 800172c: 687b ldr r3, [r7, #4] - 800172e: 689b ldr r3, [r3, #8] - 8001730: 494d ldr r1, [pc, #308] ; (8001868 ) - 8001732: 4313 orrs r3, r2 - 8001734: 608b str r3, [r1, #8] + 80017a0: 4b50 ldr r3, [pc, #320] ; (80018e4 ) + 80017a2: 689b ldr r3, [r3, #8] + 80017a4: f023 02f0 bic.w r2, r3, #240 ; 0xf0 + 80017a8: 687b ldr r3, [r7, #4] + 80017aa: 689b ldr r3, [r3, #8] + 80017ac: 494d ldr r1, [pc, #308] ; (80018e4 ) + 80017ae: 4313 orrs r3, r2 + 80017b0: 608b str r3, [r1, #8] } /*------------------------- SYSCLK Configuration ---------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_SYSCLK) == RCC_CLOCKTYPE_SYSCLK) - 8001736: 687b ldr r3, [r7, #4] - 8001738: 681b ldr r3, [r3, #0] - 800173a: f003 0301 and.w r3, r3, #1 - 800173e: 2b00 cmp r3, #0 - 8001740: d044 beq.n 80017cc + 80017b2: 687b ldr r3, [r7, #4] + 80017b4: 681b ldr r3, [r3, #0] + 80017b6: f003 0301 and.w r3, r3, #1 + 80017ba: 2b00 cmp r3, #0 + 80017bc: d044 beq.n 8001848 { assert_param(IS_RCC_SYSCLKSOURCE(RCC_ClkInitStruct->SYSCLKSource)); /* HSE is selected as System Clock Source */ if(RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_HSE) - 8001742: 687b ldr r3, [r7, #4] - 8001744: 685b ldr r3, [r3, #4] - 8001746: 2b01 cmp r3, #1 - 8001748: d107 bne.n 800175a + 80017be: 687b ldr r3, [r7, #4] + 80017c0: 685b ldr r3, [r3, #4] + 80017c2: 2b01 cmp r3, #1 + 80017c4: d107 bne.n 80017d6 { /* Check the HSE ready flag */ if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSERDY) == RESET) - 800174a: 4b47 ldr r3, [pc, #284] ; (8001868 ) - 800174c: 681b ldr r3, [r3, #0] - 800174e: f403 3300 and.w r3, r3, #131072 ; 0x20000 - 8001752: 2b00 cmp r3, #0 - 8001754: d119 bne.n 800178a + 80017c6: 4b47 ldr r3, [pc, #284] ; (80018e4 ) + 80017c8: 681b ldr r3, [r3, #0] + 80017ca: f403 3300 and.w r3, r3, #131072 ; 0x20000 + 80017ce: 2b00 cmp r3, #0 + 80017d0: d119 bne.n 8001806 { return HAL_ERROR; - 8001756: 2301 movs r3, #1 - 8001758: e07f b.n 800185a + 80017d2: 2301 movs r3, #1 + 80017d4: e07f b.n 80018d6 } } /* PLL is selected as System Clock Source */ else if((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 800175a: 687b ldr r3, [r7, #4] - 800175c: 685b ldr r3, [r3, #4] - 800175e: 2b02 cmp r3, #2 - 8001760: d003 beq.n 800176a + 80017d6: 687b ldr r3, [r7, #4] + 80017d8: 685b ldr r3, [r3, #4] + 80017da: 2b02 cmp r3, #2 + 80017dc: d003 beq.n 80017e6 (RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLRCLK)) - 8001762: 687b ldr r3, [r7, #4] - 8001764: 685b ldr r3, [r3, #4] + 80017de: 687b ldr r3, [r7, #4] + 80017e0: 685b ldr r3, [r3, #4] else if((RCC_ClkInitStruct->SYSCLKSource == RCC_SYSCLKSOURCE_PLLCLK) || - 8001766: 2b03 cmp r3, #3 - 8001768: d107 bne.n 800177a + 80017e2: 2b03 cmp r3, #3 + 80017e4: d107 bne.n 80017f6 { /* Check the PLL ready flag */ if(__HAL_RCC_GET_FLAG(RCC_FLAG_PLLRDY) == RESET) - 800176a: 4b3f ldr r3, [pc, #252] ; (8001868 ) - 800176c: 681b ldr r3, [r3, #0] - 800176e: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 - 8001772: 2b00 cmp r3, #0 - 8001774: d109 bne.n 800178a + 80017e6: 4b3f ldr r3, [pc, #252] ; (80018e4 ) + 80017e8: 681b ldr r3, [r3, #0] + 80017ea: f003 7300 and.w r3, r3, #33554432 ; 0x2000000 + 80017ee: 2b00 cmp r3, #0 + 80017f0: d109 bne.n 8001806 { return HAL_ERROR; - 8001776: 2301 movs r3, #1 - 8001778: e06f b.n 800185a + 80017f2: 2301 movs r3, #1 + 80017f4: e06f b.n 80018d6 } /* HSI is selected as System Clock Source */ else { /* Check the HSI ready flag */ if(__HAL_RCC_GET_FLAG(RCC_FLAG_HSIRDY) == RESET) - 800177a: 4b3b ldr r3, [pc, #236] ; (8001868 ) - 800177c: 681b ldr r3, [r3, #0] - 800177e: f003 0302 and.w r3, r3, #2 - 8001782: 2b00 cmp r3, #0 - 8001784: d101 bne.n 800178a + 80017f6: 4b3b ldr r3, [pc, #236] ; (80018e4 ) + 80017f8: 681b ldr r3, [r3, #0] + 80017fa: f003 0302 and.w r3, r3, #2 + 80017fe: 2b00 cmp r3, #0 + 8001800: d101 bne.n 8001806 { return HAL_ERROR; - 8001786: 2301 movs r3, #1 - 8001788: e067 b.n 800185a + 8001802: 2301 movs r3, #1 + 8001804: e067 b.n 80018d6 } } __HAL_RCC_SYSCLK_CONFIG(RCC_ClkInitStruct->SYSCLKSource); - 800178a: 4b37 ldr r3, [pc, #220] ; (8001868 ) - 800178c: 689b ldr r3, [r3, #8] - 800178e: f023 0203 bic.w r2, r3, #3 - 8001792: 687b ldr r3, [r7, #4] - 8001794: 685b ldr r3, [r3, #4] - 8001796: 4934 ldr r1, [pc, #208] ; (8001868 ) - 8001798: 4313 orrs r3, r2 - 800179a: 608b str r3, [r1, #8] + 8001806: 4b37 ldr r3, [pc, #220] ; (80018e4 ) + 8001808: 689b ldr r3, [r3, #8] + 800180a: f023 0203 bic.w r2, r3, #3 + 800180e: 687b ldr r3, [r7, #4] + 8001810: 685b ldr r3, [r3, #4] + 8001812: 4934 ldr r1, [pc, #208] ; (80018e4 ) + 8001814: 4313 orrs r3, r2 + 8001816: 608b str r3, [r1, #8] /* Get Start Tick */ tickstart = HAL_GetTick(); - 800179c: f7ff fa6a bl 8000c74 - 80017a0: 60f8 str r0, [r7, #12] + 8001818: f7ff fa6a bl 8000cf0 + 800181c: 60f8 str r0, [r7, #12] while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 80017a2: e00a b.n 80017ba + 800181e: e00a b.n 8001836 { if ((HAL_GetTick() - tickstart) > CLOCKSWITCH_TIMEOUT_VALUE) - 80017a4: f7ff fa66 bl 8000c74 - 80017a8: 4602 mov r2, r0 - 80017aa: 68fb ldr r3, [r7, #12] - 80017ac: 1ad3 subs r3, r2, r3 - 80017ae: f241 3288 movw r2, #5000 ; 0x1388 - 80017b2: 4293 cmp r3, r2 - 80017b4: d901 bls.n 80017ba + 8001820: f7ff fa66 bl 8000cf0 + 8001824: 4602 mov r2, r0 + 8001826: 68fb ldr r3, [r7, #12] + 8001828: 1ad3 subs r3, r2, r3 + 800182a: f241 3288 movw r2, #5000 ; 0x1388 + 800182e: 4293 cmp r3, r2 + 8001830: d901 bls.n 8001836 { return HAL_TIMEOUT; - 80017b6: 2303 movs r3, #3 - 80017b8: e04f b.n 800185a + 8001832: 2303 movs r3, #3 + 8001834: e04f b.n 80018d6 while (__HAL_RCC_GET_SYSCLK_SOURCE() != (RCC_ClkInitStruct->SYSCLKSource << RCC_CFGR_SWS_Pos)) - 80017ba: 4b2b ldr r3, [pc, #172] ; (8001868 ) - 80017bc: 689b ldr r3, [r3, #8] - 80017be: f003 020c and.w r2, r3, #12 - 80017c2: 687b ldr r3, [r7, #4] - 80017c4: 685b ldr r3, [r3, #4] - 80017c6: 009b lsls r3, r3, #2 - 80017c8: 429a cmp r2, r3 - 80017ca: d1eb bne.n 80017a4 + 8001836: 4b2b ldr r3, [pc, #172] ; (80018e4 ) + 8001838: 689b ldr r3, [r3, #8] + 800183a: f003 020c and.w r2, r3, #12 + 800183e: 687b ldr r3, [r7, #4] + 8001840: 685b ldr r3, [r3, #4] + 8001842: 009b lsls r3, r3, #2 + 8001844: 429a cmp r2, r3 + 8001846: d1eb bne.n 8001820 } } } /* Decreasing the number of wait states because of lower CPU frequency */ if(FLatency < __HAL_FLASH_GET_LATENCY()) - 80017cc: 4b25 ldr r3, [pc, #148] ; (8001864 ) - 80017ce: 681b ldr r3, [r3, #0] - 80017d0: f003 0307 and.w r3, r3, #7 - 80017d4: 683a ldr r2, [r7, #0] - 80017d6: 429a cmp r2, r3 - 80017d8: d20c bcs.n 80017f4 + 8001848: 4b25 ldr r3, [pc, #148] ; (80018e0 ) + 800184a: 681b ldr r3, [r3, #0] + 800184c: f003 0307 and.w r3, r3, #7 + 8001850: 683a ldr r2, [r7, #0] + 8001852: 429a cmp r2, r3 + 8001854: d20c bcs.n 8001870 { /* Program the new number of wait states to the LATENCY bits in the FLASH_ACR register */ __HAL_FLASH_SET_LATENCY(FLatency); - 80017da: 4b22 ldr r3, [pc, #136] ; (8001864 ) - 80017dc: 683a ldr r2, [r7, #0] - 80017de: b2d2 uxtb r2, r2 - 80017e0: 701a strb r2, [r3, #0] + 8001856: 4b22 ldr r3, [pc, #136] ; (80018e0 ) + 8001858: 683a ldr r2, [r7, #0] + 800185a: b2d2 uxtb r2, r2 + 800185c: 701a strb r2, [r3, #0] /* Check that the new number of wait states is taken into account to access the Flash memory by reading the FLASH_ACR register */ if(__HAL_FLASH_GET_LATENCY() != FLatency) - 80017e2: 4b20 ldr r3, [pc, #128] ; (8001864 ) - 80017e4: 681b ldr r3, [r3, #0] - 80017e6: f003 0307 and.w r3, r3, #7 - 80017ea: 683a ldr r2, [r7, #0] - 80017ec: 429a cmp r2, r3 - 80017ee: d001 beq.n 80017f4 + 800185e: 4b20 ldr r3, [pc, #128] ; (80018e0 ) + 8001860: 681b ldr r3, [r3, #0] + 8001862: f003 0307 and.w r3, r3, #7 + 8001866: 683a ldr r2, [r7, #0] + 8001868: 429a cmp r2, r3 + 800186a: d001 beq.n 8001870 { return HAL_ERROR; - 80017f0: 2301 movs r3, #1 - 80017f2: e032 b.n 800185a + 800186c: 2301 movs r3, #1 + 800186e: e032 b.n 80018d6 } } /*-------------------------- PCLK1 Configuration ---------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK1) == RCC_CLOCKTYPE_PCLK1) - 80017f4: 687b ldr r3, [r7, #4] - 80017f6: 681b ldr r3, [r3, #0] - 80017f8: f003 0304 and.w r3, r3, #4 - 80017fc: 2b00 cmp r3, #0 - 80017fe: d008 beq.n 8001812 + 8001870: 687b ldr r3, [r7, #4] + 8001872: 681b ldr r3, [r3, #0] + 8001874: f003 0304 and.w r3, r3, #4 + 8001878: 2b00 cmp r3, #0 + 800187a: d008 beq.n 800188e { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB1CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE1, RCC_ClkInitStruct->APB1CLKDivider); - 8001800: 4b19 ldr r3, [pc, #100] ; (8001868 ) - 8001802: 689b ldr r3, [r3, #8] - 8001804: f423 52e0 bic.w r2, r3, #7168 ; 0x1c00 - 8001808: 687b ldr r3, [r7, #4] - 800180a: 68db ldr r3, [r3, #12] - 800180c: 4916 ldr r1, [pc, #88] ; (8001868 ) - 800180e: 4313 orrs r3, r2 - 8001810: 608b str r3, [r1, #8] + 800187c: 4b19 ldr r3, [pc, #100] ; (80018e4 ) + 800187e: 689b ldr r3, [r3, #8] + 8001880: f423 52e0 bic.w r2, r3, #7168 ; 0x1c00 + 8001884: 687b ldr r3, [r7, #4] + 8001886: 68db ldr r3, [r3, #12] + 8001888: 4916 ldr r1, [pc, #88] ; (80018e4 ) + 800188a: 4313 orrs r3, r2 + 800188c: 608b str r3, [r1, #8] } /*-------------------------- PCLK2 Configuration ---------------------------*/ if(((RCC_ClkInitStruct->ClockType) & RCC_CLOCKTYPE_PCLK2) == RCC_CLOCKTYPE_PCLK2) - 8001812: 687b ldr r3, [r7, #4] - 8001814: 681b ldr r3, [r3, #0] - 8001816: f003 0308 and.w r3, r3, #8 - 800181a: 2b00 cmp r3, #0 - 800181c: d009 beq.n 8001832 + 800188e: 687b ldr r3, [r7, #4] + 8001890: 681b ldr r3, [r3, #0] + 8001892: f003 0308 and.w r3, r3, #8 + 8001896: 2b00 cmp r3, #0 + 8001898: d009 beq.n 80018ae { assert_param(IS_RCC_PCLK(RCC_ClkInitStruct->APB2CLKDivider)); MODIFY_REG(RCC->CFGR, RCC_CFGR_PPRE2, ((RCC_ClkInitStruct->APB2CLKDivider) << 3U)); - 800181e: 4b12 ldr r3, [pc, #72] ; (8001868 ) - 8001820: 689b ldr r3, [r3, #8] - 8001822: f423 4260 bic.w r2, r3, #57344 ; 0xe000 - 8001826: 687b ldr r3, [r7, #4] - 8001828: 691b ldr r3, [r3, #16] - 800182a: 00db lsls r3, r3, #3 - 800182c: 490e ldr r1, [pc, #56] ; (8001868 ) - 800182e: 4313 orrs r3, r2 - 8001830: 608b str r3, [r1, #8] + 800189a: 4b12 ldr r3, [pc, #72] ; (80018e4 ) + 800189c: 689b ldr r3, [r3, #8] + 800189e: f423 4260 bic.w r2, r3, #57344 ; 0xe000 + 80018a2: 687b ldr r3, [r7, #4] + 80018a4: 691b ldr r3, [r3, #16] + 80018a6: 00db lsls r3, r3, #3 + 80018a8: 490e ldr r1, [pc, #56] ; (80018e4 ) + 80018aa: 4313 orrs r3, r2 + 80018ac: 608b str r3, [r1, #8] } /* Update the SystemCoreClock global variable */ SystemCoreClock = HAL_RCC_GetSysClockFreq() >> AHBPrescTable[(RCC->CFGR & RCC_CFGR_HPRE)>> RCC_CFGR_HPRE_Pos]; - 8001832: f000 f821 bl 8001878 - 8001836: 4602 mov r2, r0 - 8001838: 4b0b ldr r3, [pc, #44] ; (8001868 ) - 800183a: 689b ldr r3, [r3, #8] - 800183c: 091b lsrs r3, r3, #4 - 800183e: f003 030f and.w r3, r3, #15 - 8001842: 490a ldr r1, [pc, #40] ; (800186c ) - 8001844: 5ccb ldrb r3, [r1, r3] - 8001846: fa22 f303 lsr.w r3, r2, r3 - 800184a: 4a09 ldr r2, [pc, #36] ; (8001870 ) - 800184c: 6013 str r3, [r2, #0] + 80018ae: f000 f821 bl 80018f4 + 80018b2: 4602 mov r2, r0 + 80018b4: 4b0b ldr r3, [pc, #44] ; (80018e4 ) + 80018b6: 689b ldr r3, [r3, #8] + 80018b8: 091b lsrs r3, r3, #4 + 80018ba: f003 030f and.w r3, r3, #15 + 80018be: 490a ldr r1, [pc, #40] ; (80018e8 ) + 80018c0: 5ccb ldrb r3, [r1, r3] + 80018c2: fa22 f303 lsr.w r3, r2, r3 + 80018c6: 4a09 ldr r2, [pc, #36] ; (80018ec ) + 80018c8: 6013 str r3, [r2, #0] /* Configure the source of time base considering new system clocks settings */ HAL_InitTick (uwTickPrio); - 800184e: 4b09 ldr r3, [pc, #36] ; (8001874 ) - 8001850: 681b ldr r3, [r3, #0] - 8001852: 4618 mov r0, r3 - 8001854: f7ff f90a bl 8000a6c + 80018ca: 4b09 ldr r3, [pc, #36] ; (80018f0 ) + 80018cc: 681b ldr r3, [r3, #0] + 80018ce: 4618 mov r0, r3 + 80018d0: f7ff f90a bl 8000ae8 return HAL_OK; - 8001858: 2300 movs r3, #0 + 80018d4: 2300 movs r3, #0 } - 800185a: 4618 mov r0, r3 - 800185c: 3710 adds r7, #16 - 800185e: 46bd mov sp, r7 - 8001860: bd80 pop {r7, pc} - 8001862: bf00 nop - 8001864: 40023c00 .word 0x40023c00 - 8001868: 40023800 .word 0x40023800 - 800186c: 080056c0 .word 0x080056c0 - 8001870: 20000000 .word 0x20000000 - 8001874: 20000004 .word 0x20000004 + 80018d6: 4618 mov r0, r3 + 80018d8: 3710 adds r7, #16 + 80018da: 46bd mov sp, r7 + 80018dc: bd80 pop {r7, pc} + 80018de: bf00 nop + 80018e0: 40023c00 .word 0x40023c00 + 80018e4: 40023800 .word 0x40023800 + 80018e8: 08005740 .word 0x08005740 + 80018ec: 20000000 .word 0x20000000 + 80018f0: 20000004 .word 0x20000004 -08001878 : +080018f4 : * * * @retval SYSCLK frequency */ __weak uint32_t HAL_RCC_GetSysClockFreq(void) { - 8001878: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 800187c: b094 sub sp, #80 ; 0x50 - 800187e: af00 add r7, sp, #0 + 80018f4: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 80018f8: b094 sub sp, #80 ; 0x50 + 80018fa: af00 add r7, sp, #0 uint32_t pllm = 0U, pllvco = 0U, pllp = 0U; - 8001880: 2300 movs r3, #0 - 8001882: 647b str r3, [r7, #68] ; 0x44 - 8001884: 2300 movs r3, #0 - 8001886: 64fb str r3, [r7, #76] ; 0x4c - 8001888: 2300 movs r3, #0 - 800188a: 643b str r3, [r7, #64] ; 0x40 + 80018fc: 2300 movs r3, #0 + 80018fe: 647b str r3, [r7, #68] ; 0x44 + 8001900: 2300 movs r3, #0 + 8001902: 64fb str r3, [r7, #76] ; 0x4c + 8001904: 2300 movs r3, #0 + 8001906: 643b str r3, [r7, #64] ; 0x40 uint32_t sysclockfreq = 0U; - 800188c: 2300 movs r3, #0 - 800188e: 64bb str r3, [r7, #72] ; 0x48 + 8001908: 2300 movs r3, #0 + 800190a: 64bb str r3, [r7, #72] ; 0x48 /* Get SYSCLK source -------------------------------------------------------*/ switch (RCC->CFGR & RCC_CFGR_SWS) - 8001890: 4b79 ldr r3, [pc, #484] ; (8001a78 ) - 8001892: 689b ldr r3, [r3, #8] - 8001894: f003 030c and.w r3, r3, #12 - 8001898: 2b08 cmp r3, #8 - 800189a: d00d beq.n 80018b8 - 800189c: 2b08 cmp r3, #8 - 800189e: f200 80e1 bhi.w 8001a64 - 80018a2: 2b00 cmp r3, #0 - 80018a4: d002 beq.n 80018ac - 80018a6: 2b04 cmp r3, #4 - 80018a8: d003 beq.n 80018b2 - 80018aa: e0db b.n 8001a64 + 800190c: 4b79 ldr r3, [pc, #484] ; (8001af4 ) + 800190e: 689b ldr r3, [r3, #8] + 8001910: f003 030c and.w r3, r3, #12 + 8001914: 2b08 cmp r3, #8 + 8001916: d00d beq.n 8001934 + 8001918: 2b08 cmp r3, #8 + 800191a: f200 80e1 bhi.w 8001ae0 + 800191e: 2b00 cmp r3, #0 + 8001920: d002 beq.n 8001928 + 8001922: 2b04 cmp r3, #4 + 8001924: d003 beq.n 800192e + 8001926: e0db b.n 8001ae0 { case RCC_CFGR_SWS_HSI: /* HSI used as system clock source */ { sysclockfreq = HSI_VALUE; - 80018ac: 4b73 ldr r3, [pc, #460] ; (8001a7c ) - 80018ae: 64bb str r3, [r7, #72] ; 0x48 + 8001928: 4b73 ldr r3, [pc, #460] ; (8001af8 ) + 800192a: 64bb str r3, [r7, #72] ; 0x48 break; - 80018b0: e0db b.n 8001a6a + 800192c: e0db b.n 8001ae6 } case RCC_CFGR_SWS_HSE: /* HSE used as system clock source */ { sysclockfreq = HSE_VALUE; - 80018b2: 4b73 ldr r3, [pc, #460] ; (8001a80 ) - 80018b4: 64bb str r3, [r7, #72] ; 0x48 + 800192e: 4b73 ldr r3, [pc, #460] ; (8001afc ) + 8001930: 64bb str r3, [r7, #72] ; 0x48 break; - 80018b6: e0d8 b.n 8001a6a + 8001932: e0d8 b.n 8001ae6 } case RCC_CFGR_SWS_PLL: /* PLL used as system clock source */ { /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLLM) * PLLN SYSCLK = PLL_VCO / PLLP */ pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM; - 80018b8: 4b6f ldr r3, [pc, #444] ; (8001a78 ) - 80018ba: 685b ldr r3, [r3, #4] - 80018bc: f003 033f and.w r3, r3, #63 ; 0x3f - 80018c0: 647b str r3, [r7, #68] ; 0x44 + 8001934: 4b6f ldr r3, [pc, #444] ; (8001af4 ) + 8001936: 685b ldr r3, [r3, #4] + 8001938: f003 033f and.w r3, r3, #63 ; 0x3f + 800193c: 647b str r3, [r7, #68] ; 0x44 if(__HAL_RCC_GET_PLL_OSCSOURCE() != RCC_PLLSOURCE_HSI) - 80018c2: 4b6d ldr r3, [pc, #436] ; (8001a78 ) - 80018c4: 685b ldr r3, [r3, #4] - 80018c6: f403 0380 and.w r3, r3, #4194304 ; 0x400000 - 80018ca: 2b00 cmp r3, #0 - 80018cc: d063 beq.n 8001996 + 800193e: 4b6d ldr r3, [pc, #436] ; (8001af4 ) + 8001940: 685b ldr r3, [r3, #4] + 8001942: f403 0380 and.w r3, r3, #4194304 ; 0x400000 + 8001946: 2b00 cmp r3, #0 + 8001948: d063 beq.n 8001a12 { /* HSE used as PLL clock source */ pllvco = (uint32_t) ((((uint64_t) HSE_VALUE * ((uint64_t) ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 80018ce: 4b6a ldr r3, [pc, #424] ; (8001a78 ) - 80018d0: 685b ldr r3, [r3, #4] - 80018d2: 099b lsrs r3, r3, #6 - 80018d4: 2200 movs r2, #0 - 80018d6: 63bb str r3, [r7, #56] ; 0x38 - 80018d8: 63fa str r2, [r7, #60] ; 0x3c - 80018da: 6bbb ldr r3, [r7, #56] ; 0x38 - 80018dc: f3c3 0308 ubfx r3, r3, #0, #9 - 80018e0: 633b str r3, [r7, #48] ; 0x30 - 80018e2: 2300 movs r3, #0 - 80018e4: 637b str r3, [r7, #52] ; 0x34 - 80018e6: e9d7 450c ldrd r4, r5, [r7, #48] ; 0x30 - 80018ea: 4622 mov r2, r4 - 80018ec: 462b mov r3, r5 - 80018ee: f04f 0000 mov.w r0, #0 - 80018f2: f04f 0100 mov.w r1, #0 - 80018f6: 0159 lsls r1, r3, #5 - 80018f8: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 80018fc: 0150 lsls r0, r2, #5 - 80018fe: 4602 mov r2, r0 - 8001900: 460b mov r3, r1 - 8001902: 4621 mov r1, r4 - 8001904: 1a51 subs r1, r2, r1 - 8001906: 6139 str r1, [r7, #16] - 8001908: 4629 mov r1, r5 - 800190a: eb63 0301 sbc.w r3, r3, r1 - 800190e: 617b str r3, [r7, #20] - 8001910: f04f 0200 mov.w r2, #0 - 8001914: f04f 0300 mov.w r3, #0 - 8001918: e9d7 ab04 ldrd sl, fp, [r7, #16] - 800191c: 4659 mov r1, fp - 800191e: 018b lsls r3, r1, #6 - 8001920: 4651 mov r1, sl - 8001922: ea43 6391 orr.w r3, r3, r1, lsr #26 - 8001926: 4651 mov r1, sl - 8001928: 018a lsls r2, r1, #6 - 800192a: 4651 mov r1, sl - 800192c: ebb2 0801 subs.w r8, r2, r1 - 8001930: 4659 mov r1, fp - 8001932: eb63 0901 sbc.w r9, r3, r1 - 8001936: f04f 0200 mov.w r2, #0 - 800193a: f04f 0300 mov.w r3, #0 - 800193e: ea4f 03c9 mov.w r3, r9, lsl #3 - 8001942: ea43 7358 orr.w r3, r3, r8, lsr #29 - 8001946: ea4f 02c8 mov.w r2, r8, lsl #3 - 800194a: 4690 mov r8, r2 - 800194c: 4699 mov r9, r3 - 800194e: 4623 mov r3, r4 - 8001950: eb18 0303 adds.w r3, r8, r3 - 8001954: 60bb str r3, [r7, #8] - 8001956: 462b mov r3, r5 - 8001958: eb49 0303 adc.w r3, r9, r3 - 800195c: 60fb str r3, [r7, #12] - 800195e: f04f 0200 mov.w r2, #0 - 8001962: f04f 0300 mov.w r3, #0 - 8001966: e9d7 4502 ldrd r4, r5, [r7, #8] - 800196a: 4629 mov r1, r5 - 800196c: 024b lsls r3, r1, #9 - 800196e: 4621 mov r1, r4 - 8001970: ea43 53d1 orr.w r3, r3, r1, lsr #23 - 8001974: 4621 mov r1, r4 - 8001976: 024a lsls r2, r1, #9 - 8001978: 4610 mov r0, r2 - 800197a: 4619 mov r1, r3 - 800197c: 6c7b ldr r3, [r7, #68] ; 0x44 - 800197e: 2200 movs r2, #0 - 8001980: 62bb str r3, [r7, #40] ; 0x28 - 8001982: 62fa str r2, [r7, #44] ; 0x2c - 8001984: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 - 8001988: f7fe fc2a bl 80001e0 <__aeabi_uldivmod> - 800198c: 4602 mov r2, r0 - 800198e: 460b mov r3, r1 - 8001990: 4613 mov r3, r2 - 8001992: 64fb str r3, [r7, #76] ; 0x4c - 8001994: e058 b.n 8001a48 + 800194a: 4b6a ldr r3, [pc, #424] ; (8001af4 ) + 800194c: 685b ldr r3, [r3, #4] + 800194e: 099b lsrs r3, r3, #6 + 8001950: 2200 movs r2, #0 + 8001952: 63bb str r3, [r7, #56] ; 0x38 + 8001954: 63fa str r2, [r7, #60] ; 0x3c + 8001956: 6bbb ldr r3, [r7, #56] ; 0x38 + 8001958: f3c3 0308 ubfx r3, r3, #0, #9 + 800195c: 633b str r3, [r7, #48] ; 0x30 + 800195e: 2300 movs r3, #0 + 8001960: 637b str r3, [r7, #52] ; 0x34 + 8001962: e9d7 450c ldrd r4, r5, [r7, #48] ; 0x30 + 8001966: 4622 mov r2, r4 + 8001968: 462b mov r3, r5 + 800196a: f04f 0000 mov.w r0, #0 + 800196e: f04f 0100 mov.w r1, #0 + 8001972: 0159 lsls r1, r3, #5 + 8001974: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8001978: 0150 lsls r0, r2, #5 + 800197a: 4602 mov r2, r0 + 800197c: 460b mov r3, r1 + 800197e: 4621 mov r1, r4 + 8001980: 1a51 subs r1, r2, r1 + 8001982: 6139 str r1, [r7, #16] + 8001984: 4629 mov r1, r5 + 8001986: eb63 0301 sbc.w r3, r3, r1 + 800198a: 617b str r3, [r7, #20] + 800198c: f04f 0200 mov.w r2, #0 + 8001990: f04f 0300 mov.w r3, #0 + 8001994: e9d7 ab04 ldrd sl, fp, [r7, #16] + 8001998: 4659 mov r1, fp + 800199a: 018b lsls r3, r1, #6 + 800199c: 4651 mov r1, sl + 800199e: ea43 6391 orr.w r3, r3, r1, lsr #26 + 80019a2: 4651 mov r1, sl + 80019a4: 018a lsls r2, r1, #6 + 80019a6: 4651 mov r1, sl + 80019a8: ebb2 0801 subs.w r8, r2, r1 + 80019ac: 4659 mov r1, fp + 80019ae: eb63 0901 sbc.w r9, r3, r1 + 80019b2: f04f 0200 mov.w r2, #0 + 80019b6: f04f 0300 mov.w r3, #0 + 80019ba: ea4f 03c9 mov.w r3, r9, lsl #3 + 80019be: ea43 7358 orr.w r3, r3, r8, lsr #29 + 80019c2: ea4f 02c8 mov.w r2, r8, lsl #3 + 80019c6: 4690 mov r8, r2 + 80019c8: 4699 mov r9, r3 + 80019ca: 4623 mov r3, r4 + 80019cc: eb18 0303 adds.w r3, r8, r3 + 80019d0: 60bb str r3, [r7, #8] + 80019d2: 462b mov r3, r5 + 80019d4: eb49 0303 adc.w r3, r9, r3 + 80019d8: 60fb str r3, [r7, #12] + 80019da: f04f 0200 mov.w r2, #0 + 80019de: f04f 0300 mov.w r3, #0 + 80019e2: e9d7 4502 ldrd r4, r5, [r7, #8] + 80019e6: 4629 mov r1, r5 + 80019e8: 024b lsls r3, r1, #9 + 80019ea: 4621 mov r1, r4 + 80019ec: ea43 53d1 orr.w r3, r3, r1, lsr #23 + 80019f0: 4621 mov r1, r4 + 80019f2: 024a lsls r2, r1, #9 + 80019f4: 4610 mov r0, r2 + 80019f6: 4619 mov r1, r3 + 80019f8: 6c7b ldr r3, [r7, #68] ; 0x44 + 80019fa: 2200 movs r2, #0 + 80019fc: 62bb str r3, [r7, #40] ; 0x28 + 80019fe: 62fa str r2, [r7, #44] ; 0x2c + 8001a00: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 + 8001a04: f7fe fbec bl 80001e0 <__aeabi_uldivmod> + 8001a08: 4602 mov r2, r0 + 8001a0a: 460b mov r3, r1 + 8001a0c: 4613 mov r3, r2 + 8001a0e: 64fb str r3, [r7, #76] ; 0x4c + 8001a10: e058 b.n 8001ac4 } else { /* HSI used as PLL clock source */ pllvco = (uint32_t) ((((uint64_t) HSI_VALUE * ((uint64_t) ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos)))) / (uint64_t)pllm); - 8001996: 4b38 ldr r3, [pc, #224] ; (8001a78 ) - 8001998: 685b ldr r3, [r3, #4] - 800199a: 099b lsrs r3, r3, #6 - 800199c: 2200 movs r2, #0 - 800199e: 4618 mov r0, r3 - 80019a0: 4611 mov r1, r2 - 80019a2: f3c0 0308 ubfx r3, r0, #0, #9 - 80019a6: 623b str r3, [r7, #32] - 80019a8: 2300 movs r3, #0 - 80019aa: 627b str r3, [r7, #36] ; 0x24 - 80019ac: e9d7 8908 ldrd r8, r9, [r7, #32] - 80019b0: 4642 mov r2, r8 - 80019b2: 464b mov r3, r9 - 80019b4: f04f 0000 mov.w r0, #0 - 80019b8: f04f 0100 mov.w r1, #0 - 80019bc: 0159 lsls r1, r3, #5 - 80019be: ea41 61d2 orr.w r1, r1, r2, lsr #27 - 80019c2: 0150 lsls r0, r2, #5 - 80019c4: 4602 mov r2, r0 - 80019c6: 460b mov r3, r1 - 80019c8: 4641 mov r1, r8 - 80019ca: ebb2 0a01 subs.w sl, r2, r1 - 80019ce: 4649 mov r1, r9 - 80019d0: eb63 0b01 sbc.w fp, r3, r1 - 80019d4: f04f 0200 mov.w r2, #0 - 80019d8: f04f 0300 mov.w r3, #0 - 80019dc: ea4f 138b mov.w r3, fp, lsl #6 - 80019e0: ea43 639a orr.w r3, r3, sl, lsr #26 - 80019e4: ea4f 128a mov.w r2, sl, lsl #6 - 80019e8: ebb2 040a subs.w r4, r2, sl - 80019ec: eb63 050b sbc.w r5, r3, fp - 80019f0: f04f 0200 mov.w r2, #0 - 80019f4: f04f 0300 mov.w r3, #0 - 80019f8: 00eb lsls r3, r5, #3 - 80019fa: ea43 7354 orr.w r3, r3, r4, lsr #29 - 80019fe: 00e2 lsls r2, r4, #3 - 8001a00: 4614 mov r4, r2 - 8001a02: 461d mov r5, r3 - 8001a04: 4643 mov r3, r8 - 8001a06: 18e3 adds r3, r4, r3 - 8001a08: 603b str r3, [r7, #0] - 8001a0a: 464b mov r3, r9 - 8001a0c: eb45 0303 adc.w r3, r5, r3 - 8001a10: 607b str r3, [r7, #4] - 8001a12: f04f 0200 mov.w r2, #0 - 8001a16: f04f 0300 mov.w r3, #0 - 8001a1a: e9d7 4500 ldrd r4, r5, [r7] - 8001a1e: 4629 mov r1, r5 - 8001a20: 028b lsls r3, r1, #10 - 8001a22: 4621 mov r1, r4 - 8001a24: ea43 5391 orr.w r3, r3, r1, lsr #22 - 8001a28: 4621 mov r1, r4 - 8001a2a: 028a lsls r2, r1, #10 - 8001a2c: 4610 mov r0, r2 - 8001a2e: 4619 mov r1, r3 - 8001a30: 6c7b ldr r3, [r7, #68] ; 0x44 - 8001a32: 2200 movs r2, #0 - 8001a34: 61bb str r3, [r7, #24] - 8001a36: 61fa str r2, [r7, #28] - 8001a38: e9d7 2306 ldrd r2, r3, [r7, #24] - 8001a3c: f7fe fbd0 bl 80001e0 <__aeabi_uldivmod> + 8001a12: 4b38 ldr r3, [pc, #224] ; (8001af4 ) + 8001a14: 685b ldr r3, [r3, #4] + 8001a16: 099b lsrs r3, r3, #6 + 8001a18: 2200 movs r2, #0 + 8001a1a: 4618 mov r0, r3 + 8001a1c: 4611 mov r1, r2 + 8001a1e: f3c0 0308 ubfx r3, r0, #0, #9 + 8001a22: 623b str r3, [r7, #32] + 8001a24: 2300 movs r3, #0 + 8001a26: 627b str r3, [r7, #36] ; 0x24 + 8001a28: e9d7 8908 ldrd r8, r9, [r7, #32] + 8001a2c: 4642 mov r2, r8 + 8001a2e: 464b mov r3, r9 + 8001a30: f04f 0000 mov.w r0, #0 + 8001a34: f04f 0100 mov.w r1, #0 + 8001a38: 0159 lsls r1, r3, #5 + 8001a3a: ea41 61d2 orr.w r1, r1, r2, lsr #27 + 8001a3e: 0150 lsls r0, r2, #5 8001a40: 4602 mov r2, r0 8001a42: 460b mov r3, r1 - 8001a44: 4613 mov r3, r2 - 8001a46: 64fb str r3, [r7, #76] ; 0x4c + 8001a44: 4641 mov r1, r8 + 8001a46: ebb2 0a01 subs.w sl, r2, r1 + 8001a4a: 4649 mov r1, r9 + 8001a4c: eb63 0b01 sbc.w fp, r3, r1 + 8001a50: f04f 0200 mov.w r2, #0 + 8001a54: f04f 0300 mov.w r3, #0 + 8001a58: ea4f 138b mov.w r3, fp, lsl #6 + 8001a5c: ea43 639a orr.w r3, r3, sl, lsr #26 + 8001a60: ea4f 128a mov.w r2, sl, lsl #6 + 8001a64: ebb2 040a subs.w r4, r2, sl + 8001a68: eb63 050b sbc.w r5, r3, fp + 8001a6c: f04f 0200 mov.w r2, #0 + 8001a70: f04f 0300 mov.w r3, #0 + 8001a74: 00eb lsls r3, r5, #3 + 8001a76: ea43 7354 orr.w r3, r3, r4, lsr #29 + 8001a7a: 00e2 lsls r2, r4, #3 + 8001a7c: 4614 mov r4, r2 + 8001a7e: 461d mov r5, r3 + 8001a80: 4643 mov r3, r8 + 8001a82: 18e3 adds r3, r4, r3 + 8001a84: 603b str r3, [r7, #0] + 8001a86: 464b mov r3, r9 + 8001a88: eb45 0303 adc.w r3, r5, r3 + 8001a8c: 607b str r3, [r7, #4] + 8001a8e: f04f 0200 mov.w r2, #0 + 8001a92: f04f 0300 mov.w r3, #0 + 8001a96: e9d7 4500 ldrd r4, r5, [r7] + 8001a9a: 4629 mov r1, r5 + 8001a9c: 028b lsls r3, r1, #10 + 8001a9e: 4621 mov r1, r4 + 8001aa0: ea43 5391 orr.w r3, r3, r1, lsr #22 + 8001aa4: 4621 mov r1, r4 + 8001aa6: 028a lsls r2, r1, #10 + 8001aa8: 4610 mov r0, r2 + 8001aaa: 4619 mov r1, r3 + 8001aac: 6c7b ldr r3, [r7, #68] ; 0x44 + 8001aae: 2200 movs r2, #0 + 8001ab0: 61bb str r3, [r7, #24] + 8001ab2: 61fa str r2, [r7, #28] + 8001ab4: e9d7 2306 ldrd r2, r3, [r7, #24] + 8001ab8: f7fe fb92 bl 80001e0 <__aeabi_uldivmod> + 8001abc: 4602 mov r2, r0 + 8001abe: 460b mov r3, r1 + 8001ac0: 4613 mov r3, r2 + 8001ac2: 64fb str r3, [r7, #76] ; 0x4c } pllp = ((((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >> RCC_PLLCFGR_PLLP_Pos) + 1U) *2U); - 8001a48: 4b0b ldr r3, [pc, #44] ; (8001a78 ) - 8001a4a: 685b ldr r3, [r3, #4] - 8001a4c: 0c1b lsrs r3, r3, #16 - 8001a4e: f003 0303 and.w r3, r3, #3 - 8001a52: 3301 adds r3, #1 - 8001a54: 005b lsls r3, r3, #1 - 8001a56: 643b str r3, [r7, #64] ; 0x40 + 8001ac4: 4b0b ldr r3, [pc, #44] ; (8001af4 ) + 8001ac6: 685b ldr r3, [r3, #4] + 8001ac8: 0c1b lsrs r3, r3, #16 + 8001aca: f003 0303 and.w r3, r3, #3 + 8001ace: 3301 adds r3, #1 + 8001ad0: 005b lsls r3, r3, #1 + 8001ad2: 643b str r3, [r7, #64] ; 0x40 sysclockfreq = pllvco/pllp; - 8001a58: 6cfa ldr r2, [r7, #76] ; 0x4c - 8001a5a: 6c3b ldr r3, [r7, #64] ; 0x40 - 8001a5c: fbb2 f3f3 udiv r3, r2, r3 - 8001a60: 64bb str r3, [r7, #72] ; 0x48 + 8001ad4: 6cfa ldr r2, [r7, #76] ; 0x4c + 8001ad6: 6c3b ldr r3, [r7, #64] ; 0x40 + 8001ad8: fbb2 f3f3 udiv r3, r2, r3 + 8001adc: 64bb str r3, [r7, #72] ; 0x48 break; - 8001a62: e002 b.n 8001a6a + 8001ade: e002 b.n 8001ae6 } default: { sysclockfreq = HSI_VALUE; - 8001a64: 4b05 ldr r3, [pc, #20] ; (8001a7c ) - 8001a66: 64bb str r3, [r7, #72] ; 0x48 + 8001ae0: 4b05 ldr r3, [pc, #20] ; (8001af8 ) + 8001ae2: 64bb str r3, [r7, #72] ; 0x48 break; - 8001a68: bf00 nop + 8001ae4: bf00 nop } } return sysclockfreq; - 8001a6a: 6cbb ldr r3, [r7, #72] ; 0x48 + 8001ae6: 6cbb ldr r3, [r7, #72] ; 0x48 } - 8001a6c: 4618 mov r0, r3 - 8001a6e: 3750 adds r7, #80 ; 0x50 - 8001a70: 46bd mov sp, r7 - 8001a72: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8001a76: bf00 nop - 8001a78: 40023800 .word 0x40023800 - 8001a7c: 00f42400 .word 0x00f42400 - 8001a80: 007a1200 .word 0x007a1200 + 8001ae8: 4618 mov r0, r3 + 8001aea: 3750 adds r7, #80 ; 0x50 + 8001aec: 46bd mov sp, r7 + 8001aee: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8001af2: bf00 nop + 8001af4: 40023800 .word 0x40023800 + 8001af8: 00f42400 .word 0x00f42400 + 8001afc: 007a1200 .word 0x007a1200 -08001a84 : +08001b00 : * @note The SystemCoreClock CMSIS variable is used to store System Clock Frequency * and updated within this function * @retval HCLK frequency */ uint32_t HAL_RCC_GetHCLKFreq(void) { - 8001a84: b480 push {r7} - 8001a86: af00 add r7, sp, #0 + 8001b00: b480 push {r7} + 8001b02: af00 add r7, sp, #0 return SystemCoreClock; - 8001a88: 4b03 ldr r3, [pc, #12] ; (8001a98 ) - 8001a8a: 681b ldr r3, [r3, #0] + 8001b04: 4b03 ldr r3, [pc, #12] ; (8001b14 ) + 8001b06: 681b ldr r3, [r3, #0] } - 8001a8c: 4618 mov r0, r3 - 8001a8e: 46bd mov sp, r7 - 8001a90: f85d 7b04 ldr.w r7, [sp], #4 - 8001a94: 4770 bx lr - 8001a96: bf00 nop - 8001a98: 20000000 .word 0x20000000 + 8001b08: 4618 mov r0, r3 + 8001b0a: 46bd mov sp, r7 + 8001b0c: f85d 7b04 ldr.w r7, [sp], #4 + 8001b10: 4770 bx lr + 8001b12: bf00 nop + 8001b14: 20000000 .word 0x20000000 -08001a9c : +08001b18 : * @note Each time PCLK1 changes, this function must be called to update the * right PCLK1 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK1 frequency */ uint32_t HAL_RCC_GetPCLK1Freq(void) { - 8001a9c: b580 push {r7, lr} - 8001a9e: af00 add r7, sp, #0 + 8001b18: b580 push {r7, lr} + 8001b1a: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK1 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq() >> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE1)>> RCC_CFGR_PPRE1_Pos]); - 8001aa0: f7ff fff0 bl 8001a84 - 8001aa4: 4602 mov r2, r0 - 8001aa6: 4b05 ldr r3, [pc, #20] ; (8001abc ) - 8001aa8: 689b ldr r3, [r3, #8] - 8001aaa: 0a9b lsrs r3, r3, #10 - 8001aac: f003 0307 and.w r3, r3, #7 - 8001ab0: 4903 ldr r1, [pc, #12] ; (8001ac0 ) - 8001ab2: 5ccb ldrb r3, [r1, r3] - 8001ab4: fa22 f303 lsr.w r3, r2, r3 + 8001b1c: f7ff fff0 bl 8001b00 + 8001b20: 4602 mov r2, r0 + 8001b22: 4b05 ldr r3, [pc, #20] ; (8001b38 ) + 8001b24: 689b ldr r3, [r3, #8] + 8001b26: 0a9b lsrs r3, r3, #10 + 8001b28: f003 0307 and.w r3, r3, #7 + 8001b2c: 4903 ldr r1, [pc, #12] ; (8001b3c ) + 8001b2e: 5ccb ldrb r3, [r1, r3] + 8001b30: fa22 f303 lsr.w r3, r2, r3 } - 8001ab8: 4618 mov r0, r3 - 8001aba: bd80 pop {r7, pc} - 8001abc: 40023800 .word 0x40023800 - 8001ac0: 080056d0 .word 0x080056d0 + 8001b34: 4618 mov r0, r3 + 8001b36: bd80 pop {r7, pc} + 8001b38: 40023800 .word 0x40023800 + 8001b3c: 08005750 .word 0x08005750 -08001ac4 : +08001b40 : * @note Each time PCLK2 changes, this function must be called to update the * right PCLK2 value. Otherwise, any configuration based on this function will be incorrect. * @retval PCLK2 frequency */ uint32_t HAL_RCC_GetPCLK2Freq(void) { - 8001ac4: b580 push {r7, lr} - 8001ac6: af00 add r7, sp, #0 + 8001b40: b580 push {r7, lr} + 8001b42: af00 add r7, sp, #0 /* Get HCLK source and Compute PCLK2 frequency ---------------------------*/ return (HAL_RCC_GetHCLKFreq()>> APBPrescTable[(RCC->CFGR & RCC_CFGR_PPRE2)>> RCC_CFGR_PPRE2_Pos]); - 8001ac8: f7ff ffdc bl 8001a84 - 8001acc: 4602 mov r2, r0 - 8001ace: 4b05 ldr r3, [pc, #20] ; (8001ae4 ) - 8001ad0: 689b ldr r3, [r3, #8] - 8001ad2: 0b5b lsrs r3, r3, #13 - 8001ad4: f003 0307 and.w r3, r3, #7 - 8001ad8: 4903 ldr r1, [pc, #12] ; (8001ae8 ) - 8001ada: 5ccb ldrb r3, [r1, r3] - 8001adc: fa22 f303 lsr.w r3, r2, r3 + 8001b44: f7ff ffdc bl 8001b00 + 8001b48: 4602 mov r2, r0 + 8001b4a: 4b05 ldr r3, [pc, #20] ; (8001b60 ) + 8001b4c: 689b ldr r3, [r3, #8] + 8001b4e: 0b5b lsrs r3, r3, #13 + 8001b50: f003 0307 and.w r3, r3, #7 + 8001b54: 4903 ldr r1, [pc, #12] ; (8001b64 ) + 8001b56: 5ccb ldrb r3, [r1, r3] + 8001b58: fa22 f303 lsr.w r3, r2, r3 } - 8001ae0: 4618 mov r0, r3 - 8001ae2: bd80 pop {r7, pc} - 8001ae4: 40023800 .word 0x40023800 - 8001ae8: 080056d0 .word 0x080056d0 + 8001b5c: 4618 mov r0, r3 + 8001b5e: bd80 pop {r7, pc} + 8001b60: 40023800 .word 0x40023800 + 8001b64: 08005750 .word 0x08005750 -08001aec : +08001b68 : * will be configured. * @param pFLatency Pointer on the Flash Latency. * @retval None */ void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *RCC_ClkInitStruct, uint32_t *pFLatency) { - 8001aec: b480 push {r7} - 8001aee: b083 sub sp, #12 - 8001af0: af00 add r7, sp, #0 - 8001af2: 6078 str r0, [r7, #4] - 8001af4: 6039 str r1, [r7, #0] + 8001b68: b480 push {r7} + 8001b6a: b083 sub sp, #12 + 8001b6c: af00 add r7, sp, #0 + 8001b6e: 6078 str r0, [r7, #4] + 8001b70: 6039 str r1, [r7, #0] /* Set all possible values for the Clock type parameter --------------------*/ RCC_ClkInitStruct->ClockType = RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2; - 8001af6: 687b ldr r3, [r7, #4] - 8001af8: 220f movs r2, #15 - 8001afa: 601a str r2, [r3, #0] + 8001b72: 687b ldr r3, [r7, #4] + 8001b74: 220f movs r2, #15 + 8001b76: 601a str r2, [r3, #0] /* Get the SYSCLK configuration --------------------------------------------*/ RCC_ClkInitStruct->SYSCLKSource = (uint32_t)(RCC->CFGR & RCC_CFGR_SW); - 8001afc: 4b12 ldr r3, [pc, #72] ; (8001b48 ) - 8001afe: 689b ldr r3, [r3, #8] - 8001b00: f003 0203 and.w r2, r3, #3 - 8001b04: 687b ldr r3, [r7, #4] - 8001b06: 605a str r2, [r3, #4] + 8001b78: 4b12 ldr r3, [pc, #72] ; (8001bc4 ) + 8001b7a: 689b ldr r3, [r3, #8] + 8001b7c: f003 0203 and.w r2, r3, #3 + 8001b80: 687b ldr r3, [r7, #4] + 8001b82: 605a str r2, [r3, #4] /* Get the HCLK configuration ----------------------------------------------*/ RCC_ClkInitStruct->AHBCLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_HPRE); - 8001b08: 4b0f ldr r3, [pc, #60] ; (8001b48 ) - 8001b0a: 689b ldr r3, [r3, #8] - 8001b0c: f003 02f0 and.w r2, r3, #240 ; 0xf0 - 8001b10: 687b ldr r3, [r7, #4] - 8001b12: 609a str r2, [r3, #8] + 8001b84: 4b0f ldr r3, [pc, #60] ; (8001bc4 ) + 8001b86: 689b ldr r3, [r3, #8] + 8001b88: f003 02f0 and.w r2, r3, #240 ; 0xf0 + 8001b8c: 687b ldr r3, [r7, #4] + 8001b8e: 609a str r2, [r3, #8] /* Get the APB1 configuration ----------------------------------------------*/ RCC_ClkInitStruct->APB1CLKDivider = (uint32_t)(RCC->CFGR & RCC_CFGR_PPRE1); - 8001b14: 4b0c ldr r3, [pc, #48] ; (8001b48 ) - 8001b16: 689b ldr r3, [r3, #8] - 8001b18: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 - 8001b1c: 687b ldr r3, [r7, #4] - 8001b1e: 60da str r2, [r3, #12] + 8001b90: 4b0c ldr r3, [pc, #48] ; (8001bc4 ) + 8001b92: 689b ldr r3, [r3, #8] + 8001b94: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 + 8001b98: 687b ldr r3, [r7, #4] + 8001b9a: 60da str r2, [r3, #12] /* Get the APB2 configuration ----------------------------------------------*/ RCC_ClkInitStruct->APB2CLKDivider = (uint32_t)((RCC->CFGR & RCC_CFGR_PPRE2) >> 3U); - 8001b20: 4b09 ldr r3, [pc, #36] ; (8001b48 ) - 8001b22: 689b ldr r3, [r3, #8] - 8001b24: 08db lsrs r3, r3, #3 - 8001b26: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 - 8001b2a: 687b ldr r3, [r7, #4] - 8001b2c: 611a str r2, [r3, #16] + 8001b9c: 4b09 ldr r3, [pc, #36] ; (8001bc4 ) + 8001b9e: 689b ldr r3, [r3, #8] + 8001ba0: 08db lsrs r3, r3, #3 + 8001ba2: f403 52e0 and.w r2, r3, #7168 ; 0x1c00 + 8001ba6: 687b ldr r3, [r7, #4] + 8001ba8: 611a str r2, [r3, #16] /* Get the Flash Wait State (Latency) configuration ------------------------*/ *pFLatency = (uint32_t)(FLASH->ACR & FLASH_ACR_LATENCY); - 8001b2e: 4b07 ldr r3, [pc, #28] ; (8001b4c ) - 8001b30: 681b ldr r3, [r3, #0] - 8001b32: f003 0207 and.w r2, r3, #7 - 8001b36: 683b ldr r3, [r7, #0] - 8001b38: 601a str r2, [r3, #0] + 8001baa: 4b07 ldr r3, [pc, #28] ; (8001bc8 ) + 8001bac: 681b ldr r3, [r3, #0] + 8001bae: f003 0207 and.w r2, r3, #7 + 8001bb2: 683b ldr r3, [r7, #0] + 8001bb4: 601a str r2, [r3, #0] } - 8001b3a: bf00 nop - 8001b3c: 370c adds r7, #12 - 8001b3e: 46bd mov sp, r7 - 8001b40: f85d 7b04 ldr.w r7, [sp], #4 - 8001b44: 4770 bx lr - 8001b46: bf00 nop - 8001b48: 40023800 .word 0x40023800 - 8001b4c: 40023c00 .word 0x40023c00 + 8001bb6: bf00 nop + 8001bb8: 370c adds r7, #12 + 8001bba: 46bd mov sp, r7 + 8001bbc: f85d 7b04 ldr.w r7, [sp], #4 + 8001bc0: 4770 bx lr + 8001bc2: bf00 nop + 8001bc4: 40023800 .word 0x40023800 + 8001bc8: 40023c00 .word 0x40023c00 -08001b50 : +08001bcc : * Ex: call @ref HAL_TIM_Base_DeInit() before HAL_TIM_Base_Init() * @param htim TIM Base handle * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_Base_Init(TIM_HandleTypeDef *htim) { - 8001b50: b580 push {r7, lr} - 8001b52: b082 sub sp, #8 - 8001b54: af00 add r7, sp, #0 - 8001b56: 6078 str r0, [r7, #4] + 8001bcc: b580 push {r7, lr} + 8001bce: b082 sub sp, #8 + 8001bd0: af00 add r7, sp, #0 + 8001bd2: 6078 str r0, [r7, #4] /* Check the TIM handle allocation */ if (htim == NULL) - 8001b58: 687b ldr r3, [r7, #4] - 8001b5a: 2b00 cmp r3, #0 - 8001b5c: d101 bne.n 8001b62 + 8001bd4: 687b ldr r3, [r7, #4] + 8001bd6: 2b00 cmp r3, #0 + 8001bd8: d101 bne.n 8001bde { return HAL_ERROR; - 8001b5e: 2301 movs r3, #1 - 8001b60: e041 b.n 8001be6 + 8001bda: 2301 movs r3, #1 + 8001bdc: e041 b.n 8001c62 assert_param(IS_TIM_INSTANCE(htim->Instance)); assert_param(IS_TIM_COUNTER_MODE(htim->Init.CounterMode)); assert_param(IS_TIM_CLOCKDIVISION_DIV(htim->Init.ClockDivision)); assert_param(IS_TIM_AUTORELOAD_PRELOAD(htim->Init.AutoReloadPreload)); if (htim->State == HAL_TIM_STATE_RESET) - 8001b62: 687b ldr r3, [r7, #4] - 8001b64: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8001b68: b2db uxtb r3, r3 - 8001b6a: 2b00 cmp r3, #0 - 8001b6c: d106 bne.n 8001b7c + 8001bde: 687b ldr r3, [r7, #4] + 8001be0: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8001be4: b2db uxtb r3, r3 + 8001be6: 2b00 cmp r3, #0 + 8001be8: d106 bne.n 8001bf8 { /* Allocate lock resource and initialize it */ htim->Lock = HAL_UNLOCKED; - 8001b6e: 687b ldr r3, [r7, #4] - 8001b70: 2200 movs r2, #0 - 8001b72: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8001bea: 687b ldr r3, [r7, #4] + 8001bec: 2200 movs r2, #0 + 8001bee: f883 203c strb.w r2, [r3, #60] ; 0x3c } /* Init the low level hardware : GPIO, CLOCK, NVIC */ htim->Base_MspInitCallback(htim); #else /* Init the low level hardware : GPIO, CLOCK, NVIC */ HAL_TIM_Base_MspInit(htim); - 8001b76: 6878 ldr r0, [r7, #4] - 8001b78: f000 f839 bl 8001bee + 8001bf2: 6878 ldr r0, [r7, #4] + 8001bf4: f000 f839 bl 8001c6a #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8001b7c: 687b ldr r3, [r7, #4] - 8001b7e: 2202 movs r2, #2 - 8001b80: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8001bf8: 687b ldr r3, [r7, #4] + 8001bfa: 2202 movs r2, #2 + 8001bfc: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Set the Time Base configuration */ TIM_Base_SetConfig(htim->Instance, &htim->Init); - 8001b84: 687b ldr r3, [r7, #4] - 8001b86: 681a ldr r2, [r3, #0] - 8001b88: 687b ldr r3, [r7, #4] - 8001b8a: 3304 adds r3, #4 - 8001b8c: 4619 mov r1, r3 - 8001b8e: 4610 mov r0, r2 - 8001b90: f000 f9ca bl 8001f28 + 8001c00: 687b ldr r3, [r7, #4] + 8001c02: 681a ldr r2, [r3, #0] + 8001c04: 687b ldr r3, [r7, #4] + 8001c06: 3304 adds r3, #4 + 8001c08: 4619 mov r1, r3 + 8001c0a: 4610 mov r0, r2 + 8001c0c: f000 f9ca bl 8001fa4 /* Initialize the DMA burst operation state */ htim->DMABurstState = HAL_DMA_BURST_STATE_READY; - 8001b94: 687b ldr r3, [r7, #4] - 8001b96: 2201 movs r2, #1 - 8001b98: f883 2046 strb.w r2, [r3, #70] ; 0x46 + 8001c10: 687b ldr r3, [r7, #4] + 8001c12: 2201 movs r2, #1 + 8001c14: f883 2046 strb.w r2, [r3, #70] ; 0x46 /* Initialize the TIM channels state */ TIM_CHANNEL_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8001b9c: 687b ldr r3, [r7, #4] - 8001b9e: 2201 movs r2, #1 - 8001ba0: f883 203e strb.w r2, [r3, #62] ; 0x3e - 8001ba4: 687b ldr r3, [r7, #4] - 8001ba6: 2201 movs r2, #1 - 8001ba8: f883 203f strb.w r2, [r3, #63] ; 0x3f - 8001bac: 687b ldr r3, [r7, #4] - 8001bae: 2201 movs r2, #1 - 8001bb0: f883 2040 strb.w r2, [r3, #64] ; 0x40 - 8001bb4: 687b ldr r3, [r7, #4] - 8001bb6: 2201 movs r2, #1 - 8001bb8: f883 2041 strb.w r2, [r3, #65] ; 0x41 + 8001c18: 687b ldr r3, [r7, #4] + 8001c1a: 2201 movs r2, #1 + 8001c1c: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8001c20: 687b ldr r3, [r7, #4] + 8001c22: 2201 movs r2, #1 + 8001c24: f883 203f strb.w r2, [r3, #63] ; 0x3f + 8001c28: 687b ldr r3, [r7, #4] + 8001c2a: 2201 movs r2, #1 + 8001c2c: f883 2040 strb.w r2, [r3, #64] ; 0x40 + 8001c30: 687b ldr r3, [r7, #4] + 8001c32: 2201 movs r2, #1 + 8001c34: f883 2041 strb.w r2, [r3, #65] ; 0x41 TIM_CHANNEL_N_STATE_SET_ALL(htim, HAL_TIM_CHANNEL_STATE_READY); - 8001bbc: 687b ldr r3, [r7, #4] - 8001bbe: 2201 movs r2, #1 - 8001bc0: f883 2042 strb.w r2, [r3, #66] ; 0x42 - 8001bc4: 687b ldr r3, [r7, #4] - 8001bc6: 2201 movs r2, #1 - 8001bc8: f883 2043 strb.w r2, [r3, #67] ; 0x43 - 8001bcc: 687b ldr r3, [r7, #4] - 8001bce: 2201 movs r2, #1 - 8001bd0: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 8001bd4: 687b ldr r3, [r7, #4] - 8001bd6: 2201 movs r2, #1 - 8001bd8: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8001c38: 687b ldr r3, [r7, #4] + 8001c3a: 2201 movs r2, #1 + 8001c3c: f883 2042 strb.w r2, [r3, #66] ; 0x42 + 8001c40: 687b ldr r3, [r7, #4] + 8001c42: 2201 movs r2, #1 + 8001c44: f883 2043 strb.w r2, [r3, #67] ; 0x43 + 8001c48: 687b ldr r3, [r7, #4] + 8001c4a: 2201 movs r2, #1 + 8001c4c: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8001c50: 687b ldr r3, [r7, #4] + 8001c52: 2201 movs r2, #1 + 8001c54: f883 2045 strb.w r2, [r3, #69] ; 0x45 /* Initialize the TIM state*/ htim->State = HAL_TIM_STATE_READY; - 8001bdc: 687b ldr r3, [r7, #4] - 8001bde: 2201 movs r2, #1 - 8001be0: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8001c58: 687b ldr r3, [r7, #4] + 8001c5a: 2201 movs r2, #1 + 8001c5c: f883 203d strb.w r2, [r3, #61] ; 0x3d return HAL_OK; - 8001be4: 2300 movs r3, #0 + 8001c60: 2300 movs r3, #0 } - 8001be6: 4618 mov r0, r3 - 8001be8: 3708 adds r7, #8 - 8001bea: 46bd mov sp, r7 - 8001bec: bd80 pop {r7, pc} + 8001c62: 4618 mov r0, r3 + 8001c64: 3708 adds r7, #8 + 8001c66: 46bd mov sp, r7 + 8001c68: bd80 pop {r7, pc} -08001bee : +08001c6a : * @brief Initializes the TIM Base MSP. * @param htim TIM Base handle * @retval None */ __weak void HAL_TIM_Base_MspInit(TIM_HandleTypeDef *htim) { - 8001bee: b480 push {r7} - 8001bf0: b083 sub sp, #12 - 8001bf2: af00 add r7, sp, #0 - 8001bf4: 6078 str r0, [r7, #4] + 8001c6a: b480 push {r7} + 8001c6c: b083 sub sp, #12 + 8001c6e: af00 add r7, sp, #0 + 8001c70: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_Base_MspInit could be implemented in the user file */ } - 8001bf6: bf00 nop - 8001bf8: 370c adds r7, #12 - 8001bfa: 46bd mov sp, r7 - 8001bfc: f85d 7b04 ldr.w r7, [sp], #4 - 8001c00: 4770 bx lr + 8001c72: bf00 nop + 8001c74: 370c adds r7, #12 + 8001c76: 46bd mov sp, r7 + 8001c78: f85d 7b04 ldr.w r7, [sp], #4 + 8001c7c: 4770 bx lr ... -08001c04 : +08001c80 : * @brief Starts the TIM Base generation in interrupt mode. * @param htim TIM Base handle * @retval HAL status */ HAL_StatusTypeDef HAL_TIM_Base_Start_IT(TIM_HandleTypeDef *htim) { - 8001c04: b480 push {r7} - 8001c06: b085 sub sp, #20 - 8001c08: af00 add r7, sp, #0 - 8001c0a: 6078 str r0, [r7, #4] + 8001c80: b480 push {r7} + 8001c82: b085 sub sp, #20 + 8001c84: af00 add r7, sp, #0 + 8001c86: 6078 str r0, [r7, #4] /* Check the parameters */ assert_param(IS_TIM_INSTANCE(htim->Instance)); /* Check the TIM state */ if (htim->State != HAL_TIM_STATE_READY) - 8001c0c: 687b ldr r3, [r7, #4] - 8001c0e: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8001c12: b2db uxtb r3, r3 - 8001c14: 2b01 cmp r3, #1 - 8001c16: d001 beq.n 8001c1c + 8001c88: 687b ldr r3, [r7, #4] + 8001c8a: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8001c8e: b2db uxtb r3, r3 + 8001c90: 2b01 cmp r3, #1 + 8001c92: d001 beq.n 8001c98 { return HAL_ERROR; - 8001c18: 2301 movs r3, #1 - 8001c1a: e044 b.n 8001ca6 + 8001c94: 2301 movs r3, #1 + 8001c96: e044 b.n 8001d22 } /* Set the TIM state */ htim->State = HAL_TIM_STATE_BUSY; - 8001c1c: 687b ldr r3, [r7, #4] - 8001c1e: 2202 movs r2, #2 - 8001c20: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8001c98: 687b ldr r3, [r7, #4] + 8001c9a: 2202 movs r2, #2 + 8001c9c: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Enable the TIM Update interrupt */ __HAL_TIM_ENABLE_IT(htim, TIM_IT_UPDATE); - 8001c24: 687b ldr r3, [r7, #4] - 8001c26: 681b ldr r3, [r3, #0] - 8001c28: 68da ldr r2, [r3, #12] - 8001c2a: 687b ldr r3, [r7, #4] - 8001c2c: 681b ldr r3, [r3, #0] - 8001c2e: f042 0201 orr.w r2, r2, #1 - 8001c32: 60da str r2, [r3, #12] + 8001ca0: 687b ldr r3, [r7, #4] + 8001ca2: 681b ldr r3, [r3, #0] + 8001ca4: 68da ldr r2, [r3, #12] + 8001ca6: 687b ldr r3, [r7, #4] + 8001ca8: 681b ldr r3, [r3, #0] + 8001caa: f042 0201 orr.w r2, r2, #1 + 8001cae: 60da str r2, [r3, #12] /* Enable the Peripheral, except in trigger mode where enable is automatically done with trigger */ if (IS_TIM_SLAVE_INSTANCE(htim->Instance)) - 8001c34: 687b ldr r3, [r7, #4] - 8001c36: 681b ldr r3, [r3, #0] - 8001c38: 4a1e ldr r2, [pc, #120] ; (8001cb4 ) - 8001c3a: 4293 cmp r3, r2 - 8001c3c: d018 beq.n 8001c70 - 8001c3e: 687b ldr r3, [r7, #4] - 8001c40: 681b ldr r3, [r3, #0] - 8001c42: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8001c46: d013 beq.n 8001c70 - 8001c48: 687b ldr r3, [r7, #4] - 8001c4a: 681b ldr r3, [r3, #0] - 8001c4c: 4a1a ldr r2, [pc, #104] ; (8001cb8 ) - 8001c4e: 4293 cmp r3, r2 - 8001c50: d00e beq.n 8001c70 - 8001c52: 687b ldr r3, [r7, #4] - 8001c54: 681b ldr r3, [r3, #0] - 8001c56: 4a19 ldr r2, [pc, #100] ; (8001cbc ) - 8001c58: 4293 cmp r3, r2 - 8001c5a: d009 beq.n 8001c70 - 8001c5c: 687b ldr r3, [r7, #4] - 8001c5e: 681b ldr r3, [r3, #0] - 8001c60: 4a17 ldr r2, [pc, #92] ; (8001cc0 ) - 8001c62: 4293 cmp r3, r2 - 8001c64: d004 beq.n 8001c70 - 8001c66: 687b ldr r3, [r7, #4] - 8001c68: 681b ldr r3, [r3, #0] - 8001c6a: 4a16 ldr r2, [pc, #88] ; (8001cc4 ) - 8001c6c: 4293 cmp r3, r2 - 8001c6e: d111 bne.n 8001c94 + 8001cb0: 687b ldr r3, [r7, #4] + 8001cb2: 681b ldr r3, [r3, #0] + 8001cb4: 4a1e ldr r2, [pc, #120] ; (8001d30 ) + 8001cb6: 4293 cmp r3, r2 + 8001cb8: d018 beq.n 8001cec + 8001cba: 687b ldr r3, [r7, #4] + 8001cbc: 681b ldr r3, [r3, #0] + 8001cbe: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8001cc2: d013 beq.n 8001cec + 8001cc4: 687b ldr r3, [r7, #4] + 8001cc6: 681b ldr r3, [r3, #0] + 8001cc8: 4a1a ldr r2, [pc, #104] ; (8001d34 ) + 8001cca: 4293 cmp r3, r2 + 8001ccc: d00e beq.n 8001cec + 8001cce: 687b ldr r3, [r7, #4] + 8001cd0: 681b ldr r3, [r3, #0] + 8001cd2: 4a19 ldr r2, [pc, #100] ; (8001d38 ) + 8001cd4: 4293 cmp r3, r2 + 8001cd6: d009 beq.n 8001cec + 8001cd8: 687b ldr r3, [r7, #4] + 8001cda: 681b ldr r3, [r3, #0] + 8001cdc: 4a17 ldr r2, [pc, #92] ; (8001d3c ) + 8001cde: 4293 cmp r3, r2 + 8001ce0: d004 beq.n 8001cec + 8001ce2: 687b ldr r3, [r7, #4] + 8001ce4: 681b ldr r3, [r3, #0] + 8001ce6: 4a16 ldr r2, [pc, #88] ; (8001d40 ) + 8001ce8: 4293 cmp r3, r2 + 8001cea: d111 bne.n 8001d10 { tmpsmcr = htim->Instance->SMCR & TIM_SMCR_SMS; - 8001c70: 687b ldr r3, [r7, #4] - 8001c72: 681b ldr r3, [r3, #0] - 8001c74: 689b ldr r3, [r3, #8] - 8001c76: f003 0307 and.w r3, r3, #7 - 8001c7a: 60fb str r3, [r7, #12] + 8001cec: 687b ldr r3, [r7, #4] + 8001cee: 681b ldr r3, [r3, #0] + 8001cf0: 689b ldr r3, [r3, #8] + 8001cf2: f003 0307 and.w r3, r3, #7 + 8001cf6: 60fb str r3, [r7, #12] if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 8001c7c: 68fb ldr r3, [r7, #12] - 8001c7e: 2b06 cmp r3, #6 - 8001c80: d010 beq.n 8001ca4 + 8001cf8: 68fb ldr r3, [r7, #12] + 8001cfa: 2b06 cmp r3, #6 + 8001cfc: d010 beq.n 8001d20 { __HAL_TIM_ENABLE(htim); - 8001c82: 687b ldr r3, [r7, #4] - 8001c84: 681b ldr r3, [r3, #0] - 8001c86: 681a ldr r2, [r3, #0] - 8001c88: 687b ldr r3, [r7, #4] - 8001c8a: 681b ldr r3, [r3, #0] - 8001c8c: f042 0201 orr.w r2, r2, #1 - 8001c90: 601a str r2, [r3, #0] + 8001cfe: 687b ldr r3, [r7, #4] + 8001d00: 681b ldr r3, [r3, #0] + 8001d02: 681a ldr r2, [r3, #0] + 8001d04: 687b ldr r3, [r7, #4] + 8001d06: 681b ldr r3, [r3, #0] + 8001d08: f042 0201 orr.w r2, r2, #1 + 8001d0c: 601a str r2, [r3, #0] if (!IS_TIM_SLAVEMODE_TRIGGER_ENABLED(tmpsmcr)) - 8001c92: e007 b.n 8001ca4 + 8001d0e: e007 b.n 8001d20 } } else { __HAL_TIM_ENABLE(htim); - 8001c94: 687b ldr r3, [r7, #4] - 8001c96: 681b ldr r3, [r3, #0] - 8001c98: 681a ldr r2, [r3, #0] - 8001c9a: 687b ldr r3, [r7, #4] - 8001c9c: 681b ldr r3, [r3, #0] - 8001c9e: f042 0201 orr.w r2, r2, #1 - 8001ca2: 601a str r2, [r3, #0] + 8001d10: 687b ldr r3, [r7, #4] + 8001d12: 681b ldr r3, [r3, #0] + 8001d14: 681a ldr r2, [r3, #0] + 8001d16: 687b ldr r3, [r7, #4] + 8001d18: 681b ldr r3, [r3, #0] + 8001d1a: f042 0201 orr.w r2, r2, #1 + 8001d1e: 601a str r2, [r3, #0] } /* Return function status */ return HAL_OK; - 8001ca4: 2300 movs r3, #0 + 8001d20: 2300 movs r3, #0 } - 8001ca6: 4618 mov r0, r3 - 8001ca8: 3714 adds r7, #20 - 8001caa: 46bd mov sp, r7 - 8001cac: f85d 7b04 ldr.w r7, [sp], #4 - 8001cb0: 4770 bx lr - 8001cb2: bf00 nop - 8001cb4: 40010000 .word 0x40010000 - 8001cb8: 40000400 .word 0x40000400 - 8001cbc: 40000800 .word 0x40000800 - 8001cc0: 40000c00 .word 0x40000c00 - 8001cc4: 40014000 .word 0x40014000 + 8001d22: 4618 mov r0, r3 + 8001d24: 3714 adds r7, #20 + 8001d26: 46bd mov sp, r7 + 8001d28: f85d 7b04 ldr.w r7, [sp], #4 + 8001d2c: 4770 bx lr + 8001d2e: bf00 nop + 8001d30: 40010000 .word 0x40010000 + 8001d34: 40000400 .word 0x40000400 + 8001d38: 40000800 .word 0x40000800 + 8001d3c: 40000c00 .word 0x40000c00 + 8001d40: 40014000 .word 0x40014000 -08001cc8 : +08001d44 : * @brief This function handles TIM interrupts requests. * @param htim TIM handle * @retval None */ void HAL_TIM_IRQHandler(TIM_HandleTypeDef *htim) { - 8001cc8: b580 push {r7, lr} - 8001cca: b082 sub sp, #8 - 8001ccc: af00 add r7, sp, #0 - 8001cce: 6078 str r0, [r7, #4] + 8001d44: b580 push {r7, lr} + 8001d46: b082 sub sp, #8 + 8001d48: af00 add r7, sp, #0 + 8001d4a: 6078 str r0, [r7, #4] /* Capture compare 1 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC1) != RESET) - 8001cd0: 687b ldr r3, [r7, #4] - 8001cd2: 681b ldr r3, [r3, #0] - 8001cd4: 691b ldr r3, [r3, #16] - 8001cd6: f003 0302 and.w r3, r3, #2 - 8001cda: 2b02 cmp r3, #2 - 8001cdc: d122 bne.n 8001d24 + 8001d4c: 687b ldr r3, [r7, #4] + 8001d4e: 681b ldr r3, [r3, #0] + 8001d50: 691b ldr r3, [r3, #16] + 8001d52: f003 0302 and.w r3, r3, #2 + 8001d56: 2b02 cmp r3, #2 + 8001d58: d122 bne.n 8001da0 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC1) != RESET) - 8001cde: 687b ldr r3, [r7, #4] - 8001ce0: 681b ldr r3, [r3, #0] - 8001ce2: 68db ldr r3, [r3, #12] - 8001ce4: f003 0302 and.w r3, r3, #2 - 8001ce8: 2b02 cmp r3, #2 - 8001cea: d11b bne.n 8001d24 + 8001d5a: 687b ldr r3, [r7, #4] + 8001d5c: 681b ldr r3, [r3, #0] + 8001d5e: 68db ldr r3, [r3, #12] + 8001d60: f003 0302 and.w r3, r3, #2 + 8001d64: 2b02 cmp r3, #2 + 8001d66: d11b bne.n 8001da0 { { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC1); - 8001cec: 687b ldr r3, [r7, #4] - 8001cee: 681b ldr r3, [r3, #0] - 8001cf0: f06f 0202 mvn.w r2, #2 - 8001cf4: 611a str r2, [r3, #16] + 8001d68: 687b ldr r3, [r7, #4] + 8001d6a: 681b ldr r3, [r3, #0] + 8001d6c: f06f 0202 mvn.w r2, #2 + 8001d70: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_1; - 8001cf6: 687b ldr r3, [r7, #4] - 8001cf8: 2201 movs r2, #1 - 8001cfa: 771a strb r2, [r3, #28] + 8001d72: 687b ldr r3, [r7, #4] + 8001d74: 2201 movs r2, #1 + 8001d76: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC1S) != 0x00U) - 8001cfc: 687b ldr r3, [r7, #4] - 8001cfe: 681b ldr r3, [r3, #0] - 8001d00: 699b ldr r3, [r3, #24] - 8001d02: f003 0303 and.w r3, r3, #3 - 8001d06: 2b00 cmp r3, #0 - 8001d08: d003 beq.n 8001d12 + 8001d78: 687b ldr r3, [r7, #4] + 8001d7a: 681b ldr r3, [r3, #0] + 8001d7c: 699b ldr r3, [r3, #24] + 8001d7e: f003 0303 and.w r3, r3, #3 + 8001d82: 2b00 cmp r3, #0 + 8001d84: d003 beq.n 8001d8e { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8001d0a: 6878 ldr r0, [r7, #4] - 8001d0c: f000 f8ee bl 8001eec - 8001d10: e005 b.n 8001d1e + 8001d86: 6878 ldr r0, [r7, #4] + 8001d88: f000 f8ee bl 8001f68 + 8001d8c: e005 b.n 8001d9a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8001d12: 6878 ldr r0, [r7, #4] - 8001d14: f000 f8e0 bl 8001ed8 + 8001d8e: 6878 ldr r0, [r7, #4] + 8001d90: f000 f8e0 bl 8001f54 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8001d18: 6878 ldr r0, [r7, #4] - 8001d1a: f000 f8f1 bl 8001f00 + 8001d94: 6878 ldr r0, [r7, #4] + 8001d96: f000 f8f1 bl 8001f7c #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8001d1e: 687b ldr r3, [r7, #4] - 8001d20: 2200 movs r2, #0 - 8001d22: 771a strb r2, [r3, #28] + 8001d9a: 687b ldr r3, [r7, #4] + 8001d9c: 2200 movs r2, #0 + 8001d9e: 771a strb r2, [r3, #28] } } } /* Capture compare 2 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC2) != RESET) - 8001d24: 687b ldr r3, [r7, #4] - 8001d26: 681b ldr r3, [r3, #0] - 8001d28: 691b ldr r3, [r3, #16] - 8001d2a: f003 0304 and.w r3, r3, #4 - 8001d2e: 2b04 cmp r3, #4 - 8001d30: d122 bne.n 8001d78 + 8001da0: 687b ldr r3, [r7, #4] + 8001da2: 681b ldr r3, [r3, #0] + 8001da4: 691b ldr r3, [r3, #16] + 8001da6: f003 0304 and.w r3, r3, #4 + 8001daa: 2b04 cmp r3, #4 + 8001dac: d122 bne.n 8001df4 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC2) != RESET) - 8001d32: 687b ldr r3, [r7, #4] - 8001d34: 681b ldr r3, [r3, #0] - 8001d36: 68db ldr r3, [r3, #12] - 8001d38: f003 0304 and.w r3, r3, #4 - 8001d3c: 2b04 cmp r3, #4 - 8001d3e: d11b bne.n 8001d78 + 8001dae: 687b ldr r3, [r7, #4] + 8001db0: 681b ldr r3, [r3, #0] + 8001db2: 68db ldr r3, [r3, #12] + 8001db4: f003 0304 and.w r3, r3, #4 + 8001db8: 2b04 cmp r3, #4 + 8001dba: d11b bne.n 8001df4 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC2); - 8001d40: 687b ldr r3, [r7, #4] - 8001d42: 681b ldr r3, [r3, #0] - 8001d44: f06f 0204 mvn.w r2, #4 - 8001d48: 611a str r2, [r3, #16] + 8001dbc: 687b ldr r3, [r7, #4] + 8001dbe: 681b ldr r3, [r3, #0] + 8001dc0: f06f 0204 mvn.w r2, #4 + 8001dc4: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_2; - 8001d4a: 687b ldr r3, [r7, #4] - 8001d4c: 2202 movs r2, #2 - 8001d4e: 771a strb r2, [r3, #28] + 8001dc6: 687b ldr r3, [r7, #4] + 8001dc8: 2202 movs r2, #2 + 8001dca: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR1 & TIM_CCMR1_CC2S) != 0x00U) - 8001d50: 687b ldr r3, [r7, #4] - 8001d52: 681b ldr r3, [r3, #0] - 8001d54: 699b ldr r3, [r3, #24] - 8001d56: f403 7340 and.w r3, r3, #768 ; 0x300 - 8001d5a: 2b00 cmp r3, #0 - 8001d5c: d003 beq.n 8001d66 + 8001dcc: 687b ldr r3, [r7, #4] + 8001dce: 681b ldr r3, [r3, #0] + 8001dd0: 699b ldr r3, [r3, #24] + 8001dd2: f403 7340 and.w r3, r3, #768 ; 0x300 + 8001dd6: 2b00 cmp r3, #0 + 8001dd8: d003 beq.n 8001de2 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8001d5e: 6878 ldr r0, [r7, #4] - 8001d60: f000 f8c4 bl 8001eec - 8001d64: e005 b.n 8001d72 + 8001dda: 6878 ldr r0, [r7, #4] + 8001ddc: f000 f8c4 bl 8001f68 + 8001de0: e005 b.n 8001dee { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8001d66: 6878 ldr r0, [r7, #4] - 8001d68: f000 f8b6 bl 8001ed8 + 8001de2: 6878 ldr r0, [r7, #4] + 8001de4: f000 f8b6 bl 8001f54 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8001d6c: 6878 ldr r0, [r7, #4] - 8001d6e: f000 f8c7 bl 8001f00 + 8001de8: 6878 ldr r0, [r7, #4] + 8001dea: f000 f8c7 bl 8001f7c #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8001d72: 687b ldr r3, [r7, #4] - 8001d74: 2200 movs r2, #0 - 8001d76: 771a strb r2, [r3, #28] + 8001dee: 687b ldr r3, [r7, #4] + 8001df0: 2200 movs r2, #0 + 8001df2: 771a strb r2, [r3, #28] } } /* Capture compare 3 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC3) != RESET) - 8001d78: 687b ldr r3, [r7, #4] - 8001d7a: 681b ldr r3, [r3, #0] - 8001d7c: 691b ldr r3, [r3, #16] - 8001d7e: f003 0308 and.w r3, r3, #8 - 8001d82: 2b08 cmp r3, #8 - 8001d84: d122 bne.n 8001dcc + 8001df4: 687b ldr r3, [r7, #4] + 8001df6: 681b ldr r3, [r3, #0] + 8001df8: 691b ldr r3, [r3, #16] + 8001dfa: f003 0308 and.w r3, r3, #8 + 8001dfe: 2b08 cmp r3, #8 + 8001e00: d122 bne.n 8001e48 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC3) != RESET) - 8001d86: 687b ldr r3, [r7, #4] - 8001d88: 681b ldr r3, [r3, #0] - 8001d8a: 68db ldr r3, [r3, #12] - 8001d8c: f003 0308 and.w r3, r3, #8 - 8001d90: 2b08 cmp r3, #8 - 8001d92: d11b bne.n 8001dcc + 8001e02: 687b ldr r3, [r7, #4] + 8001e04: 681b ldr r3, [r3, #0] + 8001e06: 68db ldr r3, [r3, #12] + 8001e08: f003 0308 and.w r3, r3, #8 + 8001e0c: 2b08 cmp r3, #8 + 8001e0e: d11b bne.n 8001e48 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC3); - 8001d94: 687b ldr r3, [r7, #4] - 8001d96: 681b ldr r3, [r3, #0] - 8001d98: f06f 0208 mvn.w r2, #8 - 8001d9c: 611a str r2, [r3, #16] + 8001e10: 687b ldr r3, [r7, #4] + 8001e12: 681b ldr r3, [r3, #0] + 8001e14: f06f 0208 mvn.w r2, #8 + 8001e18: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_3; - 8001d9e: 687b ldr r3, [r7, #4] - 8001da0: 2204 movs r2, #4 - 8001da2: 771a strb r2, [r3, #28] + 8001e1a: 687b ldr r3, [r7, #4] + 8001e1c: 2204 movs r2, #4 + 8001e1e: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC3S) != 0x00U) - 8001da4: 687b ldr r3, [r7, #4] - 8001da6: 681b ldr r3, [r3, #0] - 8001da8: 69db ldr r3, [r3, #28] - 8001daa: f003 0303 and.w r3, r3, #3 - 8001dae: 2b00 cmp r3, #0 - 8001db0: d003 beq.n 8001dba + 8001e20: 687b ldr r3, [r7, #4] + 8001e22: 681b ldr r3, [r3, #0] + 8001e24: 69db ldr r3, [r3, #28] + 8001e26: f003 0303 and.w r3, r3, #3 + 8001e2a: 2b00 cmp r3, #0 + 8001e2c: d003 beq.n 8001e36 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8001db2: 6878 ldr r0, [r7, #4] - 8001db4: f000 f89a bl 8001eec - 8001db8: e005 b.n 8001dc6 + 8001e2e: 6878 ldr r0, [r7, #4] + 8001e30: f000 f89a bl 8001f68 + 8001e34: e005 b.n 8001e42 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8001dba: 6878 ldr r0, [r7, #4] - 8001dbc: f000 f88c bl 8001ed8 + 8001e36: 6878 ldr r0, [r7, #4] + 8001e38: f000 f88c bl 8001f54 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8001dc0: 6878 ldr r0, [r7, #4] - 8001dc2: f000 f89d bl 8001f00 + 8001e3c: 6878 ldr r0, [r7, #4] + 8001e3e: f000 f89d bl 8001f7c #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8001dc6: 687b ldr r3, [r7, #4] - 8001dc8: 2200 movs r2, #0 - 8001dca: 771a strb r2, [r3, #28] + 8001e42: 687b ldr r3, [r7, #4] + 8001e44: 2200 movs r2, #0 + 8001e46: 771a strb r2, [r3, #28] } } /* Capture compare 4 event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_CC4) != RESET) - 8001dcc: 687b ldr r3, [r7, #4] - 8001dce: 681b ldr r3, [r3, #0] - 8001dd0: 691b ldr r3, [r3, #16] - 8001dd2: f003 0310 and.w r3, r3, #16 - 8001dd6: 2b10 cmp r3, #16 - 8001dd8: d122 bne.n 8001e20 + 8001e48: 687b ldr r3, [r7, #4] + 8001e4a: 681b ldr r3, [r3, #0] + 8001e4c: 691b ldr r3, [r3, #16] + 8001e4e: f003 0310 and.w r3, r3, #16 + 8001e52: 2b10 cmp r3, #16 + 8001e54: d122 bne.n 8001e9c { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_CC4) != RESET) - 8001dda: 687b ldr r3, [r7, #4] - 8001ddc: 681b ldr r3, [r3, #0] - 8001dde: 68db ldr r3, [r3, #12] - 8001de0: f003 0310 and.w r3, r3, #16 - 8001de4: 2b10 cmp r3, #16 - 8001de6: d11b bne.n 8001e20 + 8001e56: 687b ldr r3, [r7, #4] + 8001e58: 681b ldr r3, [r3, #0] + 8001e5a: 68db ldr r3, [r3, #12] + 8001e5c: f003 0310 and.w r3, r3, #16 + 8001e60: 2b10 cmp r3, #16 + 8001e62: d11b bne.n 8001e9c { __HAL_TIM_CLEAR_IT(htim, TIM_IT_CC4); - 8001de8: 687b ldr r3, [r7, #4] - 8001dea: 681b ldr r3, [r3, #0] - 8001dec: f06f 0210 mvn.w r2, #16 - 8001df0: 611a str r2, [r3, #16] + 8001e64: 687b ldr r3, [r7, #4] + 8001e66: 681b ldr r3, [r3, #0] + 8001e68: f06f 0210 mvn.w r2, #16 + 8001e6c: 611a str r2, [r3, #16] htim->Channel = HAL_TIM_ACTIVE_CHANNEL_4; - 8001df2: 687b ldr r3, [r7, #4] - 8001df4: 2208 movs r2, #8 - 8001df6: 771a strb r2, [r3, #28] + 8001e6e: 687b ldr r3, [r7, #4] + 8001e70: 2208 movs r2, #8 + 8001e72: 771a strb r2, [r3, #28] /* Input capture event */ if ((htim->Instance->CCMR2 & TIM_CCMR2_CC4S) != 0x00U) - 8001df8: 687b ldr r3, [r7, #4] - 8001dfa: 681b ldr r3, [r3, #0] - 8001dfc: 69db ldr r3, [r3, #28] - 8001dfe: f403 7340 and.w r3, r3, #768 ; 0x300 - 8001e02: 2b00 cmp r3, #0 - 8001e04: d003 beq.n 8001e0e + 8001e74: 687b ldr r3, [r7, #4] + 8001e76: 681b ldr r3, [r3, #0] + 8001e78: 69db ldr r3, [r3, #28] + 8001e7a: f403 7340 and.w r3, r3, #768 ; 0x300 + 8001e7e: 2b00 cmp r3, #0 + 8001e80: d003 beq.n 8001e8a { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->IC_CaptureCallback(htim); #else HAL_TIM_IC_CaptureCallback(htim); - 8001e06: 6878 ldr r0, [r7, #4] - 8001e08: f000 f870 bl 8001eec - 8001e0c: e005 b.n 8001e1a + 8001e82: 6878 ldr r0, [r7, #4] + 8001e84: f000 f870 bl 8001f68 + 8001e88: e005 b.n 8001e96 { #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->OC_DelayElapsedCallback(htim); htim->PWM_PulseFinishedCallback(htim); #else HAL_TIM_OC_DelayElapsedCallback(htim); - 8001e0e: 6878 ldr r0, [r7, #4] - 8001e10: f000 f862 bl 8001ed8 + 8001e8a: 6878 ldr r0, [r7, #4] + 8001e8c: f000 f862 bl 8001f54 HAL_TIM_PWM_PulseFinishedCallback(htim); - 8001e14: 6878 ldr r0, [r7, #4] - 8001e16: f000 f873 bl 8001f00 + 8001e90: 6878 ldr r0, [r7, #4] + 8001e92: f000 f873 bl 8001f7c #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } htim->Channel = HAL_TIM_ACTIVE_CHANNEL_CLEARED; - 8001e1a: 687b ldr r3, [r7, #4] - 8001e1c: 2200 movs r2, #0 - 8001e1e: 771a strb r2, [r3, #28] + 8001e96: 687b ldr r3, [r7, #4] + 8001e98: 2200 movs r2, #0 + 8001e9a: 771a strb r2, [r3, #28] } } /* TIM Update event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_UPDATE) != RESET) - 8001e20: 687b ldr r3, [r7, #4] - 8001e22: 681b ldr r3, [r3, #0] - 8001e24: 691b ldr r3, [r3, #16] - 8001e26: f003 0301 and.w r3, r3, #1 - 8001e2a: 2b01 cmp r3, #1 - 8001e2c: d10e bne.n 8001e4c + 8001e9c: 687b ldr r3, [r7, #4] + 8001e9e: 681b ldr r3, [r3, #0] + 8001ea0: 691b ldr r3, [r3, #16] + 8001ea2: f003 0301 and.w r3, r3, #1 + 8001ea6: 2b01 cmp r3, #1 + 8001ea8: d10e bne.n 8001ec8 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_UPDATE) != RESET) - 8001e2e: 687b ldr r3, [r7, #4] - 8001e30: 681b ldr r3, [r3, #0] - 8001e32: 68db ldr r3, [r3, #12] - 8001e34: f003 0301 and.w r3, r3, #1 - 8001e38: 2b01 cmp r3, #1 - 8001e3a: d107 bne.n 8001e4c + 8001eaa: 687b ldr r3, [r7, #4] + 8001eac: 681b ldr r3, [r3, #0] + 8001eae: 68db ldr r3, [r3, #12] + 8001eb0: f003 0301 and.w r3, r3, #1 + 8001eb4: 2b01 cmp r3, #1 + 8001eb6: d107 bne.n 8001ec8 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_UPDATE); - 8001e3c: 687b ldr r3, [r7, #4] - 8001e3e: 681b ldr r3, [r3, #0] - 8001e40: f06f 0201 mvn.w r2, #1 - 8001e44: 611a str r2, [r3, #16] + 8001eb8: 687b ldr r3, [r7, #4] + 8001eba: 681b ldr r3, [r3, #0] + 8001ebc: f06f 0201 mvn.w r2, #1 + 8001ec0: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->PeriodElapsedCallback(htim); #else HAL_TIM_PeriodElapsedCallback(htim); - 8001e46: 6878 ldr r0, [r7, #4] - 8001e48: f7fe fd84 bl 8000954 + 8001ec2: 6878 ldr r0, [r7, #4] + 8001ec4: f7fe fd84 bl 80009d0 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Break input event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_BREAK) != RESET) - 8001e4c: 687b ldr r3, [r7, #4] - 8001e4e: 681b ldr r3, [r3, #0] - 8001e50: 691b ldr r3, [r3, #16] - 8001e52: f003 0380 and.w r3, r3, #128 ; 0x80 - 8001e56: 2b80 cmp r3, #128 ; 0x80 - 8001e58: d10e bne.n 8001e78 + 8001ec8: 687b ldr r3, [r7, #4] + 8001eca: 681b ldr r3, [r3, #0] + 8001ecc: 691b ldr r3, [r3, #16] + 8001ece: f003 0380 and.w r3, r3, #128 ; 0x80 + 8001ed2: 2b80 cmp r3, #128 ; 0x80 + 8001ed4: d10e bne.n 8001ef4 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_BREAK) != RESET) - 8001e5a: 687b ldr r3, [r7, #4] - 8001e5c: 681b ldr r3, [r3, #0] - 8001e5e: 68db ldr r3, [r3, #12] - 8001e60: f003 0380 and.w r3, r3, #128 ; 0x80 - 8001e64: 2b80 cmp r3, #128 ; 0x80 - 8001e66: d107 bne.n 8001e78 + 8001ed6: 687b ldr r3, [r7, #4] + 8001ed8: 681b ldr r3, [r3, #0] + 8001eda: 68db ldr r3, [r3, #12] + 8001edc: f003 0380 and.w r3, r3, #128 ; 0x80 + 8001ee0: 2b80 cmp r3, #128 ; 0x80 + 8001ee2: d107 bne.n 8001ef4 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_BREAK); - 8001e68: 687b ldr r3, [r7, #4] - 8001e6a: 681b ldr r3, [r3, #0] - 8001e6c: f06f 0280 mvn.w r2, #128 ; 0x80 - 8001e70: 611a str r2, [r3, #16] + 8001ee4: 687b ldr r3, [r7, #4] + 8001ee6: 681b ldr r3, [r3, #0] + 8001ee8: f06f 0280 mvn.w r2, #128 ; 0x80 + 8001eec: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->BreakCallback(htim); #else HAL_TIMEx_BreakCallback(htim); - 8001e72: 6878 ldr r0, [r7, #4] - 8001e74: f000 f8e2 bl 800203c + 8001eee: 6878 ldr r0, [r7, #4] + 8001ef0: f000 f8e2 bl 80020b8 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM Trigger detection event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_TRIGGER) != RESET) - 8001e78: 687b ldr r3, [r7, #4] - 8001e7a: 681b ldr r3, [r3, #0] - 8001e7c: 691b ldr r3, [r3, #16] - 8001e7e: f003 0340 and.w r3, r3, #64 ; 0x40 - 8001e82: 2b40 cmp r3, #64 ; 0x40 - 8001e84: d10e bne.n 8001ea4 + 8001ef4: 687b ldr r3, [r7, #4] + 8001ef6: 681b ldr r3, [r3, #0] + 8001ef8: 691b ldr r3, [r3, #16] + 8001efa: f003 0340 and.w r3, r3, #64 ; 0x40 + 8001efe: 2b40 cmp r3, #64 ; 0x40 + 8001f00: d10e bne.n 8001f20 { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_TRIGGER) != RESET) - 8001e86: 687b ldr r3, [r7, #4] - 8001e88: 681b ldr r3, [r3, #0] - 8001e8a: 68db ldr r3, [r3, #12] - 8001e8c: f003 0340 and.w r3, r3, #64 ; 0x40 - 8001e90: 2b40 cmp r3, #64 ; 0x40 - 8001e92: d107 bne.n 8001ea4 + 8001f02: 687b ldr r3, [r7, #4] + 8001f04: 681b ldr r3, [r3, #0] + 8001f06: 68db ldr r3, [r3, #12] + 8001f08: f003 0340 and.w r3, r3, #64 ; 0x40 + 8001f0c: 2b40 cmp r3, #64 ; 0x40 + 8001f0e: d107 bne.n 8001f20 { __HAL_TIM_CLEAR_IT(htim, TIM_IT_TRIGGER); - 8001e94: 687b ldr r3, [r7, #4] - 8001e96: 681b ldr r3, [r3, #0] - 8001e98: f06f 0240 mvn.w r2, #64 ; 0x40 - 8001e9c: 611a str r2, [r3, #16] + 8001f10: 687b ldr r3, [r7, #4] + 8001f12: 681b ldr r3, [r3, #0] + 8001f14: f06f 0240 mvn.w r2, #64 ; 0x40 + 8001f18: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->TriggerCallback(htim); #else HAL_TIM_TriggerCallback(htim); - 8001e9e: 6878 ldr r0, [r7, #4] - 8001ea0: f000 f838 bl 8001f14 + 8001f1a: 6878 ldr r0, [r7, #4] + 8001f1c: f000 f838 bl 8001f90 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } /* TIM commutation event */ if (__HAL_TIM_GET_FLAG(htim, TIM_FLAG_COM) != RESET) - 8001ea4: 687b ldr r3, [r7, #4] - 8001ea6: 681b ldr r3, [r3, #0] - 8001ea8: 691b ldr r3, [r3, #16] - 8001eaa: f003 0320 and.w r3, r3, #32 - 8001eae: 2b20 cmp r3, #32 - 8001eb0: d10e bne.n 8001ed0 + 8001f20: 687b ldr r3, [r7, #4] + 8001f22: 681b ldr r3, [r3, #0] + 8001f24: 691b ldr r3, [r3, #16] + 8001f26: f003 0320 and.w r3, r3, #32 + 8001f2a: 2b20 cmp r3, #32 + 8001f2c: d10e bne.n 8001f4c { if (__HAL_TIM_GET_IT_SOURCE(htim, TIM_IT_COM) != RESET) - 8001eb2: 687b ldr r3, [r7, #4] - 8001eb4: 681b ldr r3, [r3, #0] - 8001eb6: 68db ldr r3, [r3, #12] - 8001eb8: f003 0320 and.w r3, r3, #32 - 8001ebc: 2b20 cmp r3, #32 - 8001ebe: d107 bne.n 8001ed0 + 8001f2e: 687b ldr r3, [r7, #4] + 8001f30: 681b ldr r3, [r3, #0] + 8001f32: 68db ldr r3, [r3, #12] + 8001f34: f003 0320 and.w r3, r3, #32 + 8001f38: 2b20 cmp r3, #32 + 8001f3a: d107 bne.n 8001f4c { __HAL_TIM_CLEAR_IT(htim, TIM_FLAG_COM); - 8001ec0: 687b ldr r3, [r7, #4] - 8001ec2: 681b ldr r3, [r3, #0] - 8001ec4: f06f 0220 mvn.w r2, #32 - 8001ec8: 611a str r2, [r3, #16] + 8001f3c: 687b ldr r3, [r7, #4] + 8001f3e: 681b ldr r3, [r3, #0] + 8001f40: f06f 0220 mvn.w r2, #32 + 8001f44: 611a str r2, [r3, #16] #if (USE_HAL_TIM_REGISTER_CALLBACKS == 1) htim->CommutationCallback(htim); #else HAL_TIMEx_CommutCallback(htim); - 8001eca: 6878 ldr r0, [r7, #4] - 8001ecc: f000 f8ac bl 8002028 + 8001f46: 6878 ldr r0, [r7, #4] + 8001f48: f000 f8ac bl 80020a4 #endif /* USE_HAL_TIM_REGISTER_CALLBACKS */ } } } - 8001ed0: bf00 nop - 8001ed2: 3708 adds r7, #8 - 8001ed4: 46bd mov sp, r7 - 8001ed6: bd80 pop {r7, pc} + 8001f4c: bf00 nop + 8001f4e: 3708 adds r7, #8 + 8001f50: 46bd mov sp, r7 + 8001f52: bd80 pop {r7, pc} -08001ed8 : +08001f54 : * @brief Output Compare callback in non-blocking mode * @param htim TIM OC handle * @retval None */ __weak void HAL_TIM_OC_DelayElapsedCallback(TIM_HandleTypeDef *htim) { - 8001ed8: b480 push {r7} - 8001eda: b083 sub sp, #12 - 8001edc: af00 add r7, sp, #0 - 8001ede: 6078 str r0, [r7, #4] + 8001f54: b480 push {r7} + 8001f56: b083 sub sp, #12 + 8001f58: af00 add r7, sp, #0 + 8001f5a: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_OC_DelayElapsedCallback could be implemented in the user file */ } - 8001ee0: bf00 nop - 8001ee2: 370c adds r7, #12 - 8001ee4: 46bd mov sp, r7 - 8001ee6: f85d 7b04 ldr.w r7, [sp], #4 - 8001eea: 4770 bx lr + 8001f5c: bf00 nop + 8001f5e: 370c adds r7, #12 + 8001f60: 46bd mov sp, r7 + 8001f62: f85d 7b04 ldr.w r7, [sp], #4 + 8001f66: 4770 bx lr -08001eec : +08001f68 : * @brief Input Capture callback in non-blocking mode * @param htim TIM IC handle * @retval None */ __weak void HAL_TIM_IC_CaptureCallback(TIM_HandleTypeDef *htim) { - 8001eec: b480 push {r7} - 8001eee: b083 sub sp, #12 - 8001ef0: af00 add r7, sp, #0 - 8001ef2: 6078 str r0, [r7, #4] + 8001f68: b480 push {r7} + 8001f6a: b083 sub sp, #12 + 8001f6c: af00 add r7, sp, #0 + 8001f6e: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_IC_CaptureCallback could be implemented in the user file */ } - 8001ef4: bf00 nop - 8001ef6: 370c adds r7, #12 - 8001ef8: 46bd mov sp, r7 - 8001efa: f85d 7b04 ldr.w r7, [sp], #4 - 8001efe: 4770 bx lr + 8001f70: bf00 nop + 8001f72: 370c adds r7, #12 + 8001f74: 46bd mov sp, r7 + 8001f76: f85d 7b04 ldr.w r7, [sp], #4 + 8001f7a: 4770 bx lr -08001f00 : +08001f7c : * @brief PWM Pulse finished callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_PWM_PulseFinishedCallback(TIM_HandleTypeDef *htim) { - 8001f00: b480 push {r7} - 8001f02: b083 sub sp, #12 - 8001f04: af00 add r7, sp, #0 - 8001f06: 6078 str r0, [r7, #4] + 8001f7c: b480 push {r7} + 8001f7e: b083 sub sp, #12 + 8001f80: af00 add r7, sp, #0 + 8001f82: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_PWM_PulseFinishedCallback could be implemented in the user file */ } - 8001f08: bf00 nop - 8001f0a: 370c adds r7, #12 - 8001f0c: 46bd mov sp, r7 - 8001f0e: f85d 7b04 ldr.w r7, [sp], #4 - 8001f12: 4770 bx lr + 8001f84: bf00 nop + 8001f86: 370c adds r7, #12 + 8001f88: 46bd mov sp, r7 + 8001f8a: f85d 7b04 ldr.w r7, [sp], #4 + 8001f8e: 4770 bx lr -08001f14 : +08001f90 : * @brief Hall Trigger detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIM_TriggerCallback(TIM_HandleTypeDef *htim) { - 8001f14: b480 push {r7} - 8001f16: b083 sub sp, #12 - 8001f18: af00 add r7, sp, #0 - 8001f1a: 6078 str r0, [r7, #4] + 8001f90: b480 push {r7} + 8001f92: b083 sub sp, #12 + 8001f94: af00 add r7, sp, #0 + 8001f96: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIM_TriggerCallback could be implemented in the user file */ } - 8001f1c: bf00 nop - 8001f1e: 370c adds r7, #12 - 8001f20: 46bd mov sp, r7 - 8001f22: f85d 7b04 ldr.w r7, [sp], #4 - 8001f26: 4770 bx lr + 8001f98: bf00 nop + 8001f9a: 370c adds r7, #12 + 8001f9c: 46bd mov sp, r7 + 8001f9e: f85d 7b04 ldr.w r7, [sp], #4 + 8001fa2: 4770 bx lr -08001f28 : +08001fa4 : * @param TIMx TIM peripheral * @param Structure TIM Base configuration structure * @retval None */ void TIM_Base_SetConfig(TIM_TypeDef *TIMx, TIM_Base_InitTypeDef *Structure) { - 8001f28: b480 push {r7} - 8001f2a: b085 sub sp, #20 - 8001f2c: af00 add r7, sp, #0 - 8001f2e: 6078 str r0, [r7, #4] - 8001f30: 6039 str r1, [r7, #0] + 8001fa4: b480 push {r7} + 8001fa6: b085 sub sp, #20 + 8001fa8: af00 add r7, sp, #0 + 8001faa: 6078 str r0, [r7, #4] + 8001fac: 6039 str r1, [r7, #0] uint32_t tmpcr1; tmpcr1 = TIMx->CR1; - 8001f32: 687b ldr r3, [r7, #4] - 8001f34: 681b ldr r3, [r3, #0] - 8001f36: 60fb str r3, [r7, #12] + 8001fae: 687b ldr r3, [r7, #4] + 8001fb0: 681b ldr r3, [r3, #0] + 8001fb2: 60fb str r3, [r7, #12] /* Set TIM Time Base Unit parameters ---------------------------------------*/ if (IS_TIM_COUNTER_MODE_SELECT_INSTANCE(TIMx)) - 8001f38: 687b ldr r3, [r7, #4] - 8001f3a: 4a34 ldr r2, [pc, #208] ; (800200c ) - 8001f3c: 4293 cmp r3, r2 - 8001f3e: d00f beq.n 8001f60 - 8001f40: 687b ldr r3, [r7, #4] - 8001f42: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8001f46: d00b beq.n 8001f60 - 8001f48: 687b ldr r3, [r7, #4] - 8001f4a: 4a31 ldr r2, [pc, #196] ; (8002010 ) - 8001f4c: 4293 cmp r3, r2 - 8001f4e: d007 beq.n 8001f60 - 8001f50: 687b ldr r3, [r7, #4] - 8001f52: 4a30 ldr r2, [pc, #192] ; (8002014 ) - 8001f54: 4293 cmp r3, r2 - 8001f56: d003 beq.n 8001f60 - 8001f58: 687b ldr r3, [r7, #4] - 8001f5a: 4a2f ldr r2, [pc, #188] ; (8002018 ) - 8001f5c: 4293 cmp r3, r2 - 8001f5e: d108 bne.n 8001f72 + 8001fb4: 687b ldr r3, [r7, #4] + 8001fb6: 4a34 ldr r2, [pc, #208] ; (8002088 ) + 8001fb8: 4293 cmp r3, r2 + 8001fba: d00f beq.n 8001fdc + 8001fbc: 687b ldr r3, [r7, #4] + 8001fbe: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8001fc2: d00b beq.n 8001fdc + 8001fc4: 687b ldr r3, [r7, #4] + 8001fc6: 4a31 ldr r2, [pc, #196] ; (800208c ) + 8001fc8: 4293 cmp r3, r2 + 8001fca: d007 beq.n 8001fdc + 8001fcc: 687b ldr r3, [r7, #4] + 8001fce: 4a30 ldr r2, [pc, #192] ; (8002090 ) + 8001fd0: 4293 cmp r3, r2 + 8001fd2: d003 beq.n 8001fdc + 8001fd4: 687b ldr r3, [r7, #4] + 8001fd6: 4a2f ldr r2, [pc, #188] ; (8002094 ) + 8001fd8: 4293 cmp r3, r2 + 8001fda: d108 bne.n 8001fee { /* Select the Counter Mode */ tmpcr1 &= ~(TIM_CR1_DIR | TIM_CR1_CMS); - 8001f60: 68fb ldr r3, [r7, #12] - 8001f62: f023 0370 bic.w r3, r3, #112 ; 0x70 - 8001f66: 60fb str r3, [r7, #12] + 8001fdc: 68fb ldr r3, [r7, #12] + 8001fde: f023 0370 bic.w r3, r3, #112 ; 0x70 + 8001fe2: 60fb str r3, [r7, #12] tmpcr1 |= Structure->CounterMode; - 8001f68: 683b ldr r3, [r7, #0] - 8001f6a: 685b ldr r3, [r3, #4] - 8001f6c: 68fa ldr r2, [r7, #12] - 8001f6e: 4313 orrs r3, r2 - 8001f70: 60fb str r3, [r7, #12] + 8001fe4: 683b ldr r3, [r7, #0] + 8001fe6: 685b ldr r3, [r3, #4] + 8001fe8: 68fa ldr r2, [r7, #12] + 8001fea: 4313 orrs r3, r2 + 8001fec: 60fb str r3, [r7, #12] } if (IS_TIM_CLOCK_DIVISION_INSTANCE(TIMx)) - 8001f72: 687b ldr r3, [r7, #4] - 8001f74: 4a25 ldr r2, [pc, #148] ; (800200c ) - 8001f76: 4293 cmp r3, r2 - 8001f78: d01b beq.n 8001fb2 - 8001f7a: 687b ldr r3, [r7, #4] - 8001f7c: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 - 8001f80: d017 beq.n 8001fb2 - 8001f82: 687b ldr r3, [r7, #4] - 8001f84: 4a22 ldr r2, [pc, #136] ; (8002010 ) - 8001f86: 4293 cmp r3, r2 - 8001f88: d013 beq.n 8001fb2 - 8001f8a: 687b ldr r3, [r7, #4] - 8001f8c: 4a21 ldr r2, [pc, #132] ; (8002014 ) - 8001f8e: 4293 cmp r3, r2 - 8001f90: d00f beq.n 8001fb2 - 8001f92: 687b ldr r3, [r7, #4] - 8001f94: 4a20 ldr r2, [pc, #128] ; (8002018 ) - 8001f96: 4293 cmp r3, r2 - 8001f98: d00b beq.n 8001fb2 - 8001f9a: 687b ldr r3, [r7, #4] - 8001f9c: 4a1f ldr r2, [pc, #124] ; (800201c ) - 8001f9e: 4293 cmp r3, r2 - 8001fa0: d007 beq.n 8001fb2 - 8001fa2: 687b ldr r3, [r7, #4] - 8001fa4: 4a1e ldr r2, [pc, #120] ; (8002020 ) - 8001fa6: 4293 cmp r3, r2 - 8001fa8: d003 beq.n 8001fb2 - 8001faa: 687b ldr r3, [r7, #4] - 8001fac: 4a1d ldr r2, [pc, #116] ; (8002024 ) - 8001fae: 4293 cmp r3, r2 - 8001fb0: d108 bne.n 8001fc4 + 8001fee: 687b ldr r3, [r7, #4] + 8001ff0: 4a25 ldr r2, [pc, #148] ; (8002088 ) + 8001ff2: 4293 cmp r3, r2 + 8001ff4: d01b beq.n 800202e + 8001ff6: 687b ldr r3, [r7, #4] + 8001ff8: f1b3 4f80 cmp.w r3, #1073741824 ; 0x40000000 + 8001ffc: d017 beq.n 800202e + 8001ffe: 687b ldr r3, [r7, #4] + 8002000: 4a22 ldr r2, [pc, #136] ; (800208c ) + 8002002: 4293 cmp r3, r2 + 8002004: d013 beq.n 800202e + 8002006: 687b ldr r3, [r7, #4] + 8002008: 4a21 ldr r2, [pc, #132] ; (8002090 ) + 800200a: 4293 cmp r3, r2 + 800200c: d00f beq.n 800202e + 800200e: 687b ldr r3, [r7, #4] + 8002010: 4a20 ldr r2, [pc, #128] ; (8002094 ) + 8002012: 4293 cmp r3, r2 + 8002014: d00b beq.n 800202e + 8002016: 687b ldr r3, [r7, #4] + 8002018: 4a1f ldr r2, [pc, #124] ; (8002098 ) + 800201a: 4293 cmp r3, r2 + 800201c: d007 beq.n 800202e + 800201e: 687b ldr r3, [r7, #4] + 8002020: 4a1e ldr r2, [pc, #120] ; (800209c ) + 8002022: 4293 cmp r3, r2 + 8002024: d003 beq.n 800202e + 8002026: 687b ldr r3, [r7, #4] + 8002028: 4a1d ldr r2, [pc, #116] ; (80020a0 ) + 800202a: 4293 cmp r3, r2 + 800202c: d108 bne.n 8002040 { /* Set the clock division */ tmpcr1 &= ~TIM_CR1_CKD; - 8001fb2: 68fb ldr r3, [r7, #12] - 8001fb4: f423 7340 bic.w r3, r3, #768 ; 0x300 - 8001fb8: 60fb str r3, [r7, #12] + 800202e: 68fb ldr r3, [r7, #12] + 8002030: f423 7340 bic.w r3, r3, #768 ; 0x300 + 8002034: 60fb str r3, [r7, #12] tmpcr1 |= (uint32_t)Structure->ClockDivision; - 8001fba: 683b ldr r3, [r7, #0] - 8001fbc: 68db ldr r3, [r3, #12] - 8001fbe: 68fa ldr r2, [r7, #12] - 8001fc0: 4313 orrs r3, r2 - 8001fc2: 60fb str r3, [r7, #12] + 8002036: 683b ldr r3, [r7, #0] + 8002038: 68db ldr r3, [r3, #12] + 800203a: 68fa ldr r2, [r7, #12] + 800203c: 4313 orrs r3, r2 + 800203e: 60fb str r3, [r7, #12] } /* Set the auto-reload preload */ MODIFY_REG(tmpcr1, TIM_CR1_ARPE, Structure->AutoReloadPreload); - 8001fc4: 68fb ldr r3, [r7, #12] - 8001fc6: f023 0280 bic.w r2, r3, #128 ; 0x80 - 8001fca: 683b ldr r3, [r7, #0] - 8001fcc: 695b ldr r3, [r3, #20] - 8001fce: 4313 orrs r3, r2 - 8001fd0: 60fb str r3, [r7, #12] + 8002040: 68fb ldr r3, [r7, #12] + 8002042: f023 0280 bic.w r2, r3, #128 ; 0x80 + 8002046: 683b ldr r3, [r7, #0] + 8002048: 695b ldr r3, [r3, #20] + 800204a: 4313 orrs r3, r2 + 800204c: 60fb str r3, [r7, #12] TIMx->CR1 = tmpcr1; - 8001fd2: 687b ldr r3, [r7, #4] - 8001fd4: 68fa ldr r2, [r7, #12] - 8001fd6: 601a str r2, [r3, #0] + 800204e: 687b ldr r3, [r7, #4] + 8002050: 68fa ldr r2, [r7, #12] + 8002052: 601a str r2, [r3, #0] /* Set the Autoreload value */ TIMx->ARR = (uint32_t)Structure->Period ; - 8001fd8: 683b ldr r3, [r7, #0] - 8001fda: 689a ldr r2, [r3, #8] - 8001fdc: 687b ldr r3, [r7, #4] - 8001fde: 62da str r2, [r3, #44] ; 0x2c + 8002054: 683b ldr r3, [r7, #0] + 8002056: 689a ldr r2, [r3, #8] + 8002058: 687b ldr r3, [r7, #4] + 800205a: 62da str r2, [r3, #44] ; 0x2c /* Set the Prescaler value */ TIMx->PSC = Structure->Prescaler; - 8001fe0: 683b ldr r3, [r7, #0] - 8001fe2: 681a ldr r2, [r3, #0] - 8001fe4: 687b ldr r3, [r7, #4] - 8001fe6: 629a str r2, [r3, #40] ; 0x28 + 800205c: 683b ldr r3, [r7, #0] + 800205e: 681a ldr r2, [r3, #0] + 8002060: 687b ldr r3, [r7, #4] + 8002062: 629a str r2, [r3, #40] ; 0x28 if (IS_TIM_REPETITION_COUNTER_INSTANCE(TIMx)) - 8001fe8: 687b ldr r3, [r7, #4] - 8001fea: 4a08 ldr r2, [pc, #32] ; (800200c ) - 8001fec: 4293 cmp r3, r2 - 8001fee: d103 bne.n 8001ff8 + 8002064: 687b ldr r3, [r7, #4] + 8002066: 4a08 ldr r2, [pc, #32] ; (8002088 ) + 8002068: 4293 cmp r3, r2 + 800206a: d103 bne.n 8002074 { /* Set the Repetition Counter value */ TIMx->RCR = Structure->RepetitionCounter; - 8001ff0: 683b ldr r3, [r7, #0] - 8001ff2: 691a ldr r2, [r3, #16] - 8001ff4: 687b ldr r3, [r7, #4] - 8001ff6: 631a str r2, [r3, #48] ; 0x30 + 800206c: 683b ldr r3, [r7, #0] + 800206e: 691a ldr r2, [r3, #16] + 8002070: 687b ldr r3, [r7, #4] + 8002072: 631a str r2, [r3, #48] ; 0x30 } /* Generate an update event to reload the Prescaler and the repetition counter (only for advanced timer) value immediately */ TIMx->EGR = TIM_EGR_UG; - 8001ff8: 687b ldr r3, [r7, #4] - 8001ffa: 2201 movs r2, #1 - 8001ffc: 615a str r2, [r3, #20] + 8002074: 687b ldr r3, [r7, #4] + 8002076: 2201 movs r2, #1 + 8002078: 615a str r2, [r3, #20] } - 8001ffe: bf00 nop - 8002000: 3714 adds r7, #20 - 8002002: 46bd mov sp, r7 - 8002004: f85d 7b04 ldr.w r7, [sp], #4 - 8002008: 4770 bx lr - 800200a: bf00 nop - 800200c: 40010000 .word 0x40010000 - 8002010: 40000400 .word 0x40000400 - 8002014: 40000800 .word 0x40000800 - 8002018: 40000c00 .word 0x40000c00 - 800201c: 40014000 .word 0x40014000 - 8002020: 40014400 .word 0x40014400 - 8002024: 40014800 .word 0x40014800 + 800207a: bf00 nop + 800207c: 3714 adds r7, #20 + 800207e: 46bd mov sp, r7 + 8002080: f85d 7b04 ldr.w r7, [sp], #4 + 8002084: 4770 bx lr + 8002086: bf00 nop + 8002088: 40010000 .word 0x40010000 + 800208c: 40000400 .word 0x40000400 + 8002090: 40000800 .word 0x40000800 + 8002094: 40000c00 .word 0x40000c00 + 8002098: 40014000 .word 0x40014000 + 800209c: 40014400 .word 0x40014400 + 80020a0: 40014800 .word 0x40014800 -08002028 : +080020a4 : * @brief Hall commutation changed callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim) { - 8002028: b480 push {r7} - 800202a: b083 sub sp, #12 - 800202c: af00 add r7, sp, #0 - 800202e: 6078 str r0, [r7, #4] + 80020a4: b480 push {r7} + 80020a6: b083 sub sp, #12 + 80020a8: af00 add r7, sp, #0 + 80020aa: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIMEx_CommutCallback could be implemented in the user file */ } - 8002030: bf00 nop - 8002032: 370c adds r7, #12 - 8002034: 46bd mov sp, r7 - 8002036: f85d 7b04 ldr.w r7, [sp], #4 - 800203a: 4770 bx lr + 80020ac: bf00 nop + 80020ae: 370c adds r7, #12 + 80020b0: 46bd mov sp, r7 + 80020b2: f85d 7b04 ldr.w r7, [sp], #4 + 80020b6: 4770 bx lr -0800203c : +080020b8 : * @brief Hall Break detection callback in non-blocking mode * @param htim TIM handle * @retval None */ __weak void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim) { - 800203c: b480 push {r7} - 800203e: b083 sub sp, #12 - 8002040: af00 add r7, sp, #0 - 8002042: 6078 str r0, [r7, #4] + 80020b8: b480 push {r7} + 80020ba: b083 sub sp, #12 + 80020bc: af00 add r7, sp, #0 + 80020be: 6078 str r0, [r7, #4] UNUSED(htim); /* NOTE : This function should not be modified, when the callback is needed, the HAL_TIMEx_BreakCallback could be implemented in the user file */ } - 8002044: bf00 nop - 8002046: 370c adds r7, #12 - 8002048: 46bd mov sp, r7 - 800204a: f85d 7b04 ldr.w r7, [sp], #4 - 800204e: 4770 bx lr + 80020c0: bf00 nop + 80020c2: 370c adds r7, #12 + 80020c4: 46bd mov sp, r7 + 80020c6: f85d 7b04 ldr.w r7, [sp], #4 + 80020ca: 4770 bx lr -08002050 : +080020cc : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Init(UART_HandleTypeDef *huart) { - 8002050: b580 push {r7, lr} - 8002052: b082 sub sp, #8 - 8002054: af00 add r7, sp, #0 - 8002056: 6078 str r0, [r7, #4] + 80020cc: b580 push {r7, lr} + 80020ce: b082 sub sp, #8 + 80020d0: af00 add r7, sp, #0 + 80020d2: 6078 str r0, [r7, #4] /* Check the UART handle allocation */ if (huart == NULL) - 8002058: 687b ldr r3, [r7, #4] - 800205a: 2b00 cmp r3, #0 - 800205c: d101 bne.n 8002062 + 80020d4: 687b ldr r3, [r7, #4] + 80020d6: 2b00 cmp r3, #0 + 80020d8: d101 bne.n 80020de { return HAL_ERROR; - 800205e: 2301 movs r3, #1 - 8002060: e03f b.n 80020e2 + 80020da: 2301 movs r3, #1 + 80020dc: e03f b.n 800215e assert_param(IS_UART_INSTANCE(huart->Instance)); } assert_param(IS_UART_WORD_LENGTH(huart->Init.WordLength)); assert_param(IS_UART_OVERSAMPLING(huart->Init.OverSampling)); if (huart->gState == HAL_UART_STATE_RESET) - 8002062: 687b ldr r3, [r7, #4] - 8002064: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002068: b2db uxtb r3, r3 - 800206a: 2b00 cmp r3, #0 - 800206c: d106 bne.n 800207c + 80020de: 687b ldr r3, [r7, #4] + 80020e0: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 80020e4: b2db uxtb r3, r3 + 80020e6: 2b00 cmp r3, #0 + 80020e8: d106 bne.n 80020f8 { /* Allocate lock resource and initialize it */ huart->Lock = HAL_UNLOCKED; - 800206e: 687b ldr r3, [r7, #4] - 8002070: 2200 movs r2, #0 - 8002072: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80020ea: 687b ldr r3, [r7, #4] + 80020ec: 2200 movs r2, #0 + 80020ee: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Init the low level hardware */ huart->MspInitCallback(huart); #else /* Init the low level hardware : GPIO, CLOCK */ HAL_UART_MspInit(huart); - 8002076: 6878 ldr r0, [r7, #4] - 8002078: f7fe fcb0 bl 80009dc + 80020f2: 6878 ldr r0, [r7, #4] + 80020f4: f7fe fcb0 bl 8000a58 #endif /* (USE_HAL_UART_REGISTER_CALLBACKS) */ } huart->gState = HAL_UART_STATE_BUSY; - 800207c: 687b ldr r3, [r7, #4] - 800207e: 2224 movs r2, #36 ; 0x24 - 8002080: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80020f8: 687b ldr r3, [r7, #4] + 80020fa: 2224 movs r2, #36 ; 0x24 + 80020fc: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Disable the peripheral */ __HAL_UART_DISABLE(huart); - 8002084: 687b ldr r3, [r7, #4] - 8002086: 681b ldr r3, [r3, #0] - 8002088: 68da ldr r2, [r3, #12] - 800208a: 687b ldr r3, [r7, #4] - 800208c: 681b ldr r3, [r3, #0] - 800208e: f422 5200 bic.w r2, r2, #8192 ; 0x2000 - 8002092: 60da str r2, [r3, #12] + 8002100: 687b ldr r3, [r7, #4] + 8002102: 681b ldr r3, [r3, #0] + 8002104: 68da ldr r2, [r3, #12] + 8002106: 687b ldr r3, [r7, #4] + 8002108: 681b ldr r3, [r3, #0] + 800210a: f422 5200 bic.w r2, r2, #8192 ; 0x2000 + 800210e: 60da str r2, [r3, #12] /* Set the UART Communication parameters */ UART_SetConfig(huart); - 8002094: 6878 ldr r0, [r7, #4] - 8002096: f000 f9cb bl 8002430 + 8002110: 6878 ldr r0, [r7, #4] + 8002112: f000 f9cb bl 80024ac /* In asynchronous mode, the following bits must be kept cleared: - LINEN and CLKEN bits in the USART_CR2 register, - SCEN, HDSEL and IREN bits in the USART_CR3 register.*/ CLEAR_BIT(huart->Instance->CR2, (USART_CR2_LINEN | USART_CR2_CLKEN)); - 800209a: 687b ldr r3, [r7, #4] - 800209c: 681b ldr r3, [r3, #0] - 800209e: 691a ldr r2, [r3, #16] - 80020a0: 687b ldr r3, [r7, #4] - 80020a2: 681b ldr r3, [r3, #0] - 80020a4: f422 4290 bic.w r2, r2, #18432 ; 0x4800 - 80020a8: 611a str r2, [r3, #16] + 8002116: 687b ldr r3, [r7, #4] + 8002118: 681b ldr r3, [r3, #0] + 800211a: 691a ldr r2, [r3, #16] + 800211c: 687b ldr r3, [r7, #4] + 800211e: 681b ldr r3, [r3, #0] + 8002120: f422 4290 bic.w r2, r2, #18432 ; 0x4800 + 8002124: 611a str r2, [r3, #16] CLEAR_BIT(huart->Instance->CR3, (USART_CR3_SCEN | USART_CR3_HDSEL | USART_CR3_IREN)); - 80020aa: 687b ldr r3, [r7, #4] - 80020ac: 681b ldr r3, [r3, #0] - 80020ae: 695a ldr r2, [r3, #20] - 80020b0: 687b ldr r3, [r7, #4] - 80020b2: 681b ldr r3, [r3, #0] - 80020b4: f022 022a bic.w r2, r2, #42 ; 0x2a - 80020b8: 615a str r2, [r3, #20] + 8002126: 687b ldr r3, [r7, #4] + 8002128: 681b ldr r3, [r3, #0] + 800212a: 695a ldr r2, [r3, #20] + 800212c: 687b ldr r3, [r7, #4] + 800212e: 681b ldr r3, [r3, #0] + 8002130: f022 022a bic.w r2, r2, #42 ; 0x2a + 8002134: 615a str r2, [r3, #20] /* Enable the peripheral */ __HAL_UART_ENABLE(huart); - 80020ba: 687b ldr r3, [r7, #4] - 80020bc: 681b ldr r3, [r3, #0] - 80020be: 68da ldr r2, [r3, #12] - 80020c0: 687b ldr r3, [r7, #4] - 80020c2: 681b ldr r3, [r3, #0] - 80020c4: f442 5200 orr.w r2, r2, #8192 ; 0x2000 - 80020c8: 60da str r2, [r3, #12] + 8002136: 687b ldr r3, [r7, #4] + 8002138: 681b ldr r3, [r3, #0] + 800213a: 68da ldr r2, [r3, #12] + 800213c: 687b ldr r3, [r7, #4] + 800213e: 681b ldr r3, [r3, #0] + 8002140: f442 5200 orr.w r2, r2, #8192 ; 0x2000 + 8002144: 60da str r2, [r3, #12] /* Initialize the UART state */ huart->ErrorCode = HAL_UART_ERROR_NONE; - 80020ca: 687b ldr r3, [r7, #4] - 80020cc: 2200 movs r2, #0 - 80020ce: 641a str r2, [r3, #64] ; 0x40 + 8002146: 687b ldr r3, [r7, #4] + 8002148: 2200 movs r2, #0 + 800214a: 641a str r2, [r3, #64] ; 0x40 huart->gState = HAL_UART_STATE_READY; - 80020d0: 687b ldr r3, [r7, #4] - 80020d2: 2220 movs r2, #32 - 80020d4: f883 203d strb.w r2, [r3, #61] ; 0x3d + 800214c: 687b ldr r3, [r7, #4] + 800214e: 2220 movs r2, #32 + 8002150: f883 203d strb.w r2, [r3, #61] ; 0x3d huart->RxState = HAL_UART_STATE_READY; - 80020d8: 687b ldr r3, [r7, #4] - 80020da: 2220 movs r2, #32 - 80020dc: f883 203e strb.w r2, [r3, #62] ; 0x3e + 8002154: 687b ldr r3, [r7, #4] + 8002156: 2220 movs r2, #32 + 8002158: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 80020e0: 2300 movs r3, #0 + 800215c: 2300 movs r3, #0 } - 80020e2: 4618 mov r0, r3 - 80020e4: 3708 adds r7, #8 - 80020e6: 46bd mov sp, r7 - 80020e8: bd80 pop {r7, pc} + 800215e: 4618 mov r0, r3 + 8002160: 3708 adds r7, #8 + 8002162: 46bd mov sp, r7 + 8002164: bd80 pop {r7, pc} -080020ea : +08002166 : * @param Size Amount of data elements (u8 or u16) to be sent * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, const uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 80020ea: b580 push {r7, lr} - 80020ec: b08a sub sp, #40 ; 0x28 - 80020ee: af02 add r7, sp, #8 - 80020f0: 60f8 str r0, [r7, #12] - 80020f2: 60b9 str r1, [r7, #8] - 80020f4: 603b str r3, [r7, #0] - 80020f6: 4613 mov r3, r2 - 80020f8: 80fb strh r3, [r7, #6] + 8002166: b580 push {r7, lr} + 8002168: b08a sub sp, #40 ; 0x28 + 800216a: af02 add r7, sp, #8 + 800216c: 60f8 str r0, [r7, #12] + 800216e: 60b9 str r1, [r7, #8] + 8002170: 603b str r3, [r7, #0] + 8002172: 4613 mov r3, r2 + 8002174: 80fb strh r3, [r7, #6] const uint8_t *pdata8bits; const uint16_t *pdata16bits; uint32_t tickstart = 0U; - 80020fa: 2300 movs r3, #0 - 80020fc: 617b str r3, [r7, #20] + 8002176: 2300 movs r3, #0 + 8002178: 617b str r3, [r7, #20] /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) - 80020fe: 68fb ldr r3, [r7, #12] - 8002100: f893 303d ldrb.w r3, [r3, #61] ; 0x3d - 8002104: b2db uxtb r3, r3 - 8002106: 2b20 cmp r3, #32 - 8002108: d17c bne.n 8002204 + 800217a: 68fb ldr r3, [r7, #12] + 800217c: f893 303d ldrb.w r3, [r3, #61] ; 0x3d + 8002180: b2db uxtb r3, r3 + 8002182: 2b20 cmp r3, #32 + 8002184: d17c bne.n 8002280 { if ((pData == NULL) || (Size == 0U)) - 800210a: 68bb ldr r3, [r7, #8] - 800210c: 2b00 cmp r3, #0 - 800210e: d002 beq.n 8002116 - 8002110: 88fb ldrh r3, [r7, #6] - 8002112: 2b00 cmp r3, #0 - 8002114: d101 bne.n 800211a + 8002186: 68bb ldr r3, [r7, #8] + 8002188: 2b00 cmp r3, #0 + 800218a: d002 beq.n 8002192 + 800218c: 88fb ldrh r3, [r7, #6] + 800218e: 2b00 cmp r3, #0 + 8002190: d101 bne.n 8002196 { return HAL_ERROR; - 8002116: 2301 movs r3, #1 - 8002118: e075 b.n 8002206 + 8002192: 2301 movs r3, #1 + 8002194: e075 b.n 8002282 } /* Process Locked */ __HAL_LOCK(huart); - 800211a: 68fb ldr r3, [r7, #12] - 800211c: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 8002120: 2b01 cmp r3, #1 - 8002122: d101 bne.n 8002128 - 8002124: 2302 movs r3, #2 - 8002126: e06e b.n 8002206 - 8002128: 68fb ldr r3, [r7, #12] - 800212a: 2201 movs r2, #1 - 800212c: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002196: 68fb ldr r3, [r7, #12] + 8002198: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 800219c: 2b01 cmp r3, #1 + 800219e: d101 bne.n 80021a4 + 80021a0: 2302 movs r3, #2 + 80021a2: e06e b.n 8002282 + 80021a4: 68fb ldr r3, [r7, #12] + 80021a6: 2201 movs r2, #1 + 80021a8: f883 203c strb.w r2, [r3, #60] ; 0x3c huart->ErrorCode = HAL_UART_ERROR_NONE; - 8002130: 68fb ldr r3, [r7, #12] - 8002132: 2200 movs r2, #0 - 8002134: 641a str r2, [r3, #64] ; 0x40 + 80021ac: 68fb ldr r3, [r7, #12] + 80021ae: 2200 movs r2, #0 + 80021b0: 641a str r2, [r3, #64] ; 0x40 huart->gState = HAL_UART_STATE_BUSY_TX; - 8002136: 68fb ldr r3, [r7, #12] - 8002138: 2221 movs r2, #33 ; 0x21 - 800213a: f883 203d strb.w r2, [r3, #61] ; 0x3d + 80021b2: 68fb ldr r3, [r7, #12] + 80021b4: 2221 movs r2, #33 ; 0x21 + 80021b6: f883 203d strb.w r2, [r3, #61] ; 0x3d /* Init tickstart for timeout management */ tickstart = HAL_GetTick(); - 800213e: f7fe fd99 bl 8000c74 - 8002142: 6178 str r0, [r7, #20] + 80021ba: f7fe fd99 bl 8000cf0 + 80021be: 6178 str r0, [r7, #20] huart->TxXferSize = Size; - 8002144: 68fb ldr r3, [r7, #12] - 8002146: 88fa ldrh r2, [r7, #6] - 8002148: 849a strh r2, [r3, #36] ; 0x24 + 80021c0: 68fb ldr r3, [r7, #12] + 80021c2: 88fa ldrh r2, [r7, #6] + 80021c4: 849a strh r2, [r3, #36] ; 0x24 huart->TxXferCount = Size; - 800214a: 68fb ldr r3, [r7, #12] - 800214c: 88fa ldrh r2, [r7, #6] - 800214e: 84da strh r2, [r3, #38] ; 0x26 + 80021c6: 68fb ldr r3, [r7, #12] + 80021c8: 88fa ldrh r2, [r7, #6] + 80021ca: 84da strh r2, [r3, #38] ; 0x26 /* In case of 9bits/No Parity transfer, pData needs to be handled as a uint16_t pointer */ if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 8002150: 68fb ldr r3, [r7, #12] - 8002152: 689b ldr r3, [r3, #8] - 8002154: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 8002158: d108 bne.n 800216c - 800215a: 68fb ldr r3, [r7, #12] - 800215c: 691b ldr r3, [r3, #16] - 800215e: 2b00 cmp r3, #0 - 8002160: d104 bne.n 800216c + 80021cc: 68fb ldr r3, [r7, #12] + 80021ce: 689b ldr r3, [r3, #8] + 80021d0: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 80021d4: d108 bne.n 80021e8 + 80021d6: 68fb ldr r3, [r7, #12] + 80021d8: 691b ldr r3, [r3, #16] + 80021da: 2b00 cmp r3, #0 + 80021dc: d104 bne.n 80021e8 { pdata8bits = NULL; - 8002162: 2300 movs r3, #0 - 8002164: 61fb str r3, [r7, #28] + 80021de: 2300 movs r3, #0 + 80021e0: 61fb str r3, [r7, #28] pdata16bits = (const uint16_t *) pData; - 8002166: 68bb ldr r3, [r7, #8] - 8002168: 61bb str r3, [r7, #24] - 800216a: e003 b.n 8002174 + 80021e2: 68bb ldr r3, [r7, #8] + 80021e4: 61bb str r3, [r7, #24] + 80021e6: e003 b.n 80021f0 } else { pdata8bits = pData; - 800216c: 68bb ldr r3, [r7, #8] - 800216e: 61fb str r3, [r7, #28] + 80021e8: 68bb ldr r3, [r7, #8] + 80021ea: 61fb str r3, [r7, #28] pdata16bits = NULL; - 8002170: 2300 movs r3, #0 - 8002172: 61bb str r3, [r7, #24] + 80021ec: 2300 movs r3, #0 + 80021ee: 61bb str r3, [r7, #24] } /* Process Unlocked */ __HAL_UNLOCK(huart); - 8002174: 68fb ldr r3, [r7, #12] - 8002176: 2200 movs r2, #0 - 8002178: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80021f0: 68fb ldr r3, [r7, #12] + 80021f2: 2200 movs r2, #0 + 80021f4: f883 203c strb.w r2, [r3, #60] ; 0x3c while (huart->TxXferCount > 0U) - 800217c: e02a b.n 80021d4 + 80021f8: e02a b.n 8002250 { if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TXE, RESET, tickstart, Timeout) != HAL_OK) - 800217e: 683b ldr r3, [r7, #0] - 8002180: 9300 str r3, [sp, #0] - 8002182: 697b ldr r3, [r7, #20] - 8002184: 2200 movs r2, #0 - 8002186: 2180 movs r1, #128 ; 0x80 - 8002188: 68f8 ldr r0, [r7, #12] - 800218a: f000 f8e2 bl 8002352 - 800218e: 4603 mov r3, r0 - 8002190: 2b00 cmp r3, #0 - 8002192: d001 beq.n 8002198 + 80021fa: 683b ldr r3, [r7, #0] + 80021fc: 9300 str r3, [sp, #0] + 80021fe: 697b ldr r3, [r7, #20] + 8002200: 2200 movs r2, #0 + 8002202: 2180 movs r1, #128 ; 0x80 + 8002204: 68f8 ldr r0, [r7, #12] + 8002206: f000 f8e2 bl 80023ce + 800220a: 4603 mov r3, r0 + 800220c: 2b00 cmp r3, #0 + 800220e: d001 beq.n 8002214 { return HAL_TIMEOUT; - 8002194: 2303 movs r3, #3 - 8002196: e036 b.n 8002206 + 8002210: 2303 movs r3, #3 + 8002212: e036 b.n 8002282 } if (pdata8bits == NULL) - 8002198: 69fb ldr r3, [r7, #28] - 800219a: 2b00 cmp r3, #0 - 800219c: d10b bne.n 80021b6 + 8002214: 69fb ldr r3, [r7, #28] + 8002216: 2b00 cmp r3, #0 + 8002218: d10b bne.n 8002232 { huart->Instance->DR = (uint16_t)(*pdata16bits & 0x01FFU); - 800219e: 69bb ldr r3, [r7, #24] - 80021a0: 881b ldrh r3, [r3, #0] - 80021a2: 461a mov r2, r3 - 80021a4: 68fb ldr r3, [r7, #12] - 80021a6: 681b ldr r3, [r3, #0] - 80021a8: f3c2 0208 ubfx r2, r2, #0, #9 - 80021ac: 605a str r2, [r3, #4] + 800221a: 69bb ldr r3, [r7, #24] + 800221c: 881b ldrh r3, [r3, #0] + 800221e: 461a mov r2, r3 + 8002220: 68fb ldr r3, [r7, #12] + 8002222: 681b ldr r3, [r3, #0] + 8002224: f3c2 0208 ubfx r2, r2, #0, #9 + 8002228: 605a str r2, [r3, #4] pdata16bits++; - 80021ae: 69bb ldr r3, [r7, #24] - 80021b0: 3302 adds r3, #2 - 80021b2: 61bb str r3, [r7, #24] - 80021b4: e007 b.n 80021c6 + 800222a: 69bb ldr r3, [r7, #24] + 800222c: 3302 adds r3, #2 + 800222e: 61bb str r3, [r7, #24] + 8002230: e007 b.n 8002242 } else { huart->Instance->DR = (uint8_t)(*pdata8bits & 0xFFU); - 80021b6: 69fb ldr r3, [r7, #28] - 80021b8: 781a ldrb r2, [r3, #0] - 80021ba: 68fb ldr r3, [r7, #12] - 80021bc: 681b ldr r3, [r3, #0] - 80021be: 605a str r2, [r3, #4] + 8002232: 69fb ldr r3, [r7, #28] + 8002234: 781a ldrb r2, [r3, #0] + 8002236: 68fb ldr r3, [r7, #12] + 8002238: 681b ldr r3, [r3, #0] + 800223a: 605a str r2, [r3, #4] pdata8bits++; - 80021c0: 69fb ldr r3, [r7, #28] - 80021c2: 3301 adds r3, #1 - 80021c4: 61fb str r3, [r7, #28] + 800223c: 69fb ldr r3, [r7, #28] + 800223e: 3301 adds r3, #1 + 8002240: 61fb str r3, [r7, #28] } huart->TxXferCount--; - 80021c6: 68fb ldr r3, [r7, #12] - 80021c8: 8cdb ldrh r3, [r3, #38] ; 0x26 - 80021ca: b29b uxth r3, r3 - 80021cc: 3b01 subs r3, #1 - 80021ce: b29a uxth r2, r3 - 80021d0: 68fb ldr r3, [r7, #12] - 80021d2: 84da strh r2, [r3, #38] ; 0x26 + 8002242: 68fb ldr r3, [r7, #12] + 8002244: 8cdb ldrh r3, [r3, #38] ; 0x26 + 8002246: b29b uxth r3, r3 + 8002248: 3b01 subs r3, #1 + 800224a: b29a uxth r2, r3 + 800224c: 68fb ldr r3, [r7, #12] + 800224e: 84da strh r2, [r3, #38] ; 0x26 while (huart->TxXferCount > 0U) - 80021d4: 68fb ldr r3, [r7, #12] - 80021d6: 8cdb ldrh r3, [r3, #38] ; 0x26 - 80021d8: b29b uxth r3, r3 - 80021da: 2b00 cmp r3, #0 - 80021dc: d1cf bne.n 800217e + 8002250: 68fb ldr r3, [r7, #12] + 8002252: 8cdb ldrh r3, [r3, #38] ; 0x26 + 8002254: b29b uxth r3, r3 + 8002256: 2b00 cmp r3, #0 + 8002258: d1cf bne.n 80021fa } if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_TC, RESET, tickstart, Timeout) != HAL_OK) - 80021de: 683b ldr r3, [r7, #0] - 80021e0: 9300 str r3, [sp, #0] - 80021e2: 697b ldr r3, [r7, #20] - 80021e4: 2200 movs r2, #0 - 80021e6: 2140 movs r1, #64 ; 0x40 - 80021e8: 68f8 ldr r0, [r7, #12] - 80021ea: f000 f8b2 bl 8002352 - 80021ee: 4603 mov r3, r0 - 80021f0: 2b00 cmp r3, #0 - 80021f2: d001 beq.n 80021f8 + 800225a: 683b ldr r3, [r7, #0] + 800225c: 9300 str r3, [sp, #0] + 800225e: 697b ldr r3, [r7, #20] + 8002260: 2200 movs r2, #0 + 8002262: 2140 movs r1, #64 ; 0x40 + 8002264: 68f8 ldr r0, [r7, #12] + 8002266: f000 f8b2 bl 80023ce + 800226a: 4603 mov r3, r0 + 800226c: 2b00 cmp r3, #0 + 800226e: d001 beq.n 8002274 { return HAL_TIMEOUT; - 80021f4: 2303 movs r3, #3 - 80021f6: e006 b.n 8002206 + 8002270: 2303 movs r3, #3 + 8002272: e006 b.n 8002282 } /* At end of Tx process, restore huart->gState to Ready */ huart->gState = HAL_UART_STATE_READY; - 80021f8: 68fb ldr r3, [r7, #12] - 80021fa: 2220 movs r2, #32 - 80021fc: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002274: 68fb ldr r3, [r7, #12] + 8002276: 2220 movs r2, #32 + 8002278: f883 203d strb.w r2, [r3, #61] ; 0x3d return HAL_OK; - 8002200: 2300 movs r3, #0 - 8002202: e000 b.n 8002206 + 800227c: 2300 movs r3, #0 + 800227e: e000 b.n 8002282 } else { return HAL_BUSY; - 8002204: 2302 movs r3, #2 + 8002280: 2302 movs r3, #2 } } - 8002206: 4618 mov r0, r3 - 8002208: 3720 adds r7, #32 - 800220a: 46bd mov sp, r7 - 800220c: bd80 pop {r7, pc} + 8002282: 4618 mov r0, r3 + 8002284: 3720 adds r7, #32 + 8002286: 46bd mov sp, r7 + 8002288: bd80 pop {r7, pc} -0800220e : +0800228a : * @param Size Amount of data elements (u8 or u16) to be received. * @param Timeout Timeout duration * @retval HAL status */ HAL_StatusTypeDef HAL_UART_Receive(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout) { - 800220e: b580 push {r7, lr} - 8002210: b08a sub sp, #40 ; 0x28 - 8002212: af02 add r7, sp, #8 - 8002214: 60f8 str r0, [r7, #12] - 8002216: 60b9 str r1, [r7, #8] - 8002218: 603b str r3, [r7, #0] - 800221a: 4613 mov r3, r2 - 800221c: 80fb strh r3, [r7, #6] + 800228a: b580 push {r7, lr} + 800228c: b08a sub sp, #40 ; 0x28 + 800228e: af02 add r7, sp, #8 + 8002290: 60f8 str r0, [r7, #12] + 8002292: 60b9 str r1, [r7, #8] + 8002294: 603b str r3, [r7, #0] + 8002296: 4613 mov r3, r2 + 8002298: 80fb strh r3, [r7, #6] uint8_t *pdata8bits; uint16_t *pdata16bits; uint32_t tickstart = 0U; - 800221e: 2300 movs r3, #0 - 8002220: 617b str r3, [r7, #20] + 800229a: 2300 movs r3, #0 + 800229c: 617b str r3, [r7, #20] /* Check that a Rx process is not already ongoing */ if (huart->RxState == HAL_UART_STATE_READY) - 8002222: 68fb ldr r3, [r7, #12] - 8002224: f893 303e ldrb.w r3, [r3, #62] ; 0x3e - 8002228: b2db uxtb r3, r3 - 800222a: 2b20 cmp r3, #32 - 800222c: f040 808c bne.w 8002348 + 800229e: 68fb ldr r3, [r7, #12] + 80022a0: f893 303e ldrb.w r3, [r3, #62] ; 0x3e + 80022a4: b2db uxtb r3, r3 + 80022a6: 2b20 cmp r3, #32 + 80022a8: f040 808c bne.w 80023c4 { if ((pData == NULL) || (Size == 0U)) - 8002230: 68bb ldr r3, [r7, #8] - 8002232: 2b00 cmp r3, #0 - 8002234: d002 beq.n 800223c - 8002236: 88fb ldrh r3, [r7, #6] - 8002238: 2b00 cmp r3, #0 - 800223a: d101 bne.n 8002240 + 80022ac: 68bb ldr r3, [r7, #8] + 80022ae: 2b00 cmp r3, #0 + 80022b0: d002 beq.n 80022b8 + 80022b2: 88fb ldrh r3, [r7, #6] + 80022b4: 2b00 cmp r3, #0 + 80022b6: d101 bne.n 80022bc { return HAL_ERROR; - 800223c: 2301 movs r3, #1 - 800223e: e084 b.n 800234a + 80022b8: 2301 movs r3, #1 + 80022ba: e084 b.n 80023c6 } /* Process Locked */ __HAL_LOCK(huart); - 8002240: 68fb ldr r3, [r7, #12] - 8002242: f893 303c ldrb.w r3, [r3, #60] ; 0x3c - 8002246: 2b01 cmp r3, #1 - 8002248: d101 bne.n 800224e - 800224a: 2302 movs r3, #2 - 800224c: e07d b.n 800234a - 800224e: 68fb ldr r3, [r7, #12] - 8002250: 2201 movs r2, #1 - 8002252: f883 203c strb.w r2, [r3, #60] ; 0x3c + 80022bc: 68fb ldr r3, [r7, #12] + 80022be: f893 303c ldrb.w r3, [r3, #60] ; 0x3c + 80022c2: 2b01 cmp r3, #1 + 80022c4: d101 bne.n 80022ca + 80022c6: 2302 movs r3, #2 + 80022c8: e07d b.n 80023c6 + 80022ca: 68fb ldr r3, [r7, #12] + 80022cc: 2201 movs r2, #1 + 80022ce: f883 203c strb.w r2, [r3, #60] ; 0x3c huart->ErrorCode = HAL_UART_ERROR_NONE; - 8002256: 68fb ldr r3, [r7, #12] - 8002258: 2200 movs r2, #0 - 800225a: 641a str r2, [r3, #64] ; 0x40 + 80022d2: 68fb ldr r3, [r7, #12] + 80022d4: 2200 movs r2, #0 + 80022d6: 641a str r2, [r3, #64] ; 0x40 huart->RxState = HAL_UART_STATE_BUSY_RX; - 800225c: 68fb ldr r3, [r7, #12] - 800225e: 2222 movs r2, #34 ; 0x22 - 8002260: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80022d8: 68fb ldr r3, [r7, #12] + 80022da: 2222 movs r2, #34 ; 0x22 + 80022dc: f883 203e strb.w r2, [r3, #62] ; 0x3e huart->ReceptionType = HAL_UART_RECEPTION_STANDARD; - 8002264: 68fb ldr r3, [r7, #12] - 8002266: 2200 movs r2, #0 - 8002268: 631a str r2, [r3, #48] ; 0x30 + 80022e0: 68fb ldr r3, [r7, #12] + 80022e2: 2200 movs r2, #0 + 80022e4: 631a str r2, [r3, #48] ; 0x30 /* Init tickstart for timeout management */ tickstart = HAL_GetTick(); - 800226a: f7fe fd03 bl 8000c74 - 800226e: 6178 str r0, [r7, #20] + 80022e6: f7fe fd03 bl 8000cf0 + 80022ea: 6178 str r0, [r7, #20] huart->RxXferSize = Size; - 8002270: 68fb ldr r3, [r7, #12] - 8002272: 88fa ldrh r2, [r7, #6] - 8002274: 859a strh r2, [r3, #44] ; 0x2c + 80022ec: 68fb ldr r3, [r7, #12] + 80022ee: 88fa ldrh r2, [r7, #6] + 80022f0: 859a strh r2, [r3, #44] ; 0x2c huart->RxXferCount = Size; - 8002276: 68fb ldr r3, [r7, #12] - 8002278: 88fa ldrh r2, [r7, #6] - 800227a: 85da strh r2, [r3, #46] ; 0x2e + 80022f2: 68fb ldr r3, [r7, #12] + 80022f4: 88fa ldrh r2, [r7, #6] + 80022f6: 85da strh r2, [r3, #46] ; 0x2e /* In case of 9bits/No Parity transfer, pRxData needs to be handled as a uint16_t pointer */ if ((huart->Init.WordLength == UART_WORDLENGTH_9B) && (huart->Init.Parity == UART_PARITY_NONE)) - 800227c: 68fb ldr r3, [r7, #12] - 800227e: 689b ldr r3, [r3, #8] - 8002280: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 8002284: d108 bne.n 8002298 - 8002286: 68fb ldr r3, [r7, #12] - 8002288: 691b ldr r3, [r3, #16] - 800228a: 2b00 cmp r3, #0 - 800228c: d104 bne.n 8002298 + 80022f8: 68fb ldr r3, [r7, #12] + 80022fa: 689b ldr r3, [r3, #8] + 80022fc: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 8002300: d108 bne.n 8002314 + 8002302: 68fb ldr r3, [r7, #12] + 8002304: 691b ldr r3, [r3, #16] + 8002306: 2b00 cmp r3, #0 + 8002308: d104 bne.n 8002314 { pdata8bits = NULL; - 800228e: 2300 movs r3, #0 - 8002290: 61fb str r3, [r7, #28] + 800230a: 2300 movs r3, #0 + 800230c: 61fb str r3, [r7, #28] pdata16bits = (uint16_t *) pData; - 8002292: 68bb ldr r3, [r7, #8] - 8002294: 61bb str r3, [r7, #24] - 8002296: e003 b.n 80022a0 + 800230e: 68bb ldr r3, [r7, #8] + 8002310: 61bb str r3, [r7, #24] + 8002312: e003 b.n 800231c } else { pdata8bits = pData; - 8002298: 68bb ldr r3, [r7, #8] - 800229a: 61fb str r3, [r7, #28] + 8002314: 68bb ldr r3, [r7, #8] + 8002316: 61fb str r3, [r7, #28] pdata16bits = NULL; - 800229c: 2300 movs r3, #0 - 800229e: 61bb str r3, [r7, #24] + 8002318: 2300 movs r3, #0 + 800231a: 61bb str r3, [r7, #24] } /* Process Unlocked */ __HAL_UNLOCK(huart); - 80022a0: 68fb ldr r3, [r7, #12] - 80022a2: 2200 movs r2, #0 - 80022a4: f883 203c strb.w r2, [r3, #60] ; 0x3c + 800231c: 68fb ldr r3, [r7, #12] + 800231e: 2200 movs r2, #0 + 8002320: f883 203c strb.w r2, [r3, #60] ; 0x3c /* Check the remain data to be received */ while (huart->RxXferCount > 0U) - 80022a8: e043 b.n 8002332 + 8002324: e043 b.n 80023ae { if (UART_WaitOnFlagUntilTimeout(huart, UART_FLAG_RXNE, RESET, tickstart, Timeout) != HAL_OK) - 80022aa: 683b ldr r3, [r7, #0] - 80022ac: 9300 str r3, [sp, #0] - 80022ae: 697b ldr r3, [r7, #20] - 80022b0: 2200 movs r2, #0 - 80022b2: 2120 movs r1, #32 - 80022b4: 68f8 ldr r0, [r7, #12] - 80022b6: f000 f84c bl 8002352 - 80022ba: 4603 mov r3, r0 - 80022bc: 2b00 cmp r3, #0 - 80022be: d001 beq.n 80022c4 + 8002326: 683b ldr r3, [r7, #0] + 8002328: 9300 str r3, [sp, #0] + 800232a: 697b ldr r3, [r7, #20] + 800232c: 2200 movs r2, #0 + 800232e: 2120 movs r1, #32 + 8002330: 68f8 ldr r0, [r7, #12] + 8002332: f000 f84c bl 80023ce + 8002336: 4603 mov r3, r0 + 8002338: 2b00 cmp r3, #0 + 800233a: d001 beq.n 8002340 { return HAL_TIMEOUT; - 80022c0: 2303 movs r3, #3 - 80022c2: e042 b.n 800234a + 800233c: 2303 movs r3, #3 + 800233e: e042 b.n 80023c6 } if (pdata8bits == NULL) - 80022c4: 69fb ldr r3, [r7, #28] - 80022c6: 2b00 cmp r3, #0 - 80022c8: d10c bne.n 80022e4 + 8002340: 69fb ldr r3, [r7, #28] + 8002342: 2b00 cmp r3, #0 + 8002344: d10c bne.n 8002360 { *pdata16bits = (uint16_t)(huart->Instance->DR & 0x01FF); - 80022ca: 68fb ldr r3, [r7, #12] - 80022cc: 681b ldr r3, [r3, #0] - 80022ce: 685b ldr r3, [r3, #4] - 80022d0: b29b uxth r3, r3 - 80022d2: f3c3 0308 ubfx r3, r3, #0, #9 - 80022d6: b29a uxth r2, r3 - 80022d8: 69bb ldr r3, [r7, #24] - 80022da: 801a strh r2, [r3, #0] + 8002346: 68fb ldr r3, [r7, #12] + 8002348: 681b ldr r3, [r3, #0] + 800234a: 685b ldr r3, [r3, #4] + 800234c: b29b uxth r3, r3 + 800234e: f3c3 0308 ubfx r3, r3, #0, #9 + 8002352: b29a uxth r2, r3 + 8002354: 69bb ldr r3, [r7, #24] + 8002356: 801a strh r2, [r3, #0] pdata16bits++; - 80022dc: 69bb ldr r3, [r7, #24] - 80022de: 3302 adds r3, #2 - 80022e0: 61bb str r3, [r7, #24] - 80022e2: e01f b.n 8002324 + 8002358: 69bb ldr r3, [r7, #24] + 800235a: 3302 adds r3, #2 + 800235c: 61bb str r3, [r7, #24] + 800235e: e01f b.n 80023a0 } else { if ((huart->Init.WordLength == UART_WORDLENGTH_9B) || ((huart->Init.WordLength == UART_WORDLENGTH_8B) && (huart->Init.Parity == UART_PARITY_NONE))) - 80022e4: 68fb ldr r3, [r7, #12] - 80022e6: 689b ldr r3, [r3, #8] - 80022e8: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 - 80022ec: d007 beq.n 80022fe - 80022ee: 68fb ldr r3, [r7, #12] - 80022f0: 689b ldr r3, [r3, #8] - 80022f2: 2b00 cmp r3, #0 - 80022f4: d10a bne.n 800230c - 80022f6: 68fb ldr r3, [r7, #12] - 80022f8: 691b ldr r3, [r3, #16] - 80022fa: 2b00 cmp r3, #0 - 80022fc: d106 bne.n 800230c + 8002360: 68fb ldr r3, [r7, #12] + 8002362: 689b ldr r3, [r3, #8] + 8002364: f5b3 5f80 cmp.w r3, #4096 ; 0x1000 + 8002368: d007 beq.n 800237a + 800236a: 68fb ldr r3, [r7, #12] + 800236c: 689b ldr r3, [r3, #8] + 800236e: 2b00 cmp r3, #0 + 8002370: d10a bne.n 8002388 + 8002372: 68fb ldr r3, [r7, #12] + 8002374: 691b ldr r3, [r3, #16] + 8002376: 2b00 cmp r3, #0 + 8002378: d106 bne.n 8002388 { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x00FF); - 80022fe: 68fb ldr r3, [r7, #12] - 8002300: 681b ldr r3, [r3, #0] - 8002302: 685b ldr r3, [r3, #4] - 8002304: b2da uxtb r2, r3 - 8002306: 69fb ldr r3, [r7, #28] - 8002308: 701a strb r2, [r3, #0] - 800230a: e008 b.n 800231e + 800237a: 68fb ldr r3, [r7, #12] + 800237c: 681b ldr r3, [r3, #0] + 800237e: 685b ldr r3, [r3, #4] + 8002380: b2da uxtb r2, r3 + 8002382: 69fb ldr r3, [r7, #28] + 8002384: 701a strb r2, [r3, #0] + 8002386: e008 b.n 800239a } else { *pdata8bits = (uint8_t)(huart->Instance->DR & (uint8_t)0x007F); - 800230c: 68fb ldr r3, [r7, #12] - 800230e: 681b ldr r3, [r3, #0] - 8002310: 685b ldr r3, [r3, #4] - 8002312: b2db uxtb r3, r3 - 8002314: f003 037f and.w r3, r3, #127 ; 0x7f - 8002318: b2da uxtb r2, r3 - 800231a: 69fb ldr r3, [r7, #28] - 800231c: 701a strb r2, [r3, #0] + 8002388: 68fb ldr r3, [r7, #12] + 800238a: 681b ldr r3, [r3, #0] + 800238c: 685b ldr r3, [r3, #4] + 800238e: b2db uxtb r3, r3 + 8002390: f003 037f and.w r3, r3, #127 ; 0x7f + 8002394: b2da uxtb r2, r3 + 8002396: 69fb ldr r3, [r7, #28] + 8002398: 701a strb r2, [r3, #0] } pdata8bits++; - 800231e: 69fb ldr r3, [r7, #28] - 8002320: 3301 adds r3, #1 - 8002322: 61fb str r3, [r7, #28] + 800239a: 69fb ldr r3, [r7, #28] + 800239c: 3301 adds r3, #1 + 800239e: 61fb str r3, [r7, #28] } huart->RxXferCount--; - 8002324: 68fb ldr r3, [r7, #12] - 8002326: 8ddb ldrh r3, [r3, #46] ; 0x2e - 8002328: b29b uxth r3, r3 - 800232a: 3b01 subs r3, #1 - 800232c: b29a uxth r2, r3 - 800232e: 68fb ldr r3, [r7, #12] - 8002330: 85da strh r2, [r3, #46] ; 0x2e + 80023a0: 68fb ldr r3, [r7, #12] + 80023a2: 8ddb ldrh r3, [r3, #46] ; 0x2e + 80023a4: b29b uxth r3, r3 + 80023a6: 3b01 subs r3, #1 + 80023a8: b29a uxth r2, r3 + 80023aa: 68fb ldr r3, [r7, #12] + 80023ac: 85da strh r2, [r3, #46] ; 0x2e while (huart->RxXferCount > 0U) - 8002332: 68fb ldr r3, [r7, #12] - 8002334: 8ddb ldrh r3, [r3, #46] ; 0x2e - 8002336: b29b uxth r3, r3 - 8002338: 2b00 cmp r3, #0 - 800233a: d1b6 bne.n 80022aa + 80023ae: 68fb ldr r3, [r7, #12] + 80023b0: 8ddb ldrh r3, [r3, #46] ; 0x2e + 80023b2: b29b uxth r3, r3 + 80023b4: 2b00 cmp r3, #0 + 80023b6: d1b6 bne.n 8002326 } /* At end of Rx process, restore huart->RxState to Ready */ huart->RxState = HAL_UART_STATE_READY; - 800233c: 68fb ldr r3, [r7, #12] - 800233e: 2220 movs r2, #32 - 8002340: f883 203e strb.w r2, [r3, #62] ; 0x3e + 80023b8: 68fb ldr r3, [r7, #12] + 80023ba: 2220 movs r2, #32 + 80023bc: f883 203e strb.w r2, [r3, #62] ; 0x3e return HAL_OK; - 8002344: 2300 movs r3, #0 - 8002346: e000 b.n 800234a + 80023c0: 2300 movs r3, #0 + 80023c2: e000 b.n 80023c6 } else { return HAL_BUSY; - 8002348: 2302 movs r3, #2 + 80023c4: 2302 movs r3, #2 } } - 800234a: 4618 mov r0, r3 - 800234c: 3720 adds r7, #32 - 800234e: 46bd mov sp, r7 - 8002350: bd80 pop {r7, pc} + 80023c6: 4618 mov r0, r3 + 80023c8: 3720 adds r7, #32 + 80023ca: 46bd mov sp, r7 + 80023cc: bd80 pop {r7, pc} -08002352 : +080023ce : * @param Timeout Timeout duration * @retval HAL status */ static HAL_StatusTypeDef UART_WaitOnFlagUntilTimeout(UART_HandleTypeDef *huart, uint32_t Flag, FlagStatus Status, uint32_t Tickstart, uint32_t Timeout) { - 8002352: b580 push {r7, lr} - 8002354: b090 sub sp, #64 ; 0x40 - 8002356: af00 add r7, sp, #0 - 8002358: 60f8 str r0, [r7, #12] - 800235a: 60b9 str r1, [r7, #8] - 800235c: 603b str r3, [r7, #0] - 800235e: 4613 mov r3, r2 - 8002360: 71fb strb r3, [r7, #7] + 80023ce: b580 push {r7, lr} + 80023d0: b090 sub sp, #64 ; 0x40 + 80023d2: af00 add r7, sp, #0 + 80023d4: 60f8 str r0, [r7, #12] + 80023d6: 60b9 str r1, [r7, #8] + 80023d8: 603b str r3, [r7, #0] + 80023da: 4613 mov r3, r2 + 80023dc: 71fb strb r3, [r7, #7] /* Wait until flag is set */ while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 8002362: e050 b.n 8002406 + 80023de: e050 b.n 8002482 { /* Check for the Timeout */ if (Timeout != HAL_MAX_DELAY) - 8002364: 6cbb ldr r3, [r7, #72] ; 0x48 - 8002366: f1b3 3fff cmp.w r3, #4294967295 - 800236a: d04c beq.n 8002406 + 80023e0: 6cbb ldr r3, [r7, #72] ; 0x48 + 80023e2: f1b3 3fff cmp.w r3, #4294967295 + 80023e6: d04c beq.n 8002482 { if ((Timeout == 0U) || ((HAL_GetTick() - Tickstart) > Timeout)) - 800236c: 6cbb ldr r3, [r7, #72] ; 0x48 - 800236e: 2b00 cmp r3, #0 - 8002370: d007 beq.n 8002382 - 8002372: f7fe fc7f bl 8000c74 - 8002376: 4602 mov r2, r0 - 8002378: 683b ldr r3, [r7, #0] - 800237a: 1ad3 subs r3, r2, r3 - 800237c: 6cba ldr r2, [r7, #72] ; 0x48 - 800237e: 429a cmp r2, r3 - 8002380: d241 bcs.n 8002406 + 80023e8: 6cbb ldr r3, [r7, #72] ; 0x48 + 80023ea: 2b00 cmp r3, #0 + 80023ec: d007 beq.n 80023fe + 80023ee: f7fe fc7f bl 8000cf0 + 80023f2: 4602 mov r2, r0 + 80023f4: 683b ldr r3, [r7, #0] + 80023f6: 1ad3 subs r3, r2, r3 + 80023f8: 6cba ldr r2, [r7, #72] ; 0x48 + 80023fa: 429a cmp r2, r3 + 80023fc: d241 bcs.n 8002482 { /* Disable TXE, RXNE, PE and ERR (Frame error, noise error, overrun error) interrupts for the interrupt process */ ATOMIC_CLEAR_BIT(huart->Instance->CR1, (USART_CR1_RXNEIE | USART_CR1_PEIE | USART_CR1_TXEIE)); - 8002382: 68fb ldr r3, [r7, #12] - 8002384: 681b ldr r3, [r3, #0] - 8002386: 330c adds r3, #12 - 8002388: 62bb str r3, [r7, #40] ; 0x28 + 80023fe: 68fb ldr r3, [r7, #12] + 8002400: 681b ldr r3, [r3, #0] + 8002402: 330c adds r3, #12 + 8002404: 62bb str r3, [r7, #40] ; 0x28 */ __STATIC_FORCEINLINE uint32_t __LDREXW(volatile uint32_t *addr) { uint32_t result; __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 800238a: 6abb ldr r3, [r7, #40] ; 0x28 - 800238c: e853 3f00 ldrex r3, [r3] - 8002390: 627b str r3, [r7, #36] ; 0x24 + 8002406: 6abb ldr r3, [r7, #40] ; 0x28 + 8002408: e853 3f00 ldrex r3, [r3] + 800240c: 627b str r3, [r7, #36] ; 0x24 return(result); - 8002392: 6a7b ldr r3, [r7, #36] ; 0x24 - 8002394: f423 73d0 bic.w r3, r3, #416 ; 0x1a0 - 8002398: 63fb str r3, [r7, #60] ; 0x3c - 800239a: 68fb ldr r3, [r7, #12] - 800239c: 681b ldr r3, [r3, #0] - 800239e: 330c adds r3, #12 - 80023a0: 6bfa ldr r2, [r7, #60] ; 0x3c - 80023a2: 637a str r2, [r7, #52] ; 0x34 - 80023a4: 633b str r3, [r7, #48] ; 0x30 + 800240e: 6a7b ldr r3, [r7, #36] ; 0x24 + 8002410: f423 73d0 bic.w r3, r3, #416 ; 0x1a0 + 8002414: 63fb str r3, [r7, #60] ; 0x3c + 8002416: 68fb ldr r3, [r7, #12] + 8002418: 681b ldr r3, [r3, #0] + 800241a: 330c adds r3, #12 + 800241c: 6bfa ldr r2, [r7, #60] ; 0x3c + 800241e: 637a str r2, [r7, #52] ; 0x34 + 8002420: 633b str r3, [r7, #48] ; 0x30 */ __STATIC_FORCEINLINE uint32_t __STREXW(uint32_t value, volatile uint32_t *addr) { uint32_t result; __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80023a6: 6b39 ldr r1, [r7, #48] ; 0x30 - 80023a8: 6b7a ldr r2, [r7, #52] ; 0x34 - 80023aa: e841 2300 strex r3, r2, [r1] - 80023ae: 62fb str r3, [r7, #44] ; 0x2c + 8002422: 6b39 ldr r1, [r7, #48] ; 0x30 + 8002424: 6b7a ldr r2, [r7, #52] ; 0x34 + 8002426: e841 2300 strex r3, r2, [r1] + 800242a: 62fb str r3, [r7, #44] ; 0x2c return(result); - 80023b0: 6afb ldr r3, [r7, #44] ; 0x2c - 80023b2: 2b00 cmp r3, #0 - 80023b4: d1e5 bne.n 8002382 + 800242c: 6afb ldr r3, [r7, #44] ; 0x2c + 800242e: 2b00 cmp r3, #0 + 8002430: d1e5 bne.n 80023fe ATOMIC_CLEAR_BIT(huart->Instance->CR3, USART_CR3_EIE); - 80023b6: 68fb ldr r3, [r7, #12] - 80023b8: 681b ldr r3, [r3, #0] - 80023ba: 3314 adds r3, #20 - 80023bc: 617b str r3, [r7, #20] + 8002432: 68fb ldr r3, [r7, #12] + 8002434: 681b ldr r3, [r3, #0] + 8002436: 3314 adds r3, #20 + 8002438: 617b str r3, [r7, #20] __ASM volatile ("ldrex %0, %1" : "=r" (result) : "Q" (*addr) ); - 80023be: 697b ldr r3, [r7, #20] - 80023c0: e853 3f00 ldrex r3, [r3] - 80023c4: 613b str r3, [r7, #16] + 800243a: 697b ldr r3, [r7, #20] + 800243c: e853 3f00 ldrex r3, [r3] + 8002440: 613b str r3, [r7, #16] return(result); - 80023c6: 693b ldr r3, [r7, #16] - 80023c8: f023 0301 bic.w r3, r3, #1 - 80023cc: 63bb str r3, [r7, #56] ; 0x38 - 80023ce: 68fb ldr r3, [r7, #12] - 80023d0: 681b ldr r3, [r3, #0] - 80023d2: 3314 adds r3, #20 - 80023d4: 6bba ldr r2, [r7, #56] ; 0x38 - 80023d6: 623a str r2, [r7, #32] - 80023d8: 61fb str r3, [r7, #28] + 8002442: 693b ldr r3, [r7, #16] + 8002444: f023 0301 bic.w r3, r3, #1 + 8002448: 63bb str r3, [r7, #56] ; 0x38 + 800244a: 68fb ldr r3, [r7, #12] + 800244c: 681b ldr r3, [r3, #0] + 800244e: 3314 adds r3, #20 + 8002450: 6bba ldr r2, [r7, #56] ; 0x38 + 8002452: 623a str r2, [r7, #32] + 8002454: 61fb str r3, [r7, #28] __ASM volatile ("strex %0, %2, %1" : "=&r" (result), "=Q" (*addr) : "r" (value) ); - 80023da: 69f9 ldr r1, [r7, #28] - 80023dc: 6a3a ldr r2, [r7, #32] - 80023de: e841 2300 strex r3, r2, [r1] - 80023e2: 61bb str r3, [r7, #24] + 8002456: 69f9 ldr r1, [r7, #28] + 8002458: 6a3a ldr r2, [r7, #32] + 800245a: e841 2300 strex r3, r2, [r1] + 800245e: 61bb str r3, [r7, #24] return(result); - 80023e4: 69bb ldr r3, [r7, #24] - 80023e6: 2b00 cmp r3, #0 - 80023e8: d1e5 bne.n 80023b6 + 8002460: 69bb ldr r3, [r7, #24] + 8002462: 2b00 cmp r3, #0 + 8002464: d1e5 bne.n 8002432 huart->gState = HAL_UART_STATE_READY; - 80023ea: 68fb ldr r3, [r7, #12] - 80023ec: 2220 movs r2, #32 - 80023ee: f883 203d strb.w r2, [r3, #61] ; 0x3d + 8002466: 68fb ldr r3, [r7, #12] + 8002468: 2220 movs r2, #32 + 800246a: f883 203d strb.w r2, [r3, #61] ; 0x3d huart->RxState = HAL_UART_STATE_READY; - 80023f2: 68fb ldr r3, [r7, #12] - 80023f4: 2220 movs r2, #32 - 80023f6: f883 203e strb.w r2, [r3, #62] ; 0x3e + 800246e: 68fb ldr r3, [r7, #12] + 8002470: 2220 movs r2, #32 + 8002472: f883 203e strb.w r2, [r3, #62] ; 0x3e /* Process Unlocked */ __HAL_UNLOCK(huart); - 80023fa: 68fb ldr r3, [r7, #12] - 80023fc: 2200 movs r2, #0 - 80023fe: f883 203c strb.w r2, [r3, #60] ; 0x3c + 8002476: 68fb ldr r3, [r7, #12] + 8002478: 2200 movs r2, #0 + 800247a: f883 203c strb.w r2, [r3, #60] ; 0x3c return HAL_TIMEOUT; - 8002402: 2303 movs r3, #3 - 8002404: e00f b.n 8002426 + 800247e: 2303 movs r3, #3 + 8002480: e00f b.n 80024a2 while ((__HAL_UART_GET_FLAG(huart, Flag) ? SET : RESET) == Status) - 8002406: 68fb ldr r3, [r7, #12] - 8002408: 681b ldr r3, [r3, #0] - 800240a: 681a ldr r2, [r3, #0] - 800240c: 68bb ldr r3, [r7, #8] - 800240e: 4013 ands r3, r2 - 8002410: 68ba ldr r2, [r7, #8] - 8002412: 429a cmp r2, r3 - 8002414: bf0c ite eq - 8002416: 2301 moveq r3, #1 - 8002418: 2300 movne r3, #0 - 800241a: b2db uxtb r3, r3 - 800241c: 461a mov r2, r3 - 800241e: 79fb ldrb r3, [r7, #7] - 8002420: 429a cmp r2, r3 - 8002422: d09f beq.n 8002364 + 8002482: 68fb ldr r3, [r7, #12] + 8002484: 681b ldr r3, [r3, #0] + 8002486: 681a ldr r2, [r3, #0] + 8002488: 68bb ldr r3, [r7, #8] + 800248a: 4013 ands r3, r2 + 800248c: 68ba ldr r2, [r7, #8] + 800248e: 429a cmp r2, r3 + 8002490: bf0c ite eq + 8002492: 2301 moveq r3, #1 + 8002494: 2300 movne r3, #0 + 8002496: b2db uxtb r3, r3 + 8002498: 461a mov r2, r3 + 800249a: 79fb ldrb r3, [r7, #7] + 800249c: 429a cmp r2, r3 + 800249e: d09f beq.n 80023e0 } } } return HAL_OK; - 8002424: 2300 movs r3, #0 + 80024a0: 2300 movs r3, #0 } - 8002426: 4618 mov r0, r3 - 8002428: 3740 adds r7, #64 ; 0x40 - 800242a: 46bd mov sp, r7 - 800242c: bd80 pop {r7, pc} + 80024a2: 4618 mov r0, r3 + 80024a4: 3740 adds r7, #64 ; 0x40 + 80024a6: 46bd mov sp, r7 + 80024a8: bd80 pop {r7, pc} ... -08002430 : +080024ac : * @param huart Pointer to a UART_HandleTypeDef structure that contains * the configuration information for the specified UART module. * @retval None */ static void UART_SetConfig(UART_HandleTypeDef *huart) { - 8002430: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} - 8002434: b0c0 sub sp, #256 ; 0x100 - 8002436: af00 add r7, sp, #0 - 8002438: f8c7 00f4 str.w r0, [r7, #244] ; 0xf4 + 80024ac: e92d 4fb0 stmdb sp!, {r4, r5, r7, r8, r9, sl, fp, lr} + 80024b0: b0c0 sub sp, #256 ; 0x100 + 80024b2: af00 add r7, sp, #0 + 80024b4: f8c7 00f4 str.w r0, [r7, #244] ; 0xf4 assert_param(IS_UART_MODE(huart->Init.Mode)); /*-------------------------- USART CR2 Configuration -----------------------*/ /* Configure the UART Stop Bits: Set STOP[13:12] bits according to huart->Init.StopBits value */ MODIFY_REG(huart->Instance->CR2, USART_CR2_STOP, huart->Init.StopBits); - 800243c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002440: 681b ldr r3, [r3, #0] - 8002442: 691b ldr r3, [r3, #16] - 8002444: f423 5040 bic.w r0, r3, #12288 ; 0x3000 - 8002448: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800244c: 68d9 ldr r1, [r3, #12] - 800244e: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002452: 681a ldr r2, [r3, #0] - 8002454: ea40 0301 orr.w r3, r0, r1 - 8002458: 6113 str r3, [r2, #16] + 80024b8: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024bc: 681b ldr r3, [r3, #0] + 80024be: 691b ldr r3, [r3, #16] + 80024c0: f423 5040 bic.w r0, r3, #12288 ; 0x3000 + 80024c4: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024c8: 68d9 ldr r1, [r3, #12] + 80024ca: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024ce: 681a ldr r2, [r3, #0] + 80024d0: ea40 0301 orr.w r3, r0, r1 + 80024d4: 6113 str r3, [r2, #16] Set the M bits according to huart->Init.WordLength value Set PCE and PS bits according to huart->Init.Parity value Set TE and RE bits according to huart->Init.Mode value Set OVER8 bit according to huart->Init.OverSampling value */ tmpreg = (uint32_t)huart->Init.WordLength | huart->Init.Parity | huart->Init.Mode | huart->Init.OverSampling; - 800245a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800245e: 689a ldr r2, [r3, #8] - 8002460: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002464: 691b ldr r3, [r3, #16] - 8002466: 431a orrs r2, r3 - 8002468: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800246c: 695b ldr r3, [r3, #20] - 800246e: 431a orrs r2, r3 - 8002470: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002474: 69db ldr r3, [r3, #28] - 8002476: 4313 orrs r3, r2 - 8002478: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 + 80024d6: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024da: 689a ldr r2, [r3, #8] + 80024dc: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024e0: 691b ldr r3, [r3, #16] + 80024e2: 431a orrs r2, r3 + 80024e4: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024e8: 695b ldr r3, [r3, #20] + 80024ea: 431a orrs r2, r3 + 80024ec: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024f0: 69db ldr r3, [r3, #28] + 80024f2: 4313 orrs r3, r2 + 80024f4: f8c7 30f8 str.w r3, [r7, #248] ; 0xf8 MODIFY_REG(huart->Instance->CR1, - 800247c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002480: 681b ldr r3, [r3, #0] - 8002482: 68db ldr r3, [r3, #12] - 8002484: f423 4116 bic.w r1, r3, #38400 ; 0x9600 - 8002488: f021 010c bic.w r1, r1, #12 - 800248c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002490: 681a ldr r2, [r3, #0] - 8002492: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 - 8002496: 430b orrs r3, r1 - 8002498: 60d3 str r3, [r2, #12] + 80024f8: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80024fc: 681b ldr r3, [r3, #0] + 80024fe: 68db ldr r3, [r3, #12] + 8002500: f423 4116 bic.w r1, r3, #38400 ; 0x9600 + 8002504: f021 010c bic.w r1, r1, #12 + 8002508: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800250c: 681a ldr r2, [r3, #0] + 800250e: f8d7 30f8 ldr.w r3, [r7, #248] ; 0xf8 + 8002512: 430b orrs r3, r1 + 8002514: 60d3 str r3, [r2, #12] (uint32_t)(USART_CR1_M | USART_CR1_PCE | USART_CR1_PS | USART_CR1_TE | USART_CR1_RE | USART_CR1_OVER8), tmpreg); /*-------------------------- USART CR3 Configuration -----------------------*/ /* Configure the UART HFC: Set CTSE and RTSE bits according to huart->Init.HwFlowCtl value */ MODIFY_REG(huart->Instance->CR3, (USART_CR3_RTSE | USART_CR3_CTSE), huart->Init.HwFlowCtl); - 800249a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800249e: 681b ldr r3, [r3, #0] - 80024a0: 695b ldr r3, [r3, #20] - 80024a2: f423 7040 bic.w r0, r3, #768 ; 0x300 - 80024a6: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80024aa: 6999 ldr r1, [r3, #24] - 80024ac: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80024b0: 681a ldr r2, [r3, #0] - 80024b2: ea40 0301 orr.w r3, r0, r1 - 80024b6: 6153 str r3, [r2, #20] + 8002516: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800251a: 681b ldr r3, [r3, #0] + 800251c: 695b ldr r3, [r3, #20] + 800251e: f423 7040 bic.w r0, r3, #768 ; 0x300 + 8002522: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8002526: 6999 ldr r1, [r3, #24] + 8002528: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800252c: 681a ldr r2, [r3, #0] + 800252e: ea40 0301 orr.w r3, r0, r1 + 8002532: 6153 str r3, [r2, #20] if ((huart->Instance == USART1) || (huart->Instance == USART6) || (huart->Instance == UART9) || (huart->Instance == UART10)) { pclk = HAL_RCC_GetPCLK2Freq(); } #elif defined(USART6) if ((huart->Instance == USART1) || (huart->Instance == USART6)) - 80024b8: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80024bc: 681a ldr r2, [r3, #0] - 80024be: 4b8f ldr r3, [pc, #572] ; (80026fc ) - 80024c0: 429a cmp r2, r3 - 80024c2: d005 beq.n 80024d0 - 80024c4: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80024c8: 681a ldr r2, [r3, #0] - 80024ca: 4b8d ldr r3, [pc, #564] ; (8002700 ) - 80024cc: 429a cmp r2, r3 - 80024ce: d104 bne.n 80024da + 8002534: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8002538: 681a ldr r2, [r3, #0] + 800253a: 4b8f ldr r3, [pc, #572] ; (8002778 ) + 800253c: 429a cmp r2, r3 + 800253e: d005 beq.n 800254c + 8002540: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8002544: 681a ldr r2, [r3, #0] + 8002546: 4b8d ldr r3, [pc, #564] ; (800277c ) + 8002548: 429a cmp r2, r3 + 800254a: d104 bne.n 8002556 { pclk = HAL_RCC_GetPCLK2Freq(); - 80024d0: f7ff faf8 bl 8001ac4 - 80024d4: f8c7 00fc str.w r0, [r7, #252] ; 0xfc - 80024d8: e003 b.n 80024e2 + 800254c: f7ff faf8 bl 8001b40 + 8002550: f8c7 00fc str.w r0, [r7, #252] ; 0xfc + 8002554: e003 b.n 800255e pclk = HAL_RCC_GetPCLK2Freq(); } #endif /* USART6 */ else { pclk = HAL_RCC_GetPCLK1Freq(); - 80024da: f7ff fadf bl 8001a9c - 80024de: f8c7 00fc str.w r0, [r7, #252] ; 0xfc + 8002556: f7ff fadf bl 8001b18 + 800255a: f8c7 00fc str.w r0, [r7, #252] ; 0xfc } /*-------------------------- USART BRR Configuration ---------------------*/ if (huart->Init.OverSampling == UART_OVERSAMPLING_8) - 80024e2: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80024e6: 69db ldr r3, [r3, #28] - 80024e8: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 - 80024ec: f040 810c bne.w 8002708 + 800255e: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8002562: 69db ldr r3, [r3, #28] + 8002564: f5b3 4f00 cmp.w r3, #32768 ; 0x8000 + 8002568: f040 810c bne.w 8002784 { huart->Instance->BRR = UART_BRR_SAMPLING8(pclk, huart->Init.BaudRate); - 80024f0: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 80024f4: 2200 movs r2, #0 - 80024f6: f8c7 30e8 str.w r3, [r7, #232] ; 0xe8 - 80024fa: f8c7 20ec str.w r2, [r7, #236] ; 0xec - 80024fe: e9d7 453a ldrd r4, r5, [r7, #232] ; 0xe8 - 8002502: 4622 mov r2, r4 - 8002504: 462b mov r3, r5 - 8002506: 1891 adds r1, r2, r2 - 8002508: 65b9 str r1, [r7, #88] ; 0x58 - 800250a: 415b adcs r3, r3 - 800250c: 65fb str r3, [r7, #92] ; 0x5c - 800250e: e9d7 2316 ldrd r2, r3, [r7, #88] ; 0x58 - 8002512: 4621 mov r1, r4 - 8002514: eb12 0801 adds.w r8, r2, r1 - 8002518: 4629 mov r1, r5 - 800251a: eb43 0901 adc.w r9, r3, r1 - 800251e: f04f 0200 mov.w r2, #0 - 8002522: f04f 0300 mov.w r3, #0 - 8002526: ea4f 03c9 mov.w r3, r9, lsl #3 - 800252a: ea43 7358 orr.w r3, r3, r8, lsr #29 - 800252e: ea4f 02c8 mov.w r2, r8, lsl #3 - 8002532: 4690 mov r8, r2 - 8002534: 4699 mov r9, r3 - 8002536: 4623 mov r3, r4 - 8002538: eb18 0303 adds.w r3, r8, r3 - 800253c: f8c7 30e0 str.w r3, [r7, #224] ; 0xe0 - 8002540: 462b mov r3, r5 - 8002542: eb49 0303 adc.w r3, r9, r3 - 8002546: f8c7 30e4 str.w r3, [r7, #228] ; 0xe4 - 800254a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800254e: 685b ldr r3, [r3, #4] - 8002550: 2200 movs r2, #0 - 8002552: f8c7 30d8 str.w r3, [r7, #216] ; 0xd8 - 8002556: f8c7 20dc str.w r2, [r7, #220] ; 0xdc - 800255a: e9d7 1236 ldrd r1, r2, [r7, #216] ; 0xd8 - 800255e: 460b mov r3, r1 - 8002560: 18db adds r3, r3, r3 - 8002562: 653b str r3, [r7, #80] ; 0x50 - 8002564: 4613 mov r3, r2 - 8002566: eb42 0303 adc.w r3, r2, r3 - 800256a: 657b str r3, [r7, #84] ; 0x54 - 800256c: e9d7 2314 ldrd r2, r3, [r7, #80] ; 0x50 - 8002570: e9d7 0138 ldrd r0, r1, [r7, #224] ; 0xe0 - 8002574: f7fd fe34 bl 80001e0 <__aeabi_uldivmod> - 8002578: 4602 mov r2, r0 - 800257a: 460b mov r3, r1 - 800257c: 4b61 ldr r3, [pc, #388] ; (8002704 ) - 800257e: fba3 2302 umull r2, r3, r3, r2 - 8002582: 095b lsrs r3, r3, #5 - 8002584: 011c lsls r4, r3, #4 - 8002586: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 800258a: 2200 movs r2, #0 - 800258c: f8c7 30d0 str.w r3, [r7, #208] ; 0xd0 - 8002590: f8c7 20d4 str.w r2, [r7, #212] ; 0xd4 - 8002594: e9d7 8934 ldrd r8, r9, [r7, #208] ; 0xd0 - 8002598: 4642 mov r2, r8 - 800259a: 464b mov r3, r9 - 800259c: 1891 adds r1, r2, r2 - 800259e: 64b9 str r1, [r7, #72] ; 0x48 - 80025a0: 415b adcs r3, r3 - 80025a2: 64fb str r3, [r7, #76] ; 0x4c - 80025a4: e9d7 2312 ldrd r2, r3, [r7, #72] ; 0x48 - 80025a8: 4641 mov r1, r8 - 80025aa: eb12 0a01 adds.w sl, r2, r1 - 80025ae: 4649 mov r1, r9 - 80025b0: eb43 0b01 adc.w fp, r3, r1 - 80025b4: f04f 0200 mov.w r2, #0 - 80025b8: f04f 0300 mov.w r3, #0 - 80025bc: ea4f 03cb mov.w r3, fp, lsl #3 - 80025c0: ea43 735a orr.w r3, r3, sl, lsr #29 - 80025c4: ea4f 02ca mov.w r2, sl, lsl #3 - 80025c8: 4692 mov sl, r2 - 80025ca: 469b mov fp, r3 - 80025cc: 4643 mov r3, r8 - 80025ce: eb1a 0303 adds.w r3, sl, r3 - 80025d2: f8c7 30c8 str.w r3, [r7, #200] ; 0xc8 - 80025d6: 464b mov r3, r9 - 80025d8: eb4b 0303 adc.w r3, fp, r3 - 80025dc: f8c7 30cc str.w r3, [r7, #204] ; 0xcc - 80025e0: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80025e4: 685b ldr r3, [r3, #4] - 80025e6: 2200 movs r2, #0 - 80025e8: f8c7 30c0 str.w r3, [r7, #192] ; 0xc0 - 80025ec: f8c7 20c4 str.w r2, [r7, #196] ; 0xc4 - 80025f0: e9d7 1230 ldrd r1, r2, [r7, #192] ; 0xc0 - 80025f4: 460b mov r3, r1 - 80025f6: 18db adds r3, r3, r3 - 80025f8: 643b str r3, [r7, #64] ; 0x40 - 80025fa: 4613 mov r3, r2 - 80025fc: eb42 0303 adc.w r3, r2, r3 - 8002600: 647b str r3, [r7, #68] ; 0x44 - 8002602: e9d7 2310 ldrd r2, r3, [r7, #64] ; 0x40 - 8002606: e9d7 0132 ldrd r0, r1, [r7, #200] ; 0xc8 - 800260a: f7fd fde9 bl 80001e0 <__aeabi_uldivmod> - 800260e: 4602 mov r2, r0 - 8002610: 460b mov r3, r1 - 8002612: 4611 mov r1, r2 - 8002614: 4b3b ldr r3, [pc, #236] ; (8002704 ) - 8002616: fba3 2301 umull r2, r3, r3, r1 - 800261a: 095b lsrs r3, r3, #5 - 800261c: 2264 movs r2, #100 ; 0x64 - 800261e: fb02 f303 mul.w r3, r2, r3 - 8002622: 1acb subs r3, r1, r3 - 8002624: 00db lsls r3, r3, #3 - 8002626: f103 0232 add.w r2, r3, #50 ; 0x32 - 800262a: 4b36 ldr r3, [pc, #216] ; (8002704 ) - 800262c: fba3 2302 umull r2, r3, r3, r2 - 8002630: 095b lsrs r3, r3, #5 - 8002632: 005b lsls r3, r3, #1 - 8002634: f403 73f8 and.w r3, r3, #496 ; 0x1f0 - 8002638: 441c add r4, r3 - 800263a: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 800263e: 2200 movs r2, #0 - 8002640: f8c7 30b8 str.w r3, [r7, #184] ; 0xb8 - 8002644: f8c7 20bc str.w r2, [r7, #188] ; 0xbc - 8002648: e9d7 892e ldrd r8, r9, [r7, #184] ; 0xb8 - 800264c: 4642 mov r2, r8 - 800264e: 464b mov r3, r9 - 8002650: 1891 adds r1, r2, r2 - 8002652: 63b9 str r1, [r7, #56] ; 0x38 - 8002654: 415b adcs r3, r3 - 8002656: 63fb str r3, [r7, #60] ; 0x3c - 8002658: e9d7 230e ldrd r2, r3, [r7, #56] ; 0x38 - 800265c: 4641 mov r1, r8 - 800265e: 1851 adds r1, r2, r1 - 8002660: 6339 str r1, [r7, #48] ; 0x30 - 8002662: 4649 mov r1, r9 - 8002664: 414b adcs r3, r1 - 8002666: 637b str r3, [r7, #52] ; 0x34 - 8002668: f04f 0200 mov.w r2, #0 - 800266c: f04f 0300 mov.w r3, #0 - 8002670: e9d7 ab0c ldrd sl, fp, [r7, #48] ; 0x30 - 8002674: 4659 mov r1, fp - 8002676: 00cb lsls r3, r1, #3 - 8002678: 4651 mov r1, sl - 800267a: ea43 7351 orr.w r3, r3, r1, lsr #29 - 800267e: 4651 mov r1, sl - 8002680: 00ca lsls r2, r1, #3 - 8002682: 4610 mov r0, r2 - 8002684: 4619 mov r1, r3 - 8002686: 4603 mov r3, r0 - 8002688: 4642 mov r2, r8 - 800268a: 189b adds r3, r3, r2 - 800268c: f8c7 30b0 str.w r3, [r7, #176] ; 0xb0 - 8002690: 464b mov r3, r9 - 8002692: 460a mov r2, r1 - 8002694: eb42 0303 adc.w r3, r2, r3 - 8002698: f8c7 30b4 str.w r3, [r7, #180] ; 0xb4 - 800269c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80026a0: 685b ldr r3, [r3, #4] - 80026a2: 2200 movs r2, #0 - 80026a4: f8c7 30a8 str.w r3, [r7, #168] ; 0xa8 - 80026a8: f8c7 20ac str.w r2, [r7, #172] ; 0xac - 80026ac: e9d7 122a ldrd r1, r2, [r7, #168] ; 0xa8 - 80026b0: 460b mov r3, r1 - 80026b2: 18db adds r3, r3, r3 - 80026b4: 62bb str r3, [r7, #40] ; 0x28 - 80026b6: 4613 mov r3, r2 - 80026b8: eb42 0303 adc.w r3, r2, r3 - 80026bc: 62fb str r3, [r7, #44] ; 0x2c - 80026be: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 - 80026c2: e9d7 012c ldrd r0, r1, [r7, #176] ; 0xb0 - 80026c6: f7fd fd8b bl 80001e0 <__aeabi_uldivmod> - 80026ca: 4602 mov r2, r0 - 80026cc: 460b mov r3, r1 - 80026ce: 4b0d ldr r3, [pc, #52] ; (8002704 ) - 80026d0: fba3 1302 umull r1, r3, r3, r2 - 80026d4: 095b lsrs r3, r3, #5 - 80026d6: 2164 movs r1, #100 ; 0x64 - 80026d8: fb01 f303 mul.w r3, r1, r3 - 80026dc: 1ad3 subs r3, r2, r3 - 80026de: 00db lsls r3, r3, #3 - 80026e0: 3332 adds r3, #50 ; 0x32 - 80026e2: 4a08 ldr r2, [pc, #32] ; (8002704 ) - 80026e4: fba2 2303 umull r2, r3, r2, r3 - 80026e8: 095b lsrs r3, r3, #5 - 80026ea: f003 0207 and.w r2, r3, #7 - 80026ee: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80026f2: 681b ldr r3, [r3, #0] - 80026f4: 4422 add r2, r4 - 80026f6: 609a str r2, [r3, #8] + 800256c: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 8002570: 2200 movs r2, #0 + 8002572: f8c7 30e8 str.w r3, [r7, #232] ; 0xe8 + 8002576: f8c7 20ec str.w r2, [r7, #236] ; 0xec + 800257a: e9d7 453a ldrd r4, r5, [r7, #232] ; 0xe8 + 800257e: 4622 mov r2, r4 + 8002580: 462b mov r3, r5 + 8002582: 1891 adds r1, r2, r2 + 8002584: 65b9 str r1, [r7, #88] ; 0x58 + 8002586: 415b adcs r3, r3 + 8002588: 65fb str r3, [r7, #92] ; 0x5c + 800258a: e9d7 2316 ldrd r2, r3, [r7, #88] ; 0x58 + 800258e: 4621 mov r1, r4 + 8002590: eb12 0801 adds.w r8, r2, r1 + 8002594: 4629 mov r1, r5 + 8002596: eb43 0901 adc.w r9, r3, r1 + 800259a: f04f 0200 mov.w r2, #0 + 800259e: f04f 0300 mov.w r3, #0 + 80025a2: ea4f 03c9 mov.w r3, r9, lsl #3 + 80025a6: ea43 7358 orr.w r3, r3, r8, lsr #29 + 80025aa: ea4f 02c8 mov.w r2, r8, lsl #3 + 80025ae: 4690 mov r8, r2 + 80025b0: 4699 mov r9, r3 + 80025b2: 4623 mov r3, r4 + 80025b4: eb18 0303 adds.w r3, r8, r3 + 80025b8: f8c7 30e0 str.w r3, [r7, #224] ; 0xe0 + 80025bc: 462b mov r3, r5 + 80025be: eb49 0303 adc.w r3, r9, r3 + 80025c2: f8c7 30e4 str.w r3, [r7, #228] ; 0xe4 + 80025c6: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80025ca: 685b ldr r3, [r3, #4] + 80025cc: 2200 movs r2, #0 + 80025ce: f8c7 30d8 str.w r3, [r7, #216] ; 0xd8 + 80025d2: f8c7 20dc str.w r2, [r7, #220] ; 0xdc + 80025d6: e9d7 1236 ldrd r1, r2, [r7, #216] ; 0xd8 + 80025da: 460b mov r3, r1 + 80025dc: 18db adds r3, r3, r3 + 80025de: 653b str r3, [r7, #80] ; 0x50 + 80025e0: 4613 mov r3, r2 + 80025e2: eb42 0303 adc.w r3, r2, r3 + 80025e6: 657b str r3, [r7, #84] ; 0x54 + 80025e8: e9d7 2314 ldrd r2, r3, [r7, #80] ; 0x50 + 80025ec: e9d7 0138 ldrd r0, r1, [r7, #224] ; 0xe0 + 80025f0: f7fd fdf6 bl 80001e0 <__aeabi_uldivmod> + 80025f4: 4602 mov r2, r0 + 80025f6: 460b mov r3, r1 + 80025f8: 4b61 ldr r3, [pc, #388] ; (8002780 ) + 80025fa: fba3 2302 umull r2, r3, r3, r2 + 80025fe: 095b lsrs r3, r3, #5 + 8002600: 011c lsls r4, r3, #4 + 8002602: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 8002606: 2200 movs r2, #0 + 8002608: f8c7 30d0 str.w r3, [r7, #208] ; 0xd0 + 800260c: f8c7 20d4 str.w r2, [r7, #212] ; 0xd4 + 8002610: e9d7 8934 ldrd r8, r9, [r7, #208] ; 0xd0 + 8002614: 4642 mov r2, r8 + 8002616: 464b mov r3, r9 + 8002618: 1891 adds r1, r2, r2 + 800261a: 64b9 str r1, [r7, #72] ; 0x48 + 800261c: 415b adcs r3, r3 + 800261e: 64fb str r3, [r7, #76] ; 0x4c + 8002620: e9d7 2312 ldrd r2, r3, [r7, #72] ; 0x48 + 8002624: 4641 mov r1, r8 + 8002626: eb12 0a01 adds.w sl, r2, r1 + 800262a: 4649 mov r1, r9 + 800262c: eb43 0b01 adc.w fp, r3, r1 + 8002630: f04f 0200 mov.w r2, #0 + 8002634: f04f 0300 mov.w r3, #0 + 8002638: ea4f 03cb mov.w r3, fp, lsl #3 + 800263c: ea43 735a orr.w r3, r3, sl, lsr #29 + 8002640: ea4f 02ca mov.w r2, sl, lsl #3 + 8002644: 4692 mov sl, r2 + 8002646: 469b mov fp, r3 + 8002648: 4643 mov r3, r8 + 800264a: eb1a 0303 adds.w r3, sl, r3 + 800264e: f8c7 30c8 str.w r3, [r7, #200] ; 0xc8 + 8002652: 464b mov r3, r9 + 8002654: eb4b 0303 adc.w r3, fp, r3 + 8002658: f8c7 30cc str.w r3, [r7, #204] ; 0xcc + 800265c: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 8002660: 685b ldr r3, [r3, #4] + 8002662: 2200 movs r2, #0 + 8002664: f8c7 30c0 str.w r3, [r7, #192] ; 0xc0 + 8002668: f8c7 20c4 str.w r2, [r7, #196] ; 0xc4 + 800266c: e9d7 1230 ldrd r1, r2, [r7, #192] ; 0xc0 + 8002670: 460b mov r3, r1 + 8002672: 18db adds r3, r3, r3 + 8002674: 643b str r3, [r7, #64] ; 0x40 + 8002676: 4613 mov r3, r2 + 8002678: eb42 0303 adc.w r3, r2, r3 + 800267c: 647b str r3, [r7, #68] ; 0x44 + 800267e: e9d7 2310 ldrd r2, r3, [r7, #64] ; 0x40 + 8002682: e9d7 0132 ldrd r0, r1, [r7, #200] ; 0xc8 + 8002686: f7fd fdab bl 80001e0 <__aeabi_uldivmod> + 800268a: 4602 mov r2, r0 + 800268c: 460b mov r3, r1 + 800268e: 4611 mov r1, r2 + 8002690: 4b3b ldr r3, [pc, #236] ; (8002780 ) + 8002692: fba3 2301 umull r2, r3, r3, r1 + 8002696: 095b lsrs r3, r3, #5 + 8002698: 2264 movs r2, #100 ; 0x64 + 800269a: fb02 f303 mul.w r3, r2, r3 + 800269e: 1acb subs r3, r1, r3 + 80026a0: 00db lsls r3, r3, #3 + 80026a2: f103 0232 add.w r2, r3, #50 ; 0x32 + 80026a6: 4b36 ldr r3, [pc, #216] ; (8002780 ) + 80026a8: fba3 2302 umull r2, r3, r3, r2 + 80026ac: 095b lsrs r3, r3, #5 + 80026ae: 005b lsls r3, r3, #1 + 80026b0: f403 73f8 and.w r3, r3, #496 ; 0x1f0 + 80026b4: 441c add r4, r3 + 80026b6: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 80026ba: 2200 movs r2, #0 + 80026bc: f8c7 30b8 str.w r3, [r7, #184] ; 0xb8 + 80026c0: f8c7 20bc str.w r2, [r7, #188] ; 0xbc + 80026c4: e9d7 892e ldrd r8, r9, [r7, #184] ; 0xb8 + 80026c8: 4642 mov r2, r8 + 80026ca: 464b mov r3, r9 + 80026cc: 1891 adds r1, r2, r2 + 80026ce: 63b9 str r1, [r7, #56] ; 0x38 + 80026d0: 415b adcs r3, r3 + 80026d2: 63fb str r3, [r7, #60] ; 0x3c + 80026d4: e9d7 230e ldrd r2, r3, [r7, #56] ; 0x38 + 80026d8: 4641 mov r1, r8 + 80026da: 1851 adds r1, r2, r1 + 80026dc: 6339 str r1, [r7, #48] ; 0x30 + 80026de: 4649 mov r1, r9 + 80026e0: 414b adcs r3, r1 + 80026e2: 637b str r3, [r7, #52] ; 0x34 + 80026e4: f04f 0200 mov.w r2, #0 + 80026e8: f04f 0300 mov.w r3, #0 + 80026ec: e9d7 ab0c ldrd sl, fp, [r7, #48] ; 0x30 + 80026f0: 4659 mov r1, fp + 80026f2: 00cb lsls r3, r1, #3 + 80026f4: 4651 mov r1, sl + 80026f6: ea43 7351 orr.w r3, r3, r1, lsr #29 + 80026fa: 4651 mov r1, sl + 80026fc: 00ca lsls r2, r1, #3 + 80026fe: 4610 mov r0, r2 + 8002700: 4619 mov r1, r3 + 8002702: 4603 mov r3, r0 + 8002704: 4642 mov r2, r8 + 8002706: 189b adds r3, r3, r2 + 8002708: f8c7 30b0 str.w r3, [r7, #176] ; 0xb0 + 800270c: 464b mov r3, r9 + 800270e: 460a mov r2, r1 + 8002710: eb42 0303 adc.w r3, r2, r3 + 8002714: f8c7 30b4 str.w r3, [r7, #180] ; 0xb4 + 8002718: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800271c: 685b ldr r3, [r3, #4] + 800271e: 2200 movs r2, #0 + 8002720: f8c7 30a8 str.w r3, [r7, #168] ; 0xa8 + 8002724: f8c7 20ac str.w r2, [r7, #172] ; 0xac + 8002728: e9d7 122a ldrd r1, r2, [r7, #168] ; 0xa8 + 800272c: 460b mov r3, r1 + 800272e: 18db adds r3, r3, r3 + 8002730: 62bb str r3, [r7, #40] ; 0x28 + 8002732: 4613 mov r3, r2 + 8002734: eb42 0303 adc.w r3, r2, r3 + 8002738: 62fb str r3, [r7, #44] ; 0x2c + 800273a: e9d7 230a ldrd r2, r3, [r7, #40] ; 0x28 + 800273e: e9d7 012c ldrd r0, r1, [r7, #176] ; 0xb0 + 8002742: f7fd fd4d bl 80001e0 <__aeabi_uldivmod> + 8002746: 4602 mov r2, r0 + 8002748: 460b mov r3, r1 + 800274a: 4b0d ldr r3, [pc, #52] ; (8002780 ) + 800274c: fba3 1302 umull r1, r3, r3, r2 + 8002750: 095b lsrs r3, r3, #5 + 8002752: 2164 movs r1, #100 ; 0x64 + 8002754: fb01 f303 mul.w r3, r1, r3 + 8002758: 1ad3 subs r3, r2, r3 + 800275a: 00db lsls r3, r3, #3 + 800275c: 3332 adds r3, #50 ; 0x32 + 800275e: 4a08 ldr r2, [pc, #32] ; (8002780 ) + 8002760: fba2 2303 umull r2, r3, r2, r3 + 8002764: 095b lsrs r3, r3, #5 + 8002766: f003 0207 and.w r2, r3, #7 + 800276a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800276e: 681b ldr r3, [r3, #0] + 8002770: 4422 add r2, r4 + 8002772: 609a str r2, [r3, #8] } else { huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); } } - 80026f8: e106 b.n 8002908 - 80026fa: bf00 nop - 80026fc: 40011000 .word 0x40011000 - 8002700: 40011400 .word 0x40011400 - 8002704: 51eb851f .word 0x51eb851f + 8002774: e106 b.n 8002984 + 8002776: bf00 nop + 8002778: 40011000 .word 0x40011000 + 800277c: 40011400 .word 0x40011400 + 8002780: 51eb851f .word 0x51eb851f huart->Instance->BRR = UART_BRR_SAMPLING16(pclk, huart->Init.BaudRate); - 8002708: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 800270c: 2200 movs r2, #0 - 800270e: f8c7 30a0 str.w r3, [r7, #160] ; 0xa0 - 8002712: f8c7 20a4 str.w r2, [r7, #164] ; 0xa4 - 8002716: e9d7 8928 ldrd r8, r9, [r7, #160] ; 0xa0 - 800271a: 4642 mov r2, r8 - 800271c: 464b mov r3, r9 - 800271e: 1891 adds r1, r2, r2 - 8002720: 6239 str r1, [r7, #32] - 8002722: 415b adcs r3, r3 - 8002724: 627b str r3, [r7, #36] ; 0x24 - 8002726: e9d7 2308 ldrd r2, r3, [r7, #32] - 800272a: 4641 mov r1, r8 - 800272c: 1854 adds r4, r2, r1 - 800272e: 4649 mov r1, r9 - 8002730: eb43 0501 adc.w r5, r3, r1 - 8002734: f04f 0200 mov.w r2, #0 - 8002738: f04f 0300 mov.w r3, #0 - 800273c: 00eb lsls r3, r5, #3 - 800273e: ea43 7354 orr.w r3, r3, r4, lsr #29 - 8002742: 00e2 lsls r2, r4, #3 - 8002744: 4614 mov r4, r2 - 8002746: 461d mov r5, r3 - 8002748: 4643 mov r3, r8 - 800274a: 18e3 adds r3, r4, r3 - 800274c: f8c7 3098 str.w r3, [r7, #152] ; 0x98 - 8002750: 464b mov r3, r9 - 8002752: eb45 0303 adc.w r3, r5, r3 - 8002756: f8c7 309c str.w r3, [r7, #156] ; 0x9c - 800275a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 800275e: 685b ldr r3, [r3, #4] - 8002760: 2200 movs r2, #0 - 8002762: f8c7 3090 str.w r3, [r7, #144] ; 0x90 - 8002766: f8c7 2094 str.w r2, [r7, #148] ; 0x94 - 800276a: f04f 0200 mov.w r2, #0 - 800276e: f04f 0300 mov.w r3, #0 - 8002772: e9d7 4524 ldrd r4, r5, [r7, #144] ; 0x90 - 8002776: 4629 mov r1, r5 - 8002778: 008b lsls r3, r1, #2 - 800277a: 4621 mov r1, r4 - 800277c: ea43 7391 orr.w r3, r3, r1, lsr #30 - 8002780: 4621 mov r1, r4 - 8002782: 008a lsls r2, r1, #2 - 8002784: e9d7 0126 ldrd r0, r1, [r7, #152] ; 0x98 - 8002788: f7fd fd2a bl 80001e0 <__aeabi_uldivmod> - 800278c: 4602 mov r2, r0 - 800278e: 460b mov r3, r1 - 8002790: 4b60 ldr r3, [pc, #384] ; (8002914 ) - 8002792: fba3 2302 umull r2, r3, r3, r2 - 8002796: 095b lsrs r3, r3, #5 - 8002798: 011c lsls r4, r3, #4 - 800279a: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 800279e: 2200 movs r2, #0 - 80027a0: f8c7 3088 str.w r3, [r7, #136] ; 0x88 - 80027a4: f8c7 208c str.w r2, [r7, #140] ; 0x8c - 80027a8: e9d7 8922 ldrd r8, r9, [r7, #136] ; 0x88 - 80027ac: 4642 mov r2, r8 - 80027ae: 464b mov r3, r9 - 80027b0: 1891 adds r1, r2, r2 - 80027b2: 61b9 str r1, [r7, #24] - 80027b4: 415b adcs r3, r3 - 80027b6: 61fb str r3, [r7, #28] - 80027b8: e9d7 2306 ldrd r2, r3, [r7, #24] - 80027bc: 4641 mov r1, r8 - 80027be: 1851 adds r1, r2, r1 - 80027c0: 6139 str r1, [r7, #16] - 80027c2: 4649 mov r1, r9 - 80027c4: 414b adcs r3, r1 - 80027c6: 617b str r3, [r7, #20] - 80027c8: f04f 0200 mov.w r2, #0 - 80027cc: f04f 0300 mov.w r3, #0 - 80027d0: e9d7 ab04 ldrd sl, fp, [r7, #16] - 80027d4: 4659 mov r1, fp - 80027d6: 00cb lsls r3, r1, #3 - 80027d8: 4651 mov r1, sl - 80027da: ea43 7351 orr.w r3, r3, r1, lsr #29 - 80027de: 4651 mov r1, sl - 80027e0: 00ca lsls r2, r1, #3 - 80027e2: 4610 mov r0, r2 - 80027e4: 4619 mov r1, r3 - 80027e6: 4603 mov r3, r0 - 80027e8: 4642 mov r2, r8 - 80027ea: 189b adds r3, r3, r2 - 80027ec: f8c7 3080 str.w r3, [r7, #128] ; 0x80 - 80027f0: 464b mov r3, r9 - 80027f2: 460a mov r2, r1 - 80027f4: eb42 0303 adc.w r3, r2, r3 - 80027f8: f8c7 3084 str.w r3, [r7, #132] ; 0x84 - 80027fc: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002800: 685b ldr r3, [r3, #4] - 8002802: 2200 movs r2, #0 - 8002804: 67bb str r3, [r7, #120] ; 0x78 - 8002806: 67fa str r2, [r7, #124] ; 0x7c - 8002808: f04f 0200 mov.w r2, #0 - 800280c: f04f 0300 mov.w r3, #0 - 8002810: e9d7 891e ldrd r8, r9, [r7, #120] ; 0x78 - 8002814: 4649 mov r1, r9 - 8002816: 008b lsls r3, r1, #2 - 8002818: 4641 mov r1, r8 - 800281a: ea43 7391 orr.w r3, r3, r1, lsr #30 - 800281e: 4641 mov r1, r8 - 8002820: 008a lsls r2, r1, #2 - 8002822: e9d7 0120 ldrd r0, r1, [r7, #128] ; 0x80 - 8002826: f7fd fcdb bl 80001e0 <__aeabi_uldivmod> - 800282a: 4602 mov r2, r0 - 800282c: 460b mov r3, r1 - 800282e: 4611 mov r1, r2 - 8002830: 4b38 ldr r3, [pc, #224] ; (8002914 ) - 8002832: fba3 2301 umull r2, r3, r3, r1 - 8002836: 095b lsrs r3, r3, #5 - 8002838: 2264 movs r2, #100 ; 0x64 - 800283a: fb02 f303 mul.w r3, r2, r3 - 800283e: 1acb subs r3, r1, r3 - 8002840: 011b lsls r3, r3, #4 - 8002842: 3332 adds r3, #50 ; 0x32 - 8002844: 4a33 ldr r2, [pc, #204] ; (8002914 ) - 8002846: fba2 2303 umull r2, r3, r2, r3 - 800284a: 095b lsrs r3, r3, #5 - 800284c: f003 03f0 and.w r3, r3, #240 ; 0xf0 - 8002850: 441c add r4, r3 - 8002852: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc - 8002856: 2200 movs r2, #0 - 8002858: 673b str r3, [r7, #112] ; 0x70 - 800285a: 677a str r2, [r7, #116] ; 0x74 - 800285c: e9d7 891c ldrd r8, r9, [r7, #112] ; 0x70 - 8002860: 4642 mov r2, r8 - 8002862: 464b mov r3, r9 - 8002864: 1891 adds r1, r2, r2 - 8002866: 60b9 str r1, [r7, #8] - 8002868: 415b adcs r3, r3 - 800286a: 60fb str r3, [r7, #12] - 800286c: e9d7 2302 ldrd r2, r3, [r7, #8] - 8002870: 4641 mov r1, r8 - 8002872: 1851 adds r1, r2, r1 - 8002874: 6039 str r1, [r7, #0] - 8002876: 4649 mov r1, r9 - 8002878: 414b adcs r3, r1 - 800287a: 607b str r3, [r7, #4] - 800287c: f04f 0200 mov.w r2, #0 - 8002880: f04f 0300 mov.w r3, #0 - 8002884: e9d7 ab00 ldrd sl, fp, [r7] - 8002888: 4659 mov r1, fp - 800288a: 00cb lsls r3, r1, #3 - 800288c: 4651 mov r1, sl - 800288e: ea43 7351 orr.w r3, r3, r1, lsr #29 - 8002892: 4651 mov r1, sl - 8002894: 00ca lsls r2, r1, #3 - 8002896: 4610 mov r0, r2 - 8002898: 4619 mov r1, r3 - 800289a: 4603 mov r3, r0 - 800289c: 4642 mov r2, r8 - 800289e: 189b adds r3, r3, r2 - 80028a0: 66bb str r3, [r7, #104] ; 0x68 - 80028a2: 464b mov r3, r9 - 80028a4: 460a mov r2, r1 - 80028a6: eb42 0303 adc.w r3, r2, r3 - 80028aa: 66fb str r3, [r7, #108] ; 0x6c - 80028ac: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 80028b0: 685b ldr r3, [r3, #4] - 80028b2: 2200 movs r2, #0 - 80028b4: 663b str r3, [r7, #96] ; 0x60 - 80028b6: 667a str r2, [r7, #100] ; 0x64 - 80028b8: f04f 0200 mov.w r2, #0 - 80028bc: f04f 0300 mov.w r3, #0 - 80028c0: e9d7 8918 ldrd r8, r9, [r7, #96] ; 0x60 - 80028c4: 4649 mov r1, r9 - 80028c6: 008b lsls r3, r1, #2 - 80028c8: 4641 mov r1, r8 - 80028ca: ea43 7391 orr.w r3, r3, r1, lsr #30 - 80028ce: 4641 mov r1, r8 - 80028d0: 008a lsls r2, r1, #2 - 80028d2: e9d7 011a ldrd r0, r1, [r7, #104] ; 0x68 - 80028d6: f7fd fc83 bl 80001e0 <__aeabi_uldivmod> - 80028da: 4602 mov r2, r0 - 80028dc: 460b mov r3, r1 - 80028de: 4b0d ldr r3, [pc, #52] ; (8002914 ) - 80028e0: fba3 1302 umull r1, r3, r3, r2 - 80028e4: 095b lsrs r3, r3, #5 - 80028e6: 2164 movs r1, #100 ; 0x64 - 80028e8: fb01 f303 mul.w r3, r1, r3 - 80028ec: 1ad3 subs r3, r2, r3 - 80028ee: 011b lsls r3, r3, #4 - 80028f0: 3332 adds r3, #50 ; 0x32 - 80028f2: 4a08 ldr r2, [pc, #32] ; (8002914 ) - 80028f4: fba2 2303 umull r2, r3, r2, r3 - 80028f8: 095b lsrs r3, r3, #5 - 80028fa: f003 020f and.w r2, r3, #15 - 80028fe: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 - 8002902: 681b ldr r3, [r3, #0] - 8002904: 4422 add r2, r4 - 8002906: 609a str r2, [r3, #8] + 8002784: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 8002788: 2200 movs r2, #0 + 800278a: f8c7 30a0 str.w r3, [r7, #160] ; 0xa0 + 800278e: f8c7 20a4 str.w r2, [r7, #164] ; 0xa4 + 8002792: e9d7 8928 ldrd r8, r9, [r7, #160] ; 0xa0 + 8002796: 4642 mov r2, r8 + 8002798: 464b mov r3, r9 + 800279a: 1891 adds r1, r2, r2 + 800279c: 6239 str r1, [r7, #32] + 800279e: 415b adcs r3, r3 + 80027a0: 627b str r3, [r7, #36] ; 0x24 + 80027a2: e9d7 2308 ldrd r2, r3, [r7, #32] + 80027a6: 4641 mov r1, r8 + 80027a8: 1854 adds r4, r2, r1 + 80027aa: 4649 mov r1, r9 + 80027ac: eb43 0501 adc.w r5, r3, r1 + 80027b0: f04f 0200 mov.w r2, #0 + 80027b4: f04f 0300 mov.w r3, #0 + 80027b8: 00eb lsls r3, r5, #3 + 80027ba: ea43 7354 orr.w r3, r3, r4, lsr #29 + 80027be: 00e2 lsls r2, r4, #3 + 80027c0: 4614 mov r4, r2 + 80027c2: 461d mov r5, r3 + 80027c4: 4643 mov r3, r8 + 80027c6: 18e3 adds r3, r4, r3 + 80027c8: f8c7 3098 str.w r3, [r7, #152] ; 0x98 + 80027cc: 464b mov r3, r9 + 80027ce: eb45 0303 adc.w r3, r5, r3 + 80027d2: f8c7 309c str.w r3, [r7, #156] ; 0x9c + 80027d6: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 80027da: 685b ldr r3, [r3, #4] + 80027dc: 2200 movs r2, #0 + 80027de: f8c7 3090 str.w r3, [r7, #144] ; 0x90 + 80027e2: f8c7 2094 str.w r2, [r7, #148] ; 0x94 + 80027e6: f04f 0200 mov.w r2, #0 + 80027ea: f04f 0300 mov.w r3, #0 + 80027ee: e9d7 4524 ldrd r4, r5, [r7, #144] ; 0x90 + 80027f2: 4629 mov r1, r5 + 80027f4: 008b lsls r3, r1, #2 + 80027f6: 4621 mov r1, r4 + 80027f8: ea43 7391 orr.w r3, r3, r1, lsr #30 + 80027fc: 4621 mov r1, r4 + 80027fe: 008a lsls r2, r1, #2 + 8002800: e9d7 0126 ldrd r0, r1, [r7, #152] ; 0x98 + 8002804: f7fd fcec bl 80001e0 <__aeabi_uldivmod> + 8002808: 4602 mov r2, r0 + 800280a: 460b mov r3, r1 + 800280c: 4b60 ldr r3, [pc, #384] ; (8002990 ) + 800280e: fba3 2302 umull r2, r3, r3, r2 + 8002812: 095b lsrs r3, r3, #5 + 8002814: 011c lsls r4, r3, #4 + 8002816: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 800281a: 2200 movs r2, #0 + 800281c: f8c7 3088 str.w r3, [r7, #136] ; 0x88 + 8002820: f8c7 208c str.w r2, [r7, #140] ; 0x8c + 8002824: e9d7 8922 ldrd r8, r9, [r7, #136] ; 0x88 + 8002828: 4642 mov r2, r8 + 800282a: 464b mov r3, r9 + 800282c: 1891 adds r1, r2, r2 + 800282e: 61b9 str r1, [r7, #24] + 8002830: 415b adcs r3, r3 + 8002832: 61fb str r3, [r7, #28] + 8002834: e9d7 2306 ldrd r2, r3, [r7, #24] + 8002838: 4641 mov r1, r8 + 800283a: 1851 adds r1, r2, r1 + 800283c: 6139 str r1, [r7, #16] + 800283e: 4649 mov r1, r9 + 8002840: 414b adcs r3, r1 + 8002842: 617b str r3, [r7, #20] + 8002844: f04f 0200 mov.w r2, #0 + 8002848: f04f 0300 mov.w r3, #0 + 800284c: e9d7 ab04 ldrd sl, fp, [r7, #16] + 8002850: 4659 mov r1, fp + 8002852: 00cb lsls r3, r1, #3 + 8002854: 4651 mov r1, sl + 8002856: ea43 7351 orr.w r3, r3, r1, lsr #29 + 800285a: 4651 mov r1, sl + 800285c: 00ca lsls r2, r1, #3 + 800285e: 4610 mov r0, r2 + 8002860: 4619 mov r1, r3 + 8002862: 4603 mov r3, r0 + 8002864: 4642 mov r2, r8 + 8002866: 189b adds r3, r3, r2 + 8002868: f8c7 3080 str.w r3, [r7, #128] ; 0x80 + 800286c: 464b mov r3, r9 + 800286e: 460a mov r2, r1 + 8002870: eb42 0303 adc.w r3, r2, r3 + 8002874: f8c7 3084 str.w r3, [r7, #132] ; 0x84 + 8002878: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800287c: 685b ldr r3, [r3, #4] + 800287e: 2200 movs r2, #0 + 8002880: 67bb str r3, [r7, #120] ; 0x78 + 8002882: 67fa str r2, [r7, #124] ; 0x7c + 8002884: f04f 0200 mov.w r2, #0 + 8002888: f04f 0300 mov.w r3, #0 + 800288c: e9d7 891e ldrd r8, r9, [r7, #120] ; 0x78 + 8002890: 4649 mov r1, r9 + 8002892: 008b lsls r3, r1, #2 + 8002894: 4641 mov r1, r8 + 8002896: ea43 7391 orr.w r3, r3, r1, lsr #30 + 800289a: 4641 mov r1, r8 + 800289c: 008a lsls r2, r1, #2 + 800289e: e9d7 0120 ldrd r0, r1, [r7, #128] ; 0x80 + 80028a2: f7fd fc9d bl 80001e0 <__aeabi_uldivmod> + 80028a6: 4602 mov r2, r0 + 80028a8: 460b mov r3, r1 + 80028aa: 4611 mov r1, r2 + 80028ac: 4b38 ldr r3, [pc, #224] ; (8002990 ) + 80028ae: fba3 2301 umull r2, r3, r3, r1 + 80028b2: 095b lsrs r3, r3, #5 + 80028b4: 2264 movs r2, #100 ; 0x64 + 80028b6: fb02 f303 mul.w r3, r2, r3 + 80028ba: 1acb subs r3, r1, r3 + 80028bc: 011b lsls r3, r3, #4 + 80028be: 3332 adds r3, #50 ; 0x32 + 80028c0: 4a33 ldr r2, [pc, #204] ; (8002990 ) + 80028c2: fba2 2303 umull r2, r3, r2, r3 + 80028c6: 095b lsrs r3, r3, #5 + 80028c8: f003 03f0 and.w r3, r3, #240 ; 0xf0 + 80028cc: 441c add r4, r3 + 80028ce: f8d7 30fc ldr.w r3, [r7, #252] ; 0xfc + 80028d2: 2200 movs r2, #0 + 80028d4: 673b str r3, [r7, #112] ; 0x70 + 80028d6: 677a str r2, [r7, #116] ; 0x74 + 80028d8: e9d7 891c ldrd r8, r9, [r7, #112] ; 0x70 + 80028dc: 4642 mov r2, r8 + 80028de: 464b mov r3, r9 + 80028e0: 1891 adds r1, r2, r2 + 80028e2: 60b9 str r1, [r7, #8] + 80028e4: 415b adcs r3, r3 + 80028e6: 60fb str r3, [r7, #12] + 80028e8: e9d7 2302 ldrd r2, r3, [r7, #8] + 80028ec: 4641 mov r1, r8 + 80028ee: 1851 adds r1, r2, r1 + 80028f0: 6039 str r1, [r7, #0] + 80028f2: 4649 mov r1, r9 + 80028f4: 414b adcs r3, r1 + 80028f6: 607b str r3, [r7, #4] + 80028f8: f04f 0200 mov.w r2, #0 + 80028fc: f04f 0300 mov.w r3, #0 + 8002900: e9d7 ab00 ldrd sl, fp, [r7] + 8002904: 4659 mov r1, fp + 8002906: 00cb lsls r3, r1, #3 + 8002908: 4651 mov r1, sl + 800290a: ea43 7351 orr.w r3, r3, r1, lsr #29 + 800290e: 4651 mov r1, sl + 8002910: 00ca lsls r2, r1, #3 + 8002912: 4610 mov r0, r2 + 8002914: 4619 mov r1, r3 + 8002916: 4603 mov r3, r0 + 8002918: 4642 mov r2, r8 + 800291a: 189b adds r3, r3, r2 + 800291c: 66bb str r3, [r7, #104] ; 0x68 + 800291e: 464b mov r3, r9 + 8002920: 460a mov r2, r1 + 8002922: eb42 0303 adc.w r3, r2, r3 + 8002926: 66fb str r3, [r7, #108] ; 0x6c + 8002928: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800292c: 685b ldr r3, [r3, #4] + 800292e: 2200 movs r2, #0 + 8002930: 663b str r3, [r7, #96] ; 0x60 + 8002932: 667a str r2, [r7, #100] ; 0x64 + 8002934: f04f 0200 mov.w r2, #0 + 8002938: f04f 0300 mov.w r3, #0 + 800293c: e9d7 8918 ldrd r8, r9, [r7, #96] ; 0x60 + 8002940: 4649 mov r1, r9 + 8002942: 008b lsls r3, r1, #2 + 8002944: 4641 mov r1, r8 + 8002946: ea43 7391 orr.w r3, r3, r1, lsr #30 + 800294a: 4641 mov r1, r8 + 800294c: 008a lsls r2, r1, #2 + 800294e: e9d7 011a ldrd r0, r1, [r7, #104] ; 0x68 + 8002952: f7fd fc45 bl 80001e0 <__aeabi_uldivmod> + 8002956: 4602 mov r2, r0 + 8002958: 460b mov r3, r1 + 800295a: 4b0d ldr r3, [pc, #52] ; (8002990 ) + 800295c: fba3 1302 umull r1, r3, r3, r2 + 8002960: 095b lsrs r3, r3, #5 + 8002962: 2164 movs r1, #100 ; 0x64 + 8002964: fb01 f303 mul.w r3, r1, r3 + 8002968: 1ad3 subs r3, r2, r3 + 800296a: 011b lsls r3, r3, #4 + 800296c: 3332 adds r3, #50 ; 0x32 + 800296e: 4a08 ldr r2, [pc, #32] ; (8002990 ) + 8002970: fba2 2303 umull r2, r3, r2, r3 + 8002974: 095b lsrs r3, r3, #5 + 8002976: f003 020f and.w r2, r3, #15 + 800297a: f8d7 30f4 ldr.w r3, [r7, #244] ; 0xf4 + 800297e: 681b ldr r3, [r3, #0] + 8002980: 4422 add r2, r4 + 8002982: 609a str r2, [r3, #8] } - 8002908: bf00 nop - 800290a: f507 7780 add.w r7, r7, #256 ; 0x100 - 800290e: 46bd mov sp, r7 - 8002910: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} - 8002914: 51eb851f .word 0x51eb851f + 8002984: bf00 nop + 8002986: f507 7780 add.w r7, r7, #256 ; 0x100 + 800298a: 46bd mov sp, r7 + 800298c: e8bd 8fb0 ldmia.w sp!, {r4, r5, r7, r8, r9, sl, fp, pc} + 8002990: 51eb851f .word 0x51eb851f -08002918 <__NVIC_SetPriority>: +08002994 <__NVIC_SetPriority>: { - 8002918: b480 push {r7} - 800291a: b083 sub sp, #12 - 800291c: af00 add r7, sp, #0 - 800291e: 4603 mov r3, r0 - 8002920: 6039 str r1, [r7, #0] - 8002922: 71fb strb r3, [r7, #7] + 8002994: b480 push {r7} + 8002996: b083 sub sp, #12 + 8002998: af00 add r7, sp, #0 + 800299a: 4603 mov r3, r0 + 800299c: 6039 str r1, [r7, #0] + 800299e: 71fb strb r3, [r7, #7] if ((int32_t)(IRQn) >= 0) - 8002924: f997 3007 ldrsb.w r3, [r7, #7] - 8002928: 2b00 cmp r3, #0 - 800292a: db0a blt.n 8002942 <__NVIC_SetPriority+0x2a> + 80029a0: f997 3007 ldrsb.w r3, [r7, #7] + 80029a4: 2b00 cmp r3, #0 + 80029a6: db0a blt.n 80029be <__NVIC_SetPriority+0x2a> NVIC->IP[((uint32_t)IRQn)] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 800292c: 683b ldr r3, [r7, #0] - 800292e: b2da uxtb r2, r3 - 8002930: 490c ldr r1, [pc, #48] ; (8002964 <__NVIC_SetPriority+0x4c>) - 8002932: f997 3007 ldrsb.w r3, [r7, #7] - 8002936: 0112 lsls r2, r2, #4 - 8002938: b2d2 uxtb r2, r2 - 800293a: 440b add r3, r1 - 800293c: f883 2300 strb.w r2, [r3, #768] ; 0x300 + 80029a8: 683b ldr r3, [r7, #0] + 80029aa: b2da uxtb r2, r3 + 80029ac: 490c ldr r1, [pc, #48] ; (80029e0 <__NVIC_SetPriority+0x4c>) + 80029ae: f997 3007 ldrsb.w r3, [r7, #7] + 80029b2: 0112 lsls r2, r2, #4 + 80029b4: b2d2 uxtb r2, r2 + 80029b6: 440b add r3, r1 + 80029b8: f883 2300 strb.w r2, [r3, #768] ; 0x300 } - 8002940: e00a b.n 8002958 <__NVIC_SetPriority+0x40> + 80029bc: e00a b.n 80029d4 <__NVIC_SetPriority+0x40> SCB->SHP[(((uint32_t)IRQn) & 0xFUL)-4UL] = (uint8_t)((priority << (8U - __NVIC_PRIO_BITS)) & (uint32_t)0xFFUL); - 8002942: 683b ldr r3, [r7, #0] - 8002944: b2da uxtb r2, r3 - 8002946: 4908 ldr r1, [pc, #32] ; (8002968 <__NVIC_SetPriority+0x50>) - 8002948: 79fb ldrb r3, [r7, #7] - 800294a: f003 030f and.w r3, r3, #15 - 800294e: 3b04 subs r3, #4 - 8002950: 0112 lsls r2, r2, #4 - 8002952: b2d2 uxtb r2, r2 - 8002954: 440b add r3, r1 - 8002956: 761a strb r2, [r3, #24] + 80029be: 683b ldr r3, [r7, #0] + 80029c0: b2da uxtb r2, r3 + 80029c2: 4908 ldr r1, [pc, #32] ; (80029e4 <__NVIC_SetPriority+0x50>) + 80029c4: 79fb ldrb r3, [r7, #7] + 80029c6: f003 030f and.w r3, r3, #15 + 80029ca: 3b04 subs r3, #4 + 80029cc: 0112 lsls r2, r2, #4 + 80029ce: b2d2 uxtb r2, r2 + 80029d0: 440b add r3, r1 + 80029d2: 761a strb r2, [r3, #24] } - 8002958: bf00 nop - 800295a: 370c adds r7, #12 - 800295c: 46bd mov sp, r7 - 800295e: f85d 7b04 ldr.w r7, [sp], #4 - 8002962: 4770 bx lr - 8002964: e000e100 .word 0xe000e100 - 8002968: e000ed00 .word 0xe000ed00 + 80029d4: bf00 nop + 80029d6: 370c adds r7, #12 + 80029d8: 46bd mov sp, r7 + 80029da: f85d 7b04 ldr.w r7, [sp], #4 + 80029de: 4770 bx lr + 80029e0: e000e100 .word 0xe000e100 + 80029e4: e000ed00 .word 0xe000ed00 -0800296c : +080029e8 : /* SysTick handler implementation that also clears overflow flag. */ #if (USE_CUSTOM_SYSTICK_HANDLER_IMPLEMENTATION == 0) void SysTick_Handler (void) { - 800296c: b580 push {r7, lr} - 800296e: af00 add r7, sp, #0 + 80029e8: b580 push {r7, lr} + 80029ea: af00 add r7, sp, #0 /* Clear overflow flag */ SysTick->CTRL; - 8002970: 4b05 ldr r3, [pc, #20] ; (8002988 ) - 8002972: 681b ldr r3, [r3, #0] + 80029ec: 4b05 ldr r3, [pc, #20] ; (8002a04 ) + 80029ee: 681b ldr r3, [r3, #0] if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { - 8002974: f001 fd0c bl 8004390 - 8002978: 4603 mov r3, r0 - 800297a: 2b01 cmp r3, #1 - 800297c: d001 beq.n 8002982 + 80029f0: f001 fd0c bl 800440c + 80029f4: 4603 mov r3, r0 + 80029f6: 2b01 cmp r3, #1 + 80029f8: d001 beq.n 80029fe /* Call tick handler */ xPortSysTickHandler(); - 800297e: f002 faf3 bl 8004f68 + 80029fa: f002 faf5 bl 8004fe8 } } - 8002982: bf00 nop - 8002984: bd80 pop {r7, pc} - 8002986: bf00 nop - 8002988: e000e010 .word 0xe000e010 + 80029fe: bf00 nop + 8002a00: bd80 pop {r7, pc} + 8002a02: bf00 nop + 8002a04: e000e010 .word 0xe000e010 -0800298c : +08002a08 : #endif /* SysTick */ /* Setup SVC to reset value. */ __STATIC_INLINE void SVC_Setup (void) { - 800298c: b580 push {r7, lr} - 800298e: af00 add r7, sp, #0 + 8002a08: b580 push {r7, lr} + 8002a0a: af00 add r7, sp, #0 #if (__ARM_ARCH_7A__ == 0U) /* Service Call interrupt might be configured before kernel start */ /* and when its priority is lower or equal to BASEPRI, svc intruction */ /* causes a Hard Fault. */ NVIC_SetPriority (SVCall_IRQ_NBR, 0U); - 8002990: 2100 movs r1, #0 - 8002992: f06f 0004 mvn.w r0, #4 - 8002996: f7ff ffbf bl 8002918 <__NVIC_SetPriority> + 8002a0c: 2100 movs r1, #0 + 8002a0e: f06f 0004 mvn.w r0, #4 + 8002a12: f7ff ffbf bl 8002994 <__NVIC_SetPriority> #endif } - 800299a: bf00 nop - 800299c: bd80 pop {r7, pc} + 8002a16: bf00 nop + 8002a18: bd80 pop {r7, pc} ... -080029a0 : +08002a1c : static uint32_t OS_Tick_GetOverflow (void); /* Get OS Tick interval */ static uint32_t OS_Tick_GetInterval (void); /*---------------------------------------------------------------------------*/ osStatus_t osKernelInitialize (void) { - 80029a0: b480 push {r7} - 80029a2: b083 sub sp, #12 - 80029a4: af00 add r7, sp, #0 + 8002a1c: b480 push {r7} + 8002a1e: b083 sub sp, #12 + 8002a20: af00 add r7, sp, #0 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 80029a6: f3ef 8305 mrs r3, IPSR - 80029aa: 603b str r3, [r7, #0] + 8002a22: f3ef 8305 mrs r3, IPSR + 8002a26: 603b str r3, [r7, #0] return(result); - 80029ac: 683b ldr r3, [r7, #0] + 8002a28: 683b ldr r3, [r7, #0] osStatus_t stat; if (IS_IRQ()) { - 80029ae: 2b00 cmp r3, #0 - 80029b0: d003 beq.n 80029ba + 8002a2a: 2b00 cmp r3, #0 + 8002a2c: d003 beq.n 8002a36 stat = osErrorISR; - 80029b2: f06f 0305 mvn.w r3, #5 - 80029b6: 607b str r3, [r7, #4] - 80029b8: e00c b.n 80029d4 + 8002a2e: f06f 0305 mvn.w r3, #5 + 8002a32: 607b str r3, [r7, #4] + 8002a34: e00c b.n 8002a50 } else { if (KernelState == osKernelInactive) { - 80029ba: 4b0a ldr r3, [pc, #40] ; (80029e4 ) - 80029bc: 681b ldr r3, [r3, #0] - 80029be: 2b00 cmp r3, #0 - 80029c0: d105 bne.n 80029ce + 8002a36: 4b0a ldr r3, [pc, #40] ; (8002a60 ) + 8002a38: 681b ldr r3, [r3, #0] + 8002a3a: 2b00 cmp r3, #0 + 8002a3c: d105 bne.n 8002a4a EvrFreeRTOSSetup(0U); #endif #if defined(USE_FreeRTOS_HEAP_5) && (HEAP_5_REGION_SETUP == 1) vPortDefineHeapRegions (configHEAP_5_REGIONS); #endif KernelState = osKernelReady; - 80029c2: 4b08 ldr r3, [pc, #32] ; (80029e4 ) - 80029c4: 2201 movs r2, #1 - 80029c6: 601a str r2, [r3, #0] + 8002a3e: 4b08 ldr r3, [pc, #32] ; (8002a60 ) + 8002a40: 2201 movs r2, #1 + 8002a42: 601a str r2, [r3, #0] stat = osOK; - 80029c8: 2300 movs r3, #0 - 80029ca: 607b str r3, [r7, #4] - 80029cc: e002 b.n 80029d4 + 8002a44: 2300 movs r3, #0 + 8002a46: 607b str r3, [r7, #4] + 8002a48: e002 b.n 8002a50 } else { stat = osError; - 80029ce: f04f 33ff mov.w r3, #4294967295 - 80029d2: 607b str r3, [r7, #4] + 8002a4a: f04f 33ff mov.w r3, #4294967295 + 8002a4e: 607b str r3, [r7, #4] } } return (stat); - 80029d4: 687b ldr r3, [r7, #4] + 8002a50: 687b ldr r3, [r7, #4] } - 80029d6: 4618 mov r0, r3 - 80029d8: 370c adds r7, #12 - 80029da: 46bd mov sp, r7 - 80029dc: f85d 7b04 ldr.w r7, [sp], #4 - 80029e0: 4770 bx lr - 80029e2: bf00 nop - 80029e4: 2000012c .word 0x2000012c + 8002a52: 4618 mov r0, r3 + 8002a54: 370c adds r7, #12 + 8002a56: 46bd mov sp, r7 + 8002a58: f85d 7b04 ldr.w r7, [sp], #4 + 8002a5c: 4770 bx lr + 8002a5e: bf00 nop + 8002a60: 2000012c .word 0x2000012c -080029e8 : +08002a64 : } return (state); } osStatus_t osKernelStart (void) { - 80029e8: b580 push {r7, lr} - 80029ea: b082 sub sp, #8 - 80029ec: af00 add r7, sp, #0 + 8002a64: b580 push {r7, lr} + 8002a66: b082 sub sp, #8 + 8002a68: af00 add r7, sp, #0 __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 80029ee: f3ef 8305 mrs r3, IPSR - 80029f2: 603b str r3, [r7, #0] + 8002a6a: f3ef 8305 mrs r3, IPSR + 8002a6e: 603b str r3, [r7, #0] return(result); - 80029f4: 683b ldr r3, [r7, #0] + 8002a70: 683b ldr r3, [r7, #0] osStatus_t stat; if (IS_IRQ()) { - 80029f6: 2b00 cmp r3, #0 - 80029f8: d003 beq.n 8002a02 + 8002a72: 2b00 cmp r3, #0 + 8002a74: d003 beq.n 8002a7e stat = osErrorISR; - 80029fa: f06f 0305 mvn.w r3, #5 - 80029fe: 607b str r3, [r7, #4] - 8002a00: e010 b.n 8002a24 + 8002a76: f06f 0305 mvn.w r3, #5 + 8002a7a: 607b str r3, [r7, #4] + 8002a7c: e010 b.n 8002aa0 } else { if (KernelState == osKernelReady) { - 8002a02: 4b0b ldr r3, [pc, #44] ; (8002a30 ) - 8002a04: 681b ldr r3, [r3, #0] - 8002a06: 2b01 cmp r3, #1 - 8002a08: d109 bne.n 8002a1e + 8002a7e: 4b0b ldr r3, [pc, #44] ; (8002aac ) + 8002a80: 681b ldr r3, [r3, #0] + 8002a82: 2b01 cmp r3, #1 + 8002a84: d109 bne.n 8002a9a /* Ensure SVC priority is at the reset value */ SVC_Setup(); - 8002a0a: f7ff ffbf bl 800298c + 8002a86: f7ff ffbf bl 8002a08 /* Change state to enable IRQ masking check */ KernelState = osKernelRunning; - 8002a0e: 4b08 ldr r3, [pc, #32] ; (8002a30 ) - 8002a10: 2202 movs r2, #2 - 8002a12: 601a str r2, [r3, #0] + 8002a8a: 4b08 ldr r3, [pc, #32] ; (8002aac ) + 8002a8c: 2202 movs r2, #2 + 8002a8e: 601a str r2, [r3, #0] /* Start the kernel scheduler */ vTaskStartScheduler(); - 8002a14: f001 f860 bl 8003ad8 + 8002a90: f001 f860 bl 8003b54 stat = osOK; - 8002a18: 2300 movs r3, #0 - 8002a1a: 607b str r3, [r7, #4] - 8002a1c: e002 b.n 8002a24 + 8002a94: 2300 movs r3, #0 + 8002a96: 607b str r3, [r7, #4] + 8002a98: e002 b.n 8002aa0 } else { stat = osError; - 8002a1e: f04f 33ff mov.w r3, #4294967295 - 8002a22: 607b str r3, [r7, #4] + 8002a9a: f04f 33ff mov.w r3, #4294967295 + 8002a9e: 607b str r3, [r7, #4] } } return (stat); - 8002a24: 687b ldr r3, [r7, #4] + 8002aa0: 687b ldr r3, [r7, #4] } - 8002a26: 4618 mov r0, r3 - 8002a28: 3708 adds r7, #8 - 8002a2a: 46bd mov sp, r7 - 8002a2c: bd80 pop {r7, pc} - 8002a2e: bf00 nop - 8002a30: 2000012c .word 0x2000012c + 8002aa2: 4618 mov r0, r3 + 8002aa4: 3708 adds r7, #8 + 8002aa6: 46bd mov sp, r7 + 8002aa8: bd80 pop {r7, pc} + 8002aaa: bf00 nop + 8002aac: 2000012c .word 0x2000012c -08002a34 : +08002ab0 : return (configCPU_CLOCK_HZ); } /*---------------------------------------------------------------------------*/ osThreadId_t osThreadNew (osThreadFunc_t func, void *argument, const osThreadAttr_t *attr) { - 8002a34: b580 push {r7, lr} - 8002a36: b08e sub sp, #56 ; 0x38 - 8002a38: af04 add r7, sp, #16 - 8002a3a: 60f8 str r0, [r7, #12] - 8002a3c: 60b9 str r1, [r7, #8] - 8002a3e: 607a str r2, [r7, #4] + 8002ab0: b580 push {r7, lr} + 8002ab2: b08e sub sp, #56 ; 0x38 + 8002ab4: af04 add r7, sp, #16 + 8002ab6: 60f8 str r0, [r7, #12] + 8002ab8: 60b9 str r1, [r7, #8] + 8002aba: 607a str r2, [r7, #4] uint32_t stack; TaskHandle_t hTask; UBaseType_t prio; int32_t mem; hTask = NULL; - 8002a40: 2300 movs r3, #0 - 8002a42: 613b str r3, [r7, #16] + 8002abc: 2300 movs r3, #0 + 8002abe: 613b str r3, [r7, #16] __ASM volatile ("MRS %0, ipsr" : "=r" (result) ); - 8002a44: f3ef 8305 mrs r3, IPSR - 8002a48: 617b str r3, [r7, #20] + 8002ac0: f3ef 8305 mrs r3, IPSR + 8002ac4: 617b str r3, [r7, #20] return(result); - 8002a4a: 697b ldr r3, [r7, #20] + 8002ac6: 697b ldr r3, [r7, #20] if (!IS_IRQ() && (func != NULL)) { - 8002a4c: 2b00 cmp r3, #0 - 8002a4e: d17e bne.n 8002b4e - 8002a50: 68fb ldr r3, [r7, #12] - 8002a52: 2b00 cmp r3, #0 - 8002a54: d07b beq.n 8002b4e + 8002ac8: 2b00 cmp r3, #0 + 8002aca: d17e bne.n 8002bca + 8002acc: 68fb ldr r3, [r7, #12] + 8002ace: 2b00 cmp r3, #0 + 8002ad0: d07b beq.n 8002bca stack = configMINIMAL_STACK_SIZE; - 8002a56: 2380 movs r3, #128 ; 0x80 - 8002a58: 623b str r3, [r7, #32] + 8002ad2: 2380 movs r3, #128 ; 0x80 + 8002ad4: 623b str r3, [r7, #32] prio = (UBaseType_t)osPriorityNormal; - 8002a5a: 2318 movs r3, #24 - 8002a5c: 61fb str r3, [r7, #28] + 8002ad6: 2318 movs r3, #24 + 8002ad8: 61fb str r3, [r7, #28] name = NULL; - 8002a5e: 2300 movs r3, #0 - 8002a60: 627b str r3, [r7, #36] ; 0x24 + 8002ada: 2300 movs r3, #0 + 8002adc: 627b str r3, [r7, #36] ; 0x24 mem = -1; - 8002a62: f04f 33ff mov.w r3, #4294967295 - 8002a66: 61bb str r3, [r7, #24] + 8002ade: f04f 33ff mov.w r3, #4294967295 + 8002ae2: 61bb str r3, [r7, #24] if (attr != NULL) { - 8002a68: 687b ldr r3, [r7, #4] - 8002a6a: 2b00 cmp r3, #0 - 8002a6c: d045 beq.n 8002afa + 8002ae4: 687b ldr r3, [r7, #4] + 8002ae6: 2b00 cmp r3, #0 + 8002ae8: d045 beq.n 8002b76 if (attr->name != NULL) { - 8002a6e: 687b ldr r3, [r7, #4] - 8002a70: 681b ldr r3, [r3, #0] - 8002a72: 2b00 cmp r3, #0 - 8002a74: d002 beq.n 8002a7c + 8002aea: 687b ldr r3, [r7, #4] + 8002aec: 681b ldr r3, [r3, #0] + 8002aee: 2b00 cmp r3, #0 + 8002af0: d002 beq.n 8002af8 name = attr->name; - 8002a76: 687b ldr r3, [r7, #4] - 8002a78: 681b ldr r3, [r3, #0] - 8002a7a: 627b str r3, [r7, #36] ; 0x24 + 8002af2: 687b ldr r3, [r7, #4] + 8002af4: 681b ldr r3, [r3, #0] + 8002af6: 627b str r3, [r7, #36] ; 0x24 } if (attr->priority != osPriorityNone) { - 8002a7c: 687b ldr r3, [r7, #4] - 8002a7e: 699b ldr r3, [r3, #24] - 8002a80: 2b00 cmp r3, #0 - 8002a82: d002 beq.n 8002a8a + 8002af8: 687b ldr r3, [r7, #4] + 8002afa: 699b ldr r3, [r3, #24] + 8002afc: 2b00 cmp r3, #0 + 8002afe: d002 beq.n 8002b06 prio = (UBaseType_t)attr->priority; - 8002a84: 687b ldr r3, [r7, #4] - 8002a86: 699b ldr r3, [r3, #24] - 8002a88: 61fb str r3, [r7, #28] + 8002b00: 687b ldr r3, [r7, #4] + 8002b02: 699b ldr r3, [r3, #24] + 8002b04: 61fb str r3, [r7, #28] } if ((prio < osPriorityIdle) || (prio > osPriorityISR) || ((attr->attr_bits & osThreadJoinable) == osThreadJoinable)) { - 8002a8a: 69fb ldr r3, [r7, #28] - 8002a8c: 2b00 cmp r3, #0 - 8002a8e: d008 beq.n 8002aa2 - 8002a90: 69fb ldr r3, [r7, #28] - 8002a92: 2b38 cmp r3, #56 ; 0x38 - 8002a94: d805 bhi.n 8002aa2 - 8002a96: 687b ldr r3, [r7, #4] - 8002a98: 685b ldr r3, [r3, #4] - 8002a9a: f003 0301 and.w r3, r3, #1 - 8002a9e: 2b00 cmp r3, #0 - 8002aa0: d001 beq.n 8002aa6 + 8002b06: 69fb ldr r3, [r7, #28] + 8002b08: 2b00 cmp r3, #0 + 8002b0a: d008 beq.n 8002b1e + 8002b0c: 69fb ldr r3, [r7, #28] + 8002b0e: 2b38 cmp r3, #56 ; 0x38 + 8002b10: d805 bhi.n 8002b1e + 8002b12: 687b ldr r3, [r7, #4] + 8002b14: 685b ldr r3, [r3, #4] + 8002b16: f003 0301 and.w r3, r3, #1 + 8002b1a: 2b00 cmp r3, #0 + 8002b1c: d001 beq.n 8002b22 return (NULL); - 8002aa2: 2300 movs r3, #0 - 8002aa4: e054 b.n 8002b50 + 8002b1e: 2300 movs r3, #0 + 8002b20: e054 b.n 8002bcc } if (attr->stack_size > 0U) { - 8002aa6: 687b ldr r3, [r7, #4] - 8002aa8: 695b ldr r3, [r3, #20] - 8002aaa: 2b00 cmp r3, #0 - 8002aac: d003 beq.n 8002ab6 + 8002b22: 687b ldr r3, [r7, #4] + 8002b24: 695b ldr r3, [r3, #20] + 8002b26: 2b00 cmp r3, #0 + 8002b28: d003 beq.n 8002b32 /* In FreeRTOS stack is not in bytes, but in sizeof(StackType_t) which is 4 on ARM ports. */ /* Stack size should be therefore 4 byte aligned in order to avoid division caused side effects */ stack = attr->stack_size / sizeof(StackType_t); - 8002aae: 687b ldr r3, [r7, #4] - 8002ab0: 695b ldr r3, [r3, #20] - 8002ab2: 089b lsrs r3, r3, #2 - 8002ab4: 623b str r3, [r7, #32] + 8002b2a: 687b ldr r3, [r7, #4] + 8002b2c: 695b ldr r3, [r3, #20] + 8002b2e: 089b lsrs r3, r3, #2 + 8002b30: 623b str r3, [r7, #32] } if ((attr->cb_mem != NULL) && (attr->cb_size >= sizeof(StaticTask_t)) && - 8002ab6: 687b ldr r3, [r7, #4] - 8002ab8: 689b ldr r3, [r3, #8] - 8002aba: 2b00 cmp r3, #0 - 8002abc: d00e beq.n 8002adc - 8002abe: 687b ldr r3, [r7, #4] - 8002ac0: 68db ldr r3, [r3, #12] - 8002ac2: 2ba7 cmp r3, #167 ; 0xa7 - 8002ac4: d90a bls.n 8002adc + 8002b32: 687b ldr r3, [r7, #4] + 8002b34: 689b ldr r3, [r3, #8] + 8002b36: 2b00 cmp r3, #0 + 8002b38: d00e beq.n 8002b58 + 8002b3a: 687b ldr r3, [r7, #4] + 8002b3c: 68db ldr r3, [r3, #12] + 8002b3e: 2ba7 cmp r3, #167 ; 0xa7 + 8002b40: d90a bls.n 8002b58 (attr->stack_mem != NULL) && (attr->stack_size > 0U)) { - 8002ac6: 687b ldr r3, [r7, #4] - 8002ac8: 691b ldr r3, [r3, #16] + 8002b42: 687b ldr r3, [r7, #4] + 8002b44: 691b ldr r3, [r3, #16] if ((attr->cb_mem != NULL) && (attr->cb_size >= sizeof(StaticTask_t)) && - 8002aca: 2b00 cmp r3, #0 - 8002acc: d006 beq.n 8002adc + 8002b46: 2b00 cmp r3, #0 + 8002b48: d006 beq.n 8002b58 (attr->stack_mem != NULL) && (attr->stack_size > 0U)) { - 8002ace: 687b ldr r3, [r7, #4] - 8002ad0: 695b ldr r3, [r3, #20] - 8002ad2: 2b00 cmp r3, #0 - 8002ad4: d002 beq.n 8002adc + 8002b4a: 687b ldr r3, [r7, #4] + 8002b4c: 695b ldr r3, [r3, #20] + 8002b4e: 2b00 cmp r3, #0 + 8002b50: d002 beq.n 8002b58 mem = 1; - 8002ad6: 2301 movs r3, #1 - 8002ad8: 61bb str r3, [r7, #24] - 8002ada: e010 b.n 8002afe + 8002b52: 2301 movs r3, #1 + 8002b54: 61bb str r3, [r7, #24] + 8002b56: e010 b.n 8002b7a } else { if ((attr->cb_mem == NULL) && (attr->cb_size == 0U) && (attr->stack_mem == NULL)) { - 8002adc: 687b ldr r3, [r7, #4] - 8002ade: 689b ldr r3, [r3, #8] - 8002ae0: 2b00 cmp r3, #0 - 8002ae2: d10c bne.n 8002afe - 8002ae4: 687b ldr r3, [r7, #4] - 8002ae6: 68db ldr r3, [r3, #12] - 8002ae8: 2b00 cmp r3, #0 - 8002aea: d108 bne.n 8002afe - 8002aec: 687b ldr r3, [r7, #4] - 8002aee: 691b ldr r3, [r3, #16] - 8002af0: 2b00 cmp r3, #0 - 8002af2: d104 bne.n 8002afe + 8002b58: 687b ldr r3, [r7, #4] + 8002b5a: 689b ldr r3, [r3, #8] + 8002b5c: 2b00 cmp r3, #0 + 8002b5e: d10c bne.n 8002b7a + 8002b60: 687b ldr r3, [r7, #4] + 8002b62: 68db ldr r3, [r3, #12] + 8002b64: 2b00 cmp r3, #0 + 8002b66: d108 bne.n 8002b7a + 8002b68: 687b ldr r3, [r7, #4] + 8002b6a: 691b ldr r3, [r3, #16] + 8002b6c: 2b00 cmp r3, #0 + 8002b6e: d104 bne.n 8002b7a mem = 0; - 8002af4: 2300 movs r3, #0 - 8002af6: 61bb str r3, [r7, #24] - 8002af8: e001 b.n 8002afe + 8002b70: 2300 movs r3, #0 + 8002b72: 61bb str r3, [r7, #24] + 8002b74: e001 b.n 8002b7a } } } else { mem = 0; - 8002afa: 2300 movs r3, #0 - 8002afc: 61bb str r3, [r7, #24] + 8002b76: 2300 movs r3, #0 + 8002b78: 61bb str r3, [r7, #24] } if (mem == 1) { - 8002afe: 69bb ldr r3, [r7, #24] - 8002b00: 2b01 cmp r3, #1 - 8002b02: d110 bne.n 8002b26 + 8002b7a: 69bb ldr r3, [r7, #24] + 8002b7c: 2b01 cmp r3, #1 + 8002b7e: d110 bne.n 8002ba2 #if (configSUPPORT_STATIC_ALLOCATION == 1) hTask = xTaskCreateStatic ((TaskFunction_t)func, name, stack, argument, prio, (StackType_t *)attr->stack_mem, - 8002b04: 687b ldr r3, [r7, #4] - 8002b06: 691b ldr r3, [r3, #16] + 8002b80: 687b ldr r3, [r7, #4] + 8002b82: 691b ldr r3, [r3, #16] (StaticTask_t *)attr->cb_mem); - 8002b08: 687a ldr r2, [r7, #4] - 8002b0a: 6892 ldr r2, [r2, #8] + 8002b84: 687a ldr r2, [r7, #4] + 8002b86: 6892 ldr r2, [r2, #8] hTask = xTaskCreateStatic ((TaskFunction_t)func, name, stack, argument, prio, (StackType_t *)attr->stack_mem, - 8002b0c: 9202 str r2, [sp, #8] - 8002b0e: 9301 str r3, [sp, #4] - 8002b10: 69fb ldr r3, [r7, #28] - 8002b12: 9300 str r3, [sp, #0] - 8002b14: 68bb ldr r3, [r7, #8] - 8002b16: 6a3a ldr r2, [r7, #32] - 8002b18: 6a79 ldr r1, [r7, #36] ; 0x24 - 8002b1a: 68f8 ldr r0, [r7, #12] - 8002b1c: f000 fdf0 bl 8003700 - 8002b20: 4603 mov r3, r0 - 8002b22: 613b str r3, [r7, #16] - 8002b24: e013 b.n 8002b4e + 8002b88: 9202 str r2, [sp, #8] + 8002b8a: 9301 str r3, [sp, #4] + 8002b8c: 69fb ldr r3, [r7, #28] + 8002b8e: 9300 str r3, [sp, #0] + 8002b90: 68bb ldr r3, [r7, #8] + 8002b92: 6a3a ldr r2, [r7, #32] + 8002b94: 6a79 ldr r1, [r7, #36] ; 0x24 + 8002b96: 68f8 ldr r0, [r7, #12] + 8002b98: f000 fdf0 bl 800377c + 8002b9c: 4603 mov r3, r0 + 8002b9e: 613b str r3, [r7, #16] + 8002ba0: e013 b.n 8002bca #endif } else { if (mem == 0) { - 8002b26: 69bb ldr r3, [r7, #24] - 8002b28: 2b00 cmp r3, #0 - 8002b2a: d110 bne.n 8002b4e + 8002ba2: 69bb ldr r3, [r7, #24] + 8002ba4: 2b00 cmp r3, #0 + 8002ba6: d110 bne.n 8002bca #if (configSUPPORT_DYNAMIC_ALLOCATION == 1) if (xTaskCreate ((TaskFunction_t)func, name, (uint16_t)stack, argument, prio, &hTask) != pdPASS) { - 8002b2c: 6a3b ldr r3, [r7, #32] - 8002b2e: b29a uxth r2, r3 - 8002b30: f107 0310 add.w r3, r7, #16 - 8002b34: 9301 str r3, [sp, #4] - 8002b36: 69fb ldr r3, [r7, #28] - 8002b38: 9300 str r3, [sp, #0] - 8002b3a: 68bb ldr r3, [r7, #8] - 8002b3c: 6a79 ldr r1, [r7, #36] ; 0x24 - 8002b3e: 68f8 ldr r0, [r7, #12] - 8002b40: f000 fe3b bl 80037ba - 8002b44: 4603 mov r3, r0 - 8002b46: 2b01 cmp r3, #1 - 8002b48: d001 beq.n 8002b4e + 8002ba8: 6a3b ldr r3, [r7, #32] + 8002baa: b29a uxth r2, r3 + 8002bac: f107 0310 add.w r3, r7, #16 + 8002bb0: 9301 str r3, [sp, #4] + 8002bb2: 69fb ldr r3, [r7, #28] + 8002bb4: 9300 str r3, [sp, #0] + 8002bb6: 68bb ldr r3, [r7, #8] + 8002bb8: 6a79 ldr r1, [r7, #36] ; 0x24 + 8002bba: 68f8 ldr r0, [r7, #12] + 8002bbc: f000 fe3b bl 8003836 + 8002bc0: 4603 mov r3, r0 + 8002bc2: 2b01 cmp r3, #1 + 8002bc4: d001 beq.n 8002bca hTask = NULL; - 8002b4a: 2300 movs r3, #0 - 8002b4c: 613b str r3, [r7, #16] + 8002bc6: 2300 movs r3, #0 + 8002bc8: 613b str r3, [r7, #16] #endif } } } return ((osThreadId_t)hTask); - 8002b4e: 693b ldr r3, [r7, #16] + 8002bca: 693b ldr r3, [r7, #16] } - 8002b50: 4618 mov r0, r3 - 8002b52: 3728 adds r7, #40 ; 0x28 - 8002b54: 46bd mov sp, r7 - 8002b56: bd80 pop {r7, pc} + 8002bcc: 4618 mov r0, r3 + 8002bce: 3728 adds r7, #40 ; 0x28 + 8002bd0: 46bd mov sp, r7 + 8002bd2: bd80 pop {r7, pc} -08002b58 : +08002bd4 : /* vApplicationGetIdleTaskMemory gets called when configSUPPORT_STATIC_ALLOCATION equals to 1 and is required for static memory allocation support. */ __WEAK void vApplicationGetIdleTaskMemory (StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize) { - 8002b58: b480 push {r7} - 8002b5a: b085 sub sp, #20 - 8002b5c: af00 add r7, sp, #0 - 8002b5e: 60f8 str r0, [r7, #12] - 8002b60: 60b9 str r1, [r7, #8] - 8002b62: 607a str r2, [r7, #4] + 8002bd4: b480 push {r7} + 8002bd6: b085 sub sp, #20 + 8002bd8: af00 add r7, sp, #0 + 8002bda: 60f8 str r0, [r7, #12] + 8002bdc: 60b9 str r1, [r7, #8] + 8002bde: 607a str r2, [r7, #4] /* Idle task control block and stack */ static StaticTask_t Idle_TCB; static StackType_t Idle_Stack[configMINIMAL_STACK_SIZE]; *ppxIdleTaskTCBBuffer = &Idle_TCB; - 8002b64: 68fb ldr r3, [r7, #12] - 8002b66: 4a07 ldr r2, [pc, #28] ; (8002b84 ) - 8002b68: 601a str r2, [r3, #0] + 8002be0: 68fb ldr r3, [r7, #12] + 8002be2: 4a07 ldr r2, [pc, #28] ; (8002c00 ) + 8002be4: 601a str r2, [r3, #0] *ppxIdleTaskStackBuffer = &Idle_Stack[0]; - 8002b6a: 68bb ldr r3, [r7, #8] - 8002b6c: 4a06 ldr r2, [pc, #24] ; (8002b88 ) - 8002b6e: 601a str r2, [r3, #0] + 8002be6: 68bb ldr r3, [r7, #8] + 8002be8: 4a06 ldr r2, [pc, #24] ; (8002c04 ) + 8002bea: 601a str r2, [r3, #0] *pulIdleTaskStackSize = (uint32_t)configMINIMAL_STACK_SIZE; - 8002b70: 687b ldr r3, [r7, #4] - 8002b72: 2280 movs r2, #128 ; 0x80 - 8002b74: 601a str r2, [r3, #0] + 8002bec: 687b ldr r3, [r7, #4] + 8002bee: 2280 movs r2, #128 ; 0x80 + 8002bf0: 601a str r2, [r3, #0] } - 8002b76: bf00 nop - 8002b78: 3714 adds r7, #20 - 8002b7a: 46bd mov sp, r7 - 8002b7c: f85d 7b04 ldr.w r7, [sp], #4 - 8002b80: 4770 bx lr - 8002b82: bf00 nop - 8002b84: 20000130 .word 0x20000130 - 8002b88: 200001d8 .word 0x200001d8 + 8002bf2: bf00 nop + 8002bf4: 3714 adds r7, #20 + 8002bf6: 46bd mov sp, r7 + 8002bf8: f85d 7b04 ldr.w r7, [sp], #4 + 8002bfc: 4770 bx lr + 8002bfe: bf00 nop + 8002c00: 20000130 .word 0x20000130 + 8002c04: 200001d8 .word 0x200001d8 -08002b8c : +08002c08 : /* vApplicationGetTimerTaskMemory gets called when configSUPPORT_STATIC_ALLOCATION equals to 1 and is required for static memory allocation support. */ __WEAK void vApplicationGetTimerTaskMemory (StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize) { - 8002b8c: b480 push {r7} - 8002b8e: b085 sub sp, #20 - 8002b90: af00 add r7, sp, #0 - 8002b92: 60f8 str r0, [r7, #12] - 8002b94: 60b9 str r1, [r7, #8] - 8002b96: 607a str r2, [r7, #4] + 8002c08: b480 push {r7} + 8002c0a: b085 sub sp, #20 + 8002c0c: af00 add r7, sp, #0 + 8002c0e: 60f8 str r0, [r7, #12] + 8002c10: 60b9 str r1, [r7, #8] + 8002c12: 607a str r2, [r7, #4] /* Timer task control block and stack */ static StaticTask_t Timer_TCB; static StackType_t Timer_Stack[configTIMER_TASK_STACK_DEPTH]; *ppxTimerTaskTCBBuffer = &Timer_TCB; - 8002b98: 68fb ldr r3, [r7, #12] - 8002b9a: 4a07 ldr r2, [pc, #28] ; (8002bb8 ) - 8002b9c: 601a str r2, [r3, #0] + 8002c14: 68fb ldr r3, [r7, #12] + 8002c16: 4a07 ldr r2, [pc, #28] ; (8002c34 ) + 8002c18: 601a str r2, [r3, #0] *ppxTimerTaskStackBuffer = &Timer_Stack[0]; - 8002b9e: 68bb ldr r3, [r7, #8] - 8002ba0: 4a06 ldr r2, [pc, #24] ; (8002bbc ) - 8002ba2: 601a str r2, [r3, #0] + 8002c1a: 68bb ldr r3, [r7, #8] + 8002c1c: 4a06 ldr r2, [pc, #24] ; (8002c38 ) + 8002c1e: 601a str r2, [r3, #0] *pulTimerTaskStackSize = (uint32_t)configTIMER_TASK_STACK_DEPTH; - 8002ba4: 687b ldr r3, [r7, #4] - 8002ba6: f44f 7280 mov.w r2, #256 ; 0x100 - 8002baa: 601a str r2, [r3, #0] + 8002c20: 687b ldr r3, [r7, #4] + 8002c22: f44f 7280 mov.w r2, #256 ; 0x100 + 8002c26: 601a str r2, [r3, #0] } - 8002bac: bf00 nop - 8002bae: 3714 adds r7, #20 - 8002bb0: 46bd mov sp, r7 - 8002bb2: f85d 7b04 ldr.w r7, [sp], #4 - 8002bb6: 4770 bx lr - 8002bb8: 200003d8 .word 0x200003d8 - 8002bbc: 20000480 .word 0x20000480 + 8002c28: bf00 nop + 8002c2a: 3714 adds r7, #20 + 8002c2c: 46bd mov sp, r7 + 8002c2e: f85d 7b04 ldr.w r7, [sp], #4 + 8002c32: 4770 bx lr + 8002c34: 200003d8 .word 0x200003d8 + 8002c38: 20000480 .word 0x20000480 -08002bc0 : +08002c3c : /*----------------------------------------------------------- * PUBLIC LIST API documented in list.h *----------------------------------------------------------*/ void vListInitialise( List_t * const pxList ) { - 8002bc0: b480 push {r7} - 8002bc2: b083 sub sp, #12 - 8002bc4: af00 add r7, sp, #0 - 8002bc6: 6078 str r0, [r7, #4] + 8002c3c: b480 push {r7} + 8002c3e: b083 sub sp, #12 + 8002c40: af00 add r7, sp, #0 + 8002c42: 6078 str r0, [r7, #4] /* The list structure contains a list item which is used to mark the end of the list. To initialise the list the list end is inserted as the only list entry. */ pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - 8002bc8: 687b ldr r3, [r7, #4] - 8002bca: f103 0208 add.w r2, r3, #8 - 8002bce: 687b ldr r3, [r7, #4] - 8002bd0: 605a str r2, [r3, #4] + 8002c44: 687b ldr r3, [r7, #4] + 8002c46: f103 0208 add.w r2, r3, #8 + 8002c4a: 687b ldr r3, [r7, #4] + 8002c4c: 605a str r2, [r3, #4] /* The list end value is the highest possible value in the list to ensure it remains at the end of the list. */ pxList->xListEnd.xItemValue = portMAX_DELAY; - 8002bd2: 687b ldr r3, [r7, #4] - 8002bd4: f04f 32ff mov.w r2, #4294967295 - 8002bd8: 609a str r2, [r3, #8] + 8002c4e: 687b ldr r3, [r7, #4] + 8002c50: f04f 32ff mov.w r2, #4294967295 + 8002c54: 609a str r2, [r3, #8] /* The list end next and previous pointers point to itself so we know when the list is empty. */ pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - 8002bda: 687b ldr r3, [r7, #4] - 8002bdc: f103 0208 add.w r2, r3, #8 - 8002be0: 687b ldr r3, [r7, #4] - 8002be2: 60da str r2, [r3, #12] + 8002c56: 687b ldr r3, [r7, #4] + 8002c58: f103 0208 add.w r2, r3, #8 + 8002c5c: 687b ldr r3, [r7, #4] + 8002c5e: 60da str r2, [r3, #12] pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. */ - 8002be4: 687b ldr r3, [r7, #4] - 8002be6: f103 0208 add.w r2, r3, #8 - 8002bea: 687b ldr r3, [r7, #4] - 8002bec: 611a str r2, [r3, #16] + 8002c60: 687b ldr r3, [r7, #4] + 8002c62: f103 0208 add.w r2, r3, #8 + 8002c66: 687b ldr r3, [r7, #4] + 8002c68: 611a str r2, [r3, #16] pxList->uxNumberOfItems = ( UBaseType_t ) 0U; - 8002bee: 687b ldr r3, [r7, #4] - 8002bf0: 2200 movs r2, #0 - 8002bf2: 601a str r2, [r3, #0] + 8002c6a: 687b ldr r3, [r7, #4] + 8002c6c: 2200 movs r2, #0 + 8002c6e: 601a str r2, [r3, #0] /* Write known values into the list if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ); listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ); } - 8002bf4: bf00 nop - 8002bf6: 370c adds r7, #12 - 8002bf8: 46bd mov sp, r7 - 8002bfa: f85d 7b04 ldr.w r7, [sp], #4 - 8002bfe: 4770 bx lr + 8002c70: bf00 nop + 8002c72: 370c adds r7, #12 + 8002c74: 46bd mov sp, r7 + 8002c76: f85d 7b04 ldr.w r7, [sp], #4 + 8002c7a: 4770 bx lr -08002c00 : +08002c7c : /*-----------------------------------------------------------*/ void vListInitialiseItem( ListItem_t * const pxItem ) { - 8002c00: b480 push {r7} - 8002c02: b083 sub sp, #12 - 8002c04: af00 add r7, sp, #0 - 8002c06: 6078 str r0, [r7, #4] + 8002c7c: b480 push {r7} + 8002c7e: b083 sub sp, #12 + 8002c80: af00 add r7, sp, #0 + 8002c82: 6078 str r0, [r7, #4] /* Make sure the list item is not recorded as being on a list. */ pxItem->pxContainer = NULL; - 8002c08: 687b ldr r3, [r7, #4] - 8002c0a: 2200 movs r2, #0 - 8002c0c: 611a str r2, [r3, #16] + 8002c84: 687b ldr r3, [r7, #4] + 8002c86: 2200 movs r2, #0 + 8002c88: 611a str r2, [r3, #16] /* Write known values into the list item if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set to 1. */ listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE( pxItem ); } - 8002c0e: bf00 nop - 8002c10: 370c adds r7, #12 - 8002c12: 46bd mov sp, r7 - 8002c14: f85d 7b04 ldr.w r7, [sp], #4 - 8002c18: 4770 bx lr + 8002c8a: bf00 nop + 8002c8c: 370c adds r7, #12 + 8002c8e: 46bd mov sp, r7 + 8002c90: f85d 7b04 ldr.w r7, [sp], #4 + 8002c94: 4770 bx lr -08002c1a : +08002c96 : /*-----------------------------------------------------------*/ void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) { - 8002c1a: b480 push {r7} - 8002c1c: b085 sub sp, #20 - 8002c1e: af00 add r7, sp, #0 - 8002c20: 6078 str r0, [r7, #4] - 8002c22: 6039 str r1, [r7, #0] + 8002c96: b480 push {r7} + 8002c98: b085 sub sp, #20 + 8002c9a: af00 add r7, sp, #0 + 8002c9c: 6078 str r0, [r7, #4] + 8002c9e: 6039 str r1, [r7, #0] ListItem_t * const pxIndex = pxList->pxIndex; - 8002c24: 687b ldr r3, [r7, #4] - 8002c26: 685b ldr r3, [r3, #4] - 8002c28: 60fb str r3, [r7, #12] + 8002ca0: 687b ldr r3, [r7, #4] + 8002ca2: 685b ldr r3, [r3, #4] + 8002ca4: 60fb str r3, [r7, #12] listTEST_LIST_ITEM_INTEGRITY( pxNewListItem ); /* Insert a new list item into pxList, but rather than sort the list, makes the new list item the last item to be removed by a call to listGET_OWNER_OF_NEXT_ENTRY(). */ pxNewListItem->pxNext = pxIndex; - 8002c2a: 683b ldr r3, [r7, #0] - 8002c2c: 68fa ldr r2, [r7, #12] - 8002c2e: 605a str r2, [r3, #4] + 8002ca6: 683b ldr r3, [r7, #0] + 8002ca8: 68fa ldr r2, [r7, #12] + 8002caa: 605a str r2, [r3, #4] pxNewListItem->pxPrevious = pxIndex->pxPrevious; - 8002c30: 68fb ldr r3, [r7, #12] - 8002c32: 689a ldr r2, [r3, #8] - 8002c34: 683b ldr r3, [r7, #0] - 8002c36: 609a str r2, [r3, #8] + 8002cac: 68fb ldr r3, [r7, #12] + 8002cae: 689a ldr r2, [r3, #8] + 8002cb0: 683b ldr r3, [r7, #0] + 8002cb2: 609a str r2, [r3, #8] /* Only used during decision coverage testing. */ mtCOVERAGE_TEST_DELAY(); pxIndex->pxPrevious->pxNext = pxNewListItem; - 8002c38: 68fb ldr r3, [r7, #12] - 8002c3a: 689b ldr r3, [r3, #8] - 8002c3c: 683a ldr r2, [r7, #0] - 8002c3e: 605a str r2, [r3, #4] + 8002cb4: 68fb ldr r3, [r7, #12] + 8002cb6: 689b ldr r3, [r3, #8] + 8002cb8: 683a ldr r2, [r7, #0] + 8002cba: 605a str r2, [r3, #4] pxIndex->pxPrevious = pxNewListItem; - 8002c40: 68fb ldr r3, [r7, #12] - 8002c42: 683a ldr r2, [r7, #0] - 8002c44: 609a str r2, [r3, #8] + 8002cbc: 68fb ldr r3, [r7, #12] + 8002cbe: 683a ldr r2, [r7, #0] + 8002cc0: 609a str r2, [r3, #8] /* Remember which list the item is in. */ pxNewListItem->pxContainer = pxList; - 8002c46: 683b ldr r3, [r7, #0] - 8002c48: 687a ldr r2, [r7, #4] - 8002c4a: 611a str r2, [r3, #16] + 8002cc2: 683b ldr r3, [r7, #0] + 8002cc4: 687a ldr r2, [r7, #4] + 8002cc6: 611a str r2, [r3, #16] ( pxList->uxNumberOfItems )++; - 8002c4c: 687b ldr r3, [r7, #4] - 8002c4e: 681b ldr r3, [r3, #0] - 8002c50: 1c5a adds r2, r3, #1 - 8002c52: 687b ldr r3, [r7, #4] - 8002c54: 601a str r2, [r3, #0] + 8002cc8: 687b ldr r3, [r7, #4] + 8002cca: 681b ldr r3, [r3, #0] + 8002ccc: 1c5a adds r2, r3, #1 + 8002cce: 687b ldr r3, [r7, #4] + 8002cd0: 601a str r2, [r3, #0] } - 8002c56: bf00 nop - 8002c58: 3714 adds r7, #20 - 8002c5a: 46bd mov sp, r7 - 8002c5c: f85d 7b04 ldr.w r7, [sp], #4 - 8002c60: 4770 bx lr + 8002cd2: bf00 nop + 8002cd4: 3714 adds r7, #20 + 8002cd6: 46bd mov sp, r7 + 8002cd8: f85d 7b04 ldr.w r7, [sp], #4 + 8002cdc: 4770 bx lr -08002c62 : +08002cde : /*-----------------------------------------------------------*/ void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) { - 8002c62: b480 push {r7} - 8002c64: b085 sub sp, #20 - 8002c66: af00 add r7, sp, #0 - 8002c68: 6078 str r0, [r7, #4] - 8002c6a: 6039 str r1, [r7, #0] + 8002cde: b480 push {r7} + 8002ce0: b085 sub sp, #20 + 8002ce2: af00 add r7, sp, #0 + 8002ce4: 6078 str r0, [r7, #4] + 8002ce6: 6039 str r1, [r7, #0] ListItem_t *pxIterator; const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; - 8002c6c: 683b ldr r3, [r7, #0] - 8002c6e: 681b ldr r3, [r3, #0] - 8002c70: 60bb str r3, [r7, #8] + 8002ce8: 683b ldr r3, [r7, #0] + 8002cea: 681b ldr r3, [r3, #0] + 8002cec: 60bb str r3, [r7, #8] new list item should be placed after it. This ensures that TCBs which are stored in ready lists (all of which have the same xItemValue value) get a share of the CPU. However, if the xItemValue is the same as the back marker the iteration loop below will not end. Therefore the value is checked first, and the algorithm slightly modified if necessary. */ if( xValueOfInsertion == portMAX_DELAY ) - 8002c72: 68bb ldr r3, [r7, #8] - 8002c74: f1b3 3fff cmp.w r3, #4294967295 - 8002c78: d103 bne.n 8002c82 + 8002cee: 68bb ldr r3, [r7, #8] + 8002cf0: f1b3 3fff cmp.w r3, #4294967295 + 8002cf4: d103 bne.n 8002cfe { pxIterator = pxList->xListEnd.pxPrevious; - 8002c7a: 687b ldr r3, [r7, #4] - 8002c7c: 691b ldr r3, [r3, #16] - 8002c7e: 60fb str r3, [r7, #12] - 8002c80: e00c b.n 8002c9c + 8002cf6: 687b ldr r3, [r7, #4] + 8002cf8: 691b ldr r3, [r3, #16] + 8002cfa: 60fb str r3, [r7, #12] + 8002cfc: e00c b.n 8002d18 4) Using a queue or semaphore before it has been initialised or before the scheduler has been started (are interrupts firing before vTaskStartScheduler() has been called?). **********************************************************************/ for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext ) /*lint !e826 !e740 !e9087 The mini list structure is used as the list end to save RAM. This is checked and valid. *//*lint !e440 The iterator moves to a different value, not xValueOfInsertion. */ - 8002c82: 687b ldr r3, [r7, #4] - 8002c84: 3308 adds r3, #8 - 8002c86: 60fb str r3, [r7, #12] - 8002c88: e002 b.n 8002c90 - 8002c8a: 68fb ldr r3, [r7, #12] - 8002c8c: 685b ldr r3, [r3, #4] - 8002c8e: 60fb str r3, [r7, #12] - 8002c90: 68fb ldr r3, [r7, #12] - 8002c92: 685b ldr r3, [r3, #4] - 8002c94: 681b ldr r3, [r3, #0] - 8002c96: 68ba ldr r2, [r7, #8] - 8002c98: 429a cmp r2, r3 - 8002c9a: d2f6 bcs.n 8002c8a + 8002cfe: 687b ldr r3, [r7, #4] + 8002d00: 3308 adds r3, #8 + 8002d02: 60fb str r3, [r7, #12] + 8002d04: e002 b.n 8002d0c + 8002d06: 68fb ldr r3, [r7, #12] + 8002d08: 685b ldr r3, [r3, #4] + 8002d0a: 60fb str r3, [r7, #12] + 8002d0c: 68fb ldr r3, [r7, #12] + 8002d0e: 685b ldr r3, [r3, #4] + 8002d10: 681b ldr r3, [r3, #0] + 8002d12: 68ba ldr r2, [r7, #8] + 8002d14: 429a cmp r2, r3 + 8002d16: d2f6 bcs.n 8002d06 /* There is nothing to do here, just iterating to the wanted insertion position. */ } } pxNewListItem->pxNext = pxIterator->pxNext; - 8002c9c: 68fb ldr r3, [r7, #12] - 8002c9e: 685a ldr r2, [r3, #4] - 8002ca0: 683b ldr r3, [r7, #0] - 8002ca2: 605a str r2, [r3, #4] + 8002d18: 68fb ldr r3, [r7, #12] + 8002d1a: 685a ldr r2, [r3, #4] + 8002d1c: 683b ldr r3, [r7, #0] + 8002d1e: 605a str r2, [r3, #4] pxNewListItem->pxNext->pxPrevious = pxNewListItem; - 8002ca4: 683b ldr r3, [r7, #0] - 8002ca6: 685b ldr r3, [r3, #4] - 8002ca8: 683a ldr r2, [r7, #0] - 8002caa: 609a str r2, [r3, #8] + 8002d20: 683b ldr r3, [r7, #0] + 8002d22: 685b ldr r3, [r3, #4] + 8002d24: 683a ldr r2, [r7, #0] + 8002d26: 609a str r2, [r3, #8] pxNewListItem->pxPrevious = pxIterator; - 8002cac: 683b ldr r3, [r7, #0] - 8002cae: 68fa ldr r2, [r7, #12] - 8002cb0: 609a str r2, [r3, #8] + 8002d28: 683b ldr r3, [r7, #0] + 8002d2a: 68fa ldr r2, [r7, #12] + 8002d2c: 609a str r2, [r3, #8] pxIterator->pxNext = pxNewListItem; - 8002cb2: 68fb ldr r3, [r7, #12] - 8002cb4: 683a ldr r2, [r7, #0] - 8002cb6: 605a str r2, [r3, #4] + 8002d2e: 68fb ldr r3, [r7, #12] + 8002d30: 683a ldr r2, [r7, #0] + 8002d32: 605a str r2, [r3, #4] /* Remember which list the item is in. This allows fast removal of the item later. */ pxNewListItem->pxContainer = pxList; - 8002cb8: 683b ldr r3, [r7, #0] - 8002cba: 687a ldr r2, [r7, #4] - 8002cbc: 611a str r2, [r3, #16] + 8002d34: 683b ldr r3, [r7, #0] + 8002d36: 687a ldr r2, [r7, #4] + 8002d38: 611a str r2, [r3, #16] ( pxList->uxNumberOfItems )++; - 8002cbe: 687b ldr r3, [r7, #4] - 8002cc0: 681b ldr r3, [r3, #0] - 8002cc2: 1c5a adds r2, r3, #1 - 8002cc4: 687b ldr r3, [r7, #4] - 8002cc6: 601a str r2, [r3, #0] + 8002d3a: 687b ldr r3, [r7, #4] + 8002d3c: 681b ldr r3, [r3, #0] + 8002d3e: 1c5a adds r2, r3, #1 + 8002d40: 687b ldr r3, [r7, #4] + 8002d42: 601a str r2, [r3, #0] } - 8002cc8: bf00 nop - 8002cca: 3714 adds r7, #20 - 8002ccc: 46bd mov sp, r7 - 8002cce: f85d 7b04 ldr.w r7, [sp], #4 - 8002cd2: 4770 bx lr + 8002d44: bf00 nop + 8002d46: 3714 adds r7, #20 + 8002d48: 46bd mov sp, r7 + 8002d4a: f85d 7b04 ldr.w r7, [sp], #4 + 8002d4e: 4770 bx lr -08002cd4 : +08002d50 : /*-----------------------------------------------------------*/ UBaseType_t uxListRemove( ListItem_t * const pxItemToRemove ) { - 8002cd4: b480 push {r7} - 8002cd6: b085 sub sp, #20 - 8002cd8: af00 add r7, sp, #0 - 8002cda: 6078 str r0, [r7, #4] + 8002d50: b480 push {r7} + 8002d52: b085 sub sp, #20 + 8002d54: af00 add r7, sp, #0 + 8002d56: 6078 str r0, [r7, #4] /* The list item knows which list it is in. Obtain the list from the list item. */ List_t * const pxList = pxItemToRemove->pxContainer; - 8002cdc: 687b ldr r3, [r7, #4] - 8002cde: 691b ldr r3, [r3, #16] - 8002ce0: 60fb str r3, [r7, #12] + 8002d58: 687b ldr r3, [r7, #4] + 8002d5a: 691b ldr r3, [r3, #16] + 8002d5c: 60fb str r3, [r7, #12] pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; - 8002ce2: 687b ldr r3, [r7, #4] - 8002ce4: 685b ldr r3, [r3, #4] - 8002ce6: 687a ldr r2, [r7, #4] - 8002ce8: 6892 ldr r2, [r2, #8] - 8002cea: 609a str r2, [r3, #8] + 8002d5e: 687b ldr r3, [r7, #4] + 8002d60: 685b ldr r3, [r3, #4] + 8002d62: 687a ldr r2, [r7, #4] + 8002d64: 6892 ldr r2, [r2, #8] + 8002d66: 609a str r2, [r3, #8] pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; - 8002cec: 687b ldr r3, [r7, #4] - 8002cee: 689b ldr r3, [r3, #8] - 8002cf0: 687a ldr r2, [r7, #4] - 8002cf2: 6852 ldr r2, [r2, #4] - 8002cf4: 605a str r2, [r3, #4] + 8002d68: 687b ldr r3, [r7, #4] + 8002d6a: 689b ldr r3, [r3, #8] + 8002d6c: 687a ldr r2, [r7, #4] + 8002d6e: 6852 ldr r2, [r2, #4] + 8002d70: 605a str r2, [r3, #4] /* Only used during decision coverage testing. */ mtCOVERAGE_TEST_DELAY(); /* Make sure the index is left pointing to a valid item. */ if( pxList->pxIndex == pxItemToRemove ) - 8002cf6: 68fb ldr r3, [r7, #12] - 8002cf8: 685b ldr r3, [r3, #4] - 8002cfa: 687a ldr r2, [r7, #4] - 8002cfc: 429a cmp r2, r3 - 8002cfe: d103 bne.n 8002d08 + 8002d72: 68fb ldr r3, [r7, #12] + 8002d74: 685b ldr r3, [r3, #4] + 8002d76: 687a ldr r2, [r7, #4] + 8002d78: 429a cmp r2, r3 + 8002d7a: d103 bne.n 8002d84 { pxList->pxIndex = pxItemToRemove->pxPrevious; - 8002d00: 687b ldr r3, [r7, #4] - 8002d02: 689a ldr r2, [r3, #8] - 8002d04: 68fb ldr r3, [r7, #12] - 8002d06: 605a str r2, [r3, #4] + 8002d7c: 687b ldr r3, [r7, #4] + 8002d7e: 689a ldr r2, [r3, #8] + 8002d80: 68fb ldr r3, [r7, #12] + 8002d82: 605a str r2, [r3, #4] else { mtCOVERAGE_TEST_MARKER(); } pxItemToRemove->pxContainer = NULL; - 8002d08: 687b ldr r3, [r7, #4] - 8002d0a: 2200 movs r2, #0 - 8002d0c: 611a str r2, [r3, #16] + 8002d84: 687b ldr r3, [r7, #4] + 8002d86: 2200 movs r2, #0 + 8002d88: 611a str r2, [r3, #16] ( pxList->uxNumberOfItems )--; - 8002d0e: 68fb ldr r3, [r7, #12] - 8002d10: 681b ldr r3, [r3, #0] - 8002d12: 1e5a subs r2, r3, #1 - 8002d14: 68fb ldr r3, [r7, #12] - 8002d16: 601a str r2, [r3, #0] + 8002d8a: 68fb ldr r3, [r7, #12] + 8002d8c: 681b ldr r3, [r3, #0] + 8002d8e: 1e5a subs r2, r3, #1 + 8002d90: 68fb ldr r3, [r7, #12] + 8002d92: 601a str r2, [r3, #0] return pxList->uxNumberOfItems; - 8002d18: 68fb ldr r3, [r7, #12] - 8002d1a: 681b ldr r3, [r3, #0] + 8002d94: 68fb ldr r3, [r7, #12] + 8002d96: 681b ldr r3, [r3, #0] } - 8002d1c: 4618 mov r0, r3 - 8002d1e: 3714 adds r7, #20 - 8002d20: 46bd mov sp, r7 - 8002d22: f85d 7b04 ldr.w r7, [sp], #4 - 8002d26: 4770 bx lr + 8002d98: 4618 mov r0, r3 + 8002d9a: 3714 adds r7, #20 + 8002d9c: 46bd mov sp, r7 + 8002d9e: f85d 7b04 ldr.w r7, [sp], #4 + 8002da2: 4770 bx lr -08002d28 : +08002da4 : } \ taskEXIT_CRITICAL() /*-----------------------------------------------------------*/ BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) { - 8002d28: b580 push {r7, lr} - 8002d2a: b084 sub sp, #16 - 8002d2c: af00 add r7, sp, #0 - 8002d2e: 6078 str r0, [r7, #4] - 8002d30: 6039 str r1, [r7, #0] + 8002da4: b580 push {r7, lr} + 8002da6: b084 sub sp, #16 + 8002da8: af00 add r7, sp, #0 + 8002daa: 6078 str r0, [r7, #4] + 8002dac: 6039 str r1, [r7, #0] Queue_t * const pxQueue = xQueue; - 8002d32: 687b ldr r3, [r7, #4] - 8002d34: 60fb str r3, [r7, #12] + 8002dae: 687b ldr r3, [r7, #4] + 8002db0: 60fb str r3, [r7, #12] configASSERT( pxQueue ); - 8002d36: 68fb ldr r3, [r7, #12] - 8002d38: 2b00 cmp r3, #0 - 8002d3a: d10a bne.n 8002d52 + 8002db2: 68fb ldr r3, [r7, #12] + 8002db4: 2b00 cmp r3, #0 + 8002db6: d10a bne.n 8002dce portFORCE_INLINE static void vPortRaiseBASEPRI( void ) { uint32_t ulNewBASEPRI; __asm volatile - 8002d3c: f04f 0350 mov.w r3, #80 ; 0x50 - 8002d40: f383 8811 msr BASEPRI, r3 - 8002d44: f3bf 8f6f isb sy - 8002d48: f3bf 8f4f dsb sy - 8002d4c: 60bb str r3, [r7, #8] + 8002db8: f04f 0350 mov.w r3, #80 ; 0x50 + 8002dbc: f383 8811 msr BASEPRI, r3 + 8002dc0: f3bf 8f6f isb sy + 8002dc4: f3bf 8f4f dsb sy + 8002dc8: 60bb str r3, [r7, #8] " msr basepri, %0 \n" \ " isb \n" \ " dsb \n" \ :"=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) : "memory" ); } - 8002d4e: bf00 nop - 8002d50: e7fe b.n 8002d50 + 8002dca: bf00 nop + 8002dcc: e7fe b.n 8002dcc taskENTER_CRITICAL(); - 8002d52: f002 f877 bl 8004e44 + 8002dce: f002 f879 bl 8004ec4 { pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - 8002d56: 68fb ldr r3, [r7, #12] - 8002d58: 681a ldr r2, [r3, #0] - 8002d5a: 68fb ldr r3, [r7, #12] - 8002d5c: 6bdb ldr r3, [r3, #60] ; 0x3c - 8002d5e: 68f9 ldr r1, [r7, #12] - 8002d60: 6c09 ldr r1, [r1, #64] ; 0x40 - 8002d62: fb01 f303 mul.w r3, r1, r3 - 8002d66: 441a add r2, r3 - 8002d68: 68fb ldr r3, [r7, #12] - 8002d6a: 609a str r2, [r3, #8] + 8002dd2: 68fb ldr r3, [r7, #12] + 8002dd4: 681a ldr r2, [r3, #0] + 8002dd6: 68fb ldr r3, [r7, #12] + 8002dd8: 6bdb ldr r3, [r3, #60] ; 0x3c + 8002dda: 68f9 ldr r1, [r7, #12] + 8002ddc: 6c09 ldr r1, [r1, #64] ; 0x40 + 8002dde: fb01 f303 mul.w r3, r1, r3 + 8002de2: 441a add r2, r3 + 8002de4: 68fb ldr r3, [r7, #12] + 8002de6: 609a str r2, [r3, #8] pxQueue->uxMessagesWaiting = ( UBaseType_t ) 0U; - 8002d6c: 68fb ldr r3, [r7, #12] - 8002d6e: 2200 movs r2, #0 - 8002d70: 639a str r2, [r3, #56] ; 0x38 + 8002de8: 68fb ldr r3, [r7, #12] + 8002dea: 2200 movs r2, #0 + 8002dec: 639a str r2, [r3, #56] ; 0x38 pxQueue->pcWriteTo = pxQueue->pcHead; - 8002d72: 68fb ldr r3, [r7, #12] - 8002d74: 681a ldr r2, [r3, #0] - 8002d76: 68fb ldr r3, [r7, #12] - 8002d78: 605a str r2, [r3, #4] + 8002dee: 68fb ldr r3, [r7, #12] + 8002df0: 681a ldr r2, [r3, #0] + 8002df2: 68fb ldr r3, [r7, #12] + 8002df4: 605a str r2, [r3, #4] pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSize ); /*lint !e9016 Pointer arithmetic allowed on char types, especially when it assists conveying intent. */ - 8002d7a: 68fb ldr r3, [r7, #12] - 8002d7c: 681a ldr r2, [r3, #0] - 8002d7e: 68fb ldr r3, [r7, #12] - 8002d80: 6bdb ldr r3, [r3, #60] ; 0x3c - 8002d82: 3b01 subs r3, #1 - 8002d84: 68f9 ldr r1, [r7, #12] - 8002d86: 6c09 ldr r1, [r1, #64] ; 0x40 - 8002d88: fb01 f303 mul.w r3, r1, r3 - 8002d8c: 441a add r2, r3 - 8002d8e: 68fb ldr r3, [r7, #12] - 8002d90: 60da str r2, [r3, #12] + 8002df6: 68fb ldr r3, [r7, #12] + 8002df8: 681a ldr r2, [r3, #0] + 8002dfa: 68fb ldr r3, [r7, #12] + 8002dfc: 6bdb ldr r3, [r3, #60] ; 0x3c + 8002dfe: 3b01 subs r3, #1 + 8002e00: 68f9 ldr r1, [r7, #12] + 8002e02: 6c09 ldr r1, [r1, #64] ; 0x40 + 8002e04: fb01 f303 mul.w r3, r1, r3 + 8002e08: 441a add r2, r3 + 8002e0a: 68fb ldr r3, [r7, #12] + 8002e0c: 60da str r2, [r3, #12] pxQueue->cRxLock = queueUNLOCKED; - 8002d92: 68fb ldr r3, [r7, #12] - 8002d94: 22ff movs r2, #255 ; 0xff - 8002d96: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8002e0e: 68fb ldr r3, [r7, #12] + 8002e10: 22ff movs r2, #255 ; 0xff + 8002e12: f883 2044 strb.w r2, [r3, #68] ; 0x44 pxQueue->cTxLock = queueUNLOCKED; - 8002d9a: 68fb ldr r3, [r7, #12] - 8002d9c: 22ff movs r2, #255 ; 0xff - 8002d9e: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8002e16: 68fb ldr r3, [r7, #12] + 8002e18: 22ff movs r2, #255 ; 0xff + 8002e1a: f883 2045 strb.w r2, [r3, #69] ; 0x45 if( xNewQueue == pdFALSE ) - 8002da2: 683b ldr r3, [r7, #0] - 8002da4: 2b00 cmp r3, #0 - 8002da6: d114 bne.n 8002dd2 + 8002e1e: 683b ldr r3, [r7, #0] + 8002e20: 2b00 cmp r3, #0 + 8002e22: d114 bne.n 8002e4e /* If there are tasks blocked waiting to read from the queue, then the tasks will remain blocked as after this function exits the queue will still be empty. If there are tasks blocked waiting to write to the queue, then one should be unblocked as after this function exits it will be possible to write to it. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - 8002da8: 68fb ldr r3, [r7, #12] - 8002daa: 691b ldr r3, [r3, #16] - 8002dac: 2b00 cmp r3, #0 - 8002dae: d01a beq.n 8002de6 + 8002e24: 68fb ldr r3, [r7, #12] + 8002e26: 691b ldr r3, [r3, #16] + 8002e28: 2b00 cmp r3, #0 + 8002e2a: d01a beq.n 8002e62 { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - 8002db0: 68fb ldr r3, [r7, #12] - 8002db2: 3310 adds r3, #16 - 8002db4: 4618 mov r0, r3 - 8002db6: f001 f929 bl 800400c - 8002dba: 4603 mov r3, r0 - 8002dbc: 2b00 cmp r3, #0 - 8002dbe: d012 beq.n 8002de6 + 8002e2c: 68fb ldr r3, [r7, #12] + 8002e2e: 3310 adds r3, #16 + 8002e30: 4618 mov r0, r3 + 8002e32: f001 f929 bl 8004088 + 8002e36: 4603 mov r3, r0 + 8002e38: 2b00 cmp r3, #0 + 8002e3a: d012 beq.n 8002e62 { queueYIELD_IF_USING_PREEMPTION(); - 8002dc0: 4b0c ldr r3, [pc, #48] ; (8002df4 ) - 8002dc2: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8002dc6: 601a str r2, [r3, #0] - 8002dc8: f3bf 8f4f dsb sy - 8002dcc: f3bf 8f6f isb sy - 8002dd0: e009 b.n 8002de6 + 8002e3c: 4b0c ldr r3, [pc, #48] ; (8002e70 ) + 8002e3e: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8002e42: 601a str r2, [r3, #0] + 8002e44: f3bf 8f4f dsb sy + 8002e48: f3bf 8f6f isb sy + 8002e4c: e009 b.n 8002e62 } } else { /* Ensure the event queues start in the correct state. */ vListInitialise( &( pxQueue->xTasksWaitingToSend ) ); - 8002dd2: 68fb ldr r3, [r7, #12] - 8002dd4: 3310 adds r3, #16 - 8002dd6: 4618 mov r0, r3 - 8002dd8: f7ff fef2 bl 8002bc0 + 8002e4e: 68fb ldr r3, [r7, #12] + 8002e50: 3310 adds r3, #16 + 8002e52: 4618 mov r0, r3 + 8002e54: f7ff fef2 bl 8002c3c vListInitialise( &( pxQueue->xTasksWaitingToReceive ) ); - 8002ddc: 68fb ldr r3, [r7, #12] - 8002dde: 3324 adds r3, #36 ; 0x24 - 8002de0: 4618 mov r0, r3 - 8002de2: f7ff feed bl 8002bc0 + 8002e58: 68fb ldr r3, [r7, #12] + 8002e5a: 3324 adds r3, #36 ; 0x24 + 8002e5c: 4618 mov r0, r3 + 8002e5e: f7ff feed bl 8002c3c } } taskEXIT_CRITICAL(); - 8002de6: f002 f85d bl 8004ea4 + 8002e62: f002 f85f bl 8004f24 /* A value is returned for calling semantic consistency with previous versions. */ return pdPASS; - 8002dea: 2301 movs r3, #1 + 8002e66: 2301 movs r3, #1 } - 8002dec: 4618 mov r0, r3 - 8002dee: 3710 adds r7, #16 - 8002df0: 46bd mov sp, r7 - 8002df2: bd80 pop {r7, pc} - 8002df4: e000ed04 .word 0xe000ed04 + 8002e68: 4618 mov r0, r3 + 8002e6a: 3710 adds r7, #16 + 8002e6c: 46bd mov sp, r7 + 8002e6e: bd80 pop {r7, pc} + 8002e70: e000ed04 .word 0xe000ed04 -08002df8 : +08002e74 : /*-----------------------------------------------------------*/ #if( configSUPPORT_STATIC_ALLOCATION == 1 ) QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType ) { - 8002df8: b580 push {r7, lr} - 8002dfa: b08e sub sp, #56 ; 0x38 - 8002dfc: af02 add r7, sp, #8 - 8002dfe: 60f8 str r0, [r7, #12] - 8002e00: 60b9 str r1, [r7, #8] - 8002e02: 607a str r2, [r7, #4] - 8002e04: 603b str r3, [r7, #0] + 8002e74: b580 push {r7, lr} + 8002e76: b08e sub sp, #56 ; 0x38 + 8002e78: af02 add r7, sp, #8 + 8002e7a: 60f8 str r0, [r7, #12] + 8002e7c: 60b9 str r1, [r7, #8] + 8002e7e: 607a str r2, [r7, #4] + 8002e80: 603b str r3, [r7, #0] Queue_t *pxNewQueue; configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); - 8002e06: 68fb ldr r3, [r7, #12] - 8002e08: 2b00 cmp r3, #0 - 8002e0a: d10a bne.n 8002e22 + 8002e82: 68fb ldr r3, [r7, #12] + 8002e84: 2b00 cmp r3, #0 + 8002e86: d10a bne.n 8002e9e __asm volatile - 8002e0c: f04f 0350 mov.w r3, #80 ; 0x50 - 8002e10: f383 8811 msr BASEPRI, r3 - 8002e14: f3bf 8f6f isb sy - 8002e18: f3bf 8f4f dsb sy - 8002e1c: 62bb str r3, [r7, #40] ; 0x28 + 8002e88: f04f 0350 mov.w r3, #80 ; 0x50 + 8002e8c: f383 8811 msr BASEPRI, r3 + 8002e90: f3bf 8f6f isb sy + 8002e94: f3bf 8f4f dsb sy + 8002e98: 62bb str r3, [r7, #40] ; 0x28 } - 8002e1e: bf00 nop - 8002e20: e7fe b.n 8002e20 + 8002e9a: bf00 nop + 8002e9c: e7fe b.n 8002e9c /* The StaticQueue_t structure and the queue storage area must be supplied. */ configASSERT( pxStaticQueue != NULL ); - 8002e22: 683b ldr r3, [r7, #0] - 8002e24: 2b00 cmp r3, #0 - 8002e26: d10a bne.n 8002e3e + 8002e9e: 683b ldr r3, [r7, #0] + 8002ea0: 2b00 cmp r3, #0 + 8002ea2: d10a bne.n 8002eba __asm volatile - 8002e28: f04f 0350 mov.w r3, #80 ; 0x50 - 8002e2c: f383 8811 msr BASEPRI, r3 - 8002e30: f3bf 8f6f isb sy - 8002e34: f3bf 8f4f dsb sy - 8002e38: 627b str r3, [r7, #36] ; 0x24 + 8002ea4: f04f 0350 mov.w r3, #80 ; 0x50 + 8002ea8: f383 8811 msr BASEPRI, r3 + 8002eac: f3bf 8f6f isb sy + 8002eb0: f3bf 8f4f dsb sy + 8002eb4: 627b str r3, [r7, #36] ; 0x24 } - 8002e3a: bf00 nop - 8002e3c: e7fe b.n 8002e3c + 8002eb6: bf00 nop + 8002eb8: e7fe b.n 8002eb8 /* A queue storage area should be provided if the item size is not 0, and should not be provided if the item size is 0. */ configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); - 8002e3e: 687b ldr r3, [r7, #4] - 8002e40: 2b00 cmp r3, #0 - 8002e42: d002 beq.n 8002e4a - 8002e44: 68bb ldr r3, [r7, #8] - 8002e46: 2b00 cmp r3, #0 - 8002e48: d001 beq.n 8002e4e - 8002e4a: 2301 movs r3, #1 - 8002e4c: e000 b.n 8002e50 - 8002e4e: 2300 movs r3, #0 - 8002e50: 2b00 cmp r3, #0 - 8002e52: d10a bne.n 8002e6a + 8002eba: 687b ldr r3, [r7, #4] + 8002ebc: 2b00 cmp r3, #0 + 8002ebe: d002 beq.n 8002ec6 + 8002ec0: 68bb ldr r3, [r7, #8] + 8002ec2: 2b00 cmp r3, #0 + 8002ec4: d001 beq.n 8002eca + 8002ec6: 2301 movs r3, #1 + 8002ec8: e000 b.n 8002ecc + 8002eca: 2300 movs r3, #0 + 8002ecc: 2b00 cmp r3, #0 + 8002ece: d10a bne.n 8002ee6 __asm volatile - 8002e54: f04f 0350 mov.w r3, #80 ; 0x50 - 8002e58: f383 8811 msr BASEPRI, r3 - 8002e5c: f3bf 8f6f isb sy - 8002e60: f3bf 8f4f dsb sy - 8002e64: 623b str r3, [r7, #32] + 8002ed0: f04f 0350 mov.w r3, #80 ; 0x50 + 8002ed4: f383 8811 msr BASEPRI, r3 + 8002ed8: f3bf 8f6f isb sy + 8002edc: f3bf 8f4f dsb sy + 8002ee0: 623b str r3, [r7, #32] } - 8002e66: bf00 nop - 8002e68: e7fe b.n 8002e68 + 8002ee2: bf00 nop + 8002ee4: e7fe b.n 8002ee4 configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); - 8002e6a: 687b ldr r3, [r7, #4] - 8002e6c: 2b00 cmp r3, #0 - 8002e6e: d102 bne.n 8002e76 - 8002e70: 68bb ldr r3, [r7, #8] - 8002e72: 2b00 cmp r3, #0 - 8002e74: d101 bne.n 8002e7a - 8002e76: 2301 movs r3, #1 - 8002e78: e000 b.n 8002e7c - 8002e7a: 2300 movs r3, #0 - 8002e7c: 2b00 cmp r3, #0 - 8002e7e: d10a bne.n 8002e96 + 8002ee6: 687b ldr r3, [r7, #4] + 8002ee8: 2b00 cmp r3, #0 + 8002eea: d102 bne.n 8002ef2 + 8002eec: 68bb ldr r3, [r7, #8] + 8002eee: 2b00 cmp r3, #0 + 8002ef0: d101 bne.n 8002ef6 + 8002ef2: 2301 movs r3, #1 + 8002ef4: e000 b.n 8002ef8 + 8002ef6: 2300 movs r3, #0 + 8002ef8: 2b00 cmp r3, #0 + 8002efa: d10a bne.n 8002f12 __asm volatile - 8002e80: f04f 0350 mov.w r3, #80 ; 0x50 - 8002e84: f383 8811 msr BASEPRI, r3 - 8002e88: f3bf 8f6f isb sy - 8002e8c: f3bf 8f4f dsb sy - 8002e90: 61fb str r3, [r7, #28] + 8002efc: f04f 0350 mov.w r3, #80 ; 0x50 + 8002f00: f383 8811 msr BASEPRI, r3 + 8002f04: f3bf 8f6f isb sy + 8002f08: f3bf 8f4f dsb sy + 8002f0c: 61fb str r3, [r7, #28] } - 8002e92: bf00 nop - 8002e94: e7fe b.n 8002e94 + 8002f0e: bf00 nop + 8002f10: e7fe b.n 8002f10 #if( configASSERT_DEFINED == 1 ) { /* Sanity check that the size of the structure used to declare a variable of type StaticQueue_t or StaticSemaphore_t equals the size of the real queue and semaphore structures. */ volatile size_t xSize = sizeof( StaticQueue_t ); - 8002e96: 2350 movs r3, #80 ; 0x50 - 8002e98: 617b str r3, [r7, #20] + 8002f12: 2350 movs r3, #80 ; 0x50 + 8002f14: 617b str r3, [r7, #20] configASSERT( xSize == sizeof( Queue_t ) ); - 8002e9a: 697b ldr r3, [r7, #20] - 8002e9c: 2b50 cmp r3, #80 ; 0x50 - 8002e9e: d00a beq.n 8002eb6 + 8002f16: 697b ldr r3, [r7, #20] + 8002f18: 2b50 cmp r3, #80 ; 0x50 + 8002f1a: d00a beq.n 8002f32 __asm volatile - 8002ea0: f04f 0350 mov.w r3, #80 ; 0x50 - 8002ea4: f383 8811 msr BASEPRI, r3 - 8002ea8: f3bf 8f6f isb sy - 8002eac: f3bf 8f4f dsb sy - 8002eb0: 61bb str r3, [r7, #24] + 8002f1c: f04f 0350 mov.w r3, #80 ; 0x50 + 8002f20: f383 8811 msr BASEPRI, r3 + 8002f24: f3bf 8f6f isb sy + 8002f28: f3bf 8f4f dsb sy + 8002f2c: 61bb str r3, [r7, #24] } - 8002eb2: bf00 nop - 8002eb4: e7fe b.n 8002eb4 + 8002f2e: bf00 nop + 8002f30: e7fe b.n 8002f30 ( void ) xSize; /* Keeps lint quiet when configASSERT() is not defined. */ - 8002eb6: 697b ldr r3, [r7, #20] + 8002f32: 697b ldr r3, [r7, #20] #endif /* configASSERT_DEFINED */ /* The address of a statically allocated queue was passed in, use it. The address of a statically allocated storage area was also passed in but is already set. */ pxNewQueue = ( Queue_t * ) pxStaticQueue; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - 8002eb8: 683b ldr r3, [r7, #0] - 8002eba: 62fb str r3, [r7, #44] ; 0x2c + 8002f34: 683b ldr r3, [r7, #0] + 8002f36: 62fb str r3, [r7, #44] ; 0x2c if( pxNewQueue != NULL ) - 8002ebc: 6afb ldr r3, [r7, #44] ; 0x2c - 8002ebe: 2b00 cmp r3, #0 - 8002ec0: d00d beq.n 8002ede + 8002f38: 6afb ldr r3, [r7, #44] ; 0x2c + 8002f3a: 2b00 cmp r3, #0 + 8002f3c: d00d beq.n 8002f5a #if( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) { /* Queues can be allocated wither statically or dynamically, so note this queue was allocated statically in case the queue is later deleted. */ pxNewQueue->ucStaticallyAllocated = pdTRUE; - 8002ec2: 6afb ldr r3, [r7, #44] ; 0x2c - 8002ec4: 2201 movs r2, #1 - 8002ec6: f883 2046 strb.w r2, [r3, #70] ; 0x46 + 8002f3e: 6afb ldr r3, [r7, #44] ; 0x2c + 8002f40: 2201 movs r2, #1 + 8002f42: f883 2046 strb.w r2, [r3, #70] ; 0x46 } #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); - 8002eca: f897 2038 ldrb.w r2, [r7, #56] ; 0x38 - 8002ece: 6afb ldr r3, [r7, #44] ; 0x2c - 8002ed0: 9300 str r3, [sp, #0] - 8002ed2: 4613 mov r3, r2 - 8002ed4: 687a ldr r2, [r7, #4] - 8002ed6: 68b9 ldr r1, [r7, #8] - 8002ed8: 68f8 ldr r0, [r7, #12] - 8002eda: f000 f805 bl 8002ee8 + 8002f46: f897 2038 ldrb.w r2, [r7, #56] ; 0x38 + 8002f4a: 6afb ldr r3, [r7, #44] ; 0x2c + 8002f4c: 9300 str r3, [sp, #0] + 8002f4e: 4613 mov r3, r2 + 8002f50: 687a ldr r2, [r7, #4] + 8002f52: 68b9 ldr r1, [r7, #8] + 8002f54: 68f8 ldr r0, [r7, #12] + 8002f56: f000 f805 bl 8002f64 { traceQUEUE_CREATE_FAILED( ucQueueType ); mtCOVERAGE_TEST_MARKER(); } return pxNewQueue; - 8002ede: 6afb ldr r3, [r7, #44] ; 0x2c + 8002f5a: 6afb ldr r3, [r7, #44] ; 0x2c } - 8002ee0: 4618 mov r0, r3 - 8002ee2: 3730 adds r7, #48 ; 0x30 - 8002ee4: 46bd mov sp, r7 - 8002ee6: bd80 pop {r7, pc} + 8002f5c: 4618 mov r0, r3 + 8002f5e: 3730 adds r7, #48 ; 0x30 + 8002f60: 46bd mov sp, r7 + 8002f62: bd80 pop {r7, pc} -08002ee8 : +08002f64 : #endif /* configSUPPORT_STATIC_ALLOCATION */ /*-----------------------------------------------------------*/ static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, const uint8_t ucQueueType, Queue_t *pxNewQueue ) { - 8002ee8: b580 push {r7, lr} - 8002eea: b084 sub sp, #16 - 8002eec: af00 add r7, sp, #0 - 8002eee: 60f8 str r0, [r7, #12] - 8002ef0: 60b9 str r1, [r7, #8] - 8002ef2: 607a str r2, [r7, #4] - 8002ef4: 70fb strb r3, [r7, #3] + 8002f64: b580 push {r7, lr} + 8002f66: b084 sub sp, #16 + 8002f68: af00 add r7, sp, #0 + 8002f6a: 60f8 str r0, [r7, #12] + 8002f6c: 60b9 str r1, [r7, #8] + 8002f6e: 607a str r2, [r7, #4] + 8002f70: 70fb strb r3, [r7, #3] /* Remove compiler warnings about unused parameters should configUSE_TRACE_FACILITY not be set to 1. */ ( void ) ucQueueType; if( uxItemSize == ( UBaseType_t ) 0 ) - 8002ef6: 68bb ldr r3, [r7, #8] - 8002ef8: 2b00 cmp r3, #0 - 8002efa: d103 bne.n 8002f04 + 8002f72: 68bb ldr r3, [r7, #8] + 8002f74: 2b00 cmp r3, #0 + 8002f76: d103 bne.n 8002f80 { /* No RAM was allocated for the queue storage area, but PC head cannot be set to NULL because NULL is used as a key to say the queue is used as a mutex. Therefore just set pcHead to point to the queue as a benign value that is known to be within the memory map. */ pxNewQueue->pcHead = ( int8_t * ) pxNewQueue; - 8002efc: 69bb ldr r3, [r7, #24] - 8002efe: 69ba ldr r2, [r7, #24] - 8002f00: 601a str r2, [r3, #0] - 8002f02: e002 b.n 8002f0a + 8002f78: 69bb ldr r3, [r7, #24] + 8002f7a: 69ba ldr r2, [r7, #24] + 8002f7c: 601a str r2, [r3, #0] + 8002f7e: e002 b.n 8002f86 } else { /* Set the head to the start of the queue storage area. */ pxNewQueue->pcHead = ( int8_t * ) pucQueueStorage; - 8002f04: 69bb ldr r3, [r7, #24] - 8002f06: 687a ldr r2, [r7, #4] - 8002f08: 601a str r2, [r3, #0] + 8002f80: 69bb ldr r3, [r7, #24] + 8002f82: 687a ldr r2, [r7, #4] + 8002f84: 601a str r2, [r3, #0] } /* Initialise the queue members as described where the queue type is defined. */ pxNewQueue->uxLength = uxQueueLength; - 8002f0a: 69bb ldr r3, [r7, #24] - 8002f0c: 68fa ldr r2, [r7, #12] - 8002f0e: 63da str r2, [r3, #60] ; 0x3c + 8002f86: 69bb ldr r3, [r7, #24] + 8002f88: 68fa ldr r2, [r7, #12] + 8002f8a: 63da str r2, [r3, #60] ; 0x3c pxNewQueue->uxItemSize = uxItemSize; - 8002f10: 69bb ldr r3, [r7, #24] - 8002f12: 68ba ldr r2, [r7, #8] - 8002f14: 641a str r2, [r3, #64] ; 0x40 + 8002f8c: 69bb ldr r3, [r7, #24] + 8002f8e: 68ba ldr r2, [r7, #8] + 8002f90: 641a str r2, [r3, #64] ; 0x40 ( void ) xQueueGenericReset( pxNewQueue, pdTRUE ); - 8002f16: 2101 movs r1, #1 - 8002f18: 69b8 ldr r0, [r7, #24] - 8002f1a: f7ff ff05 bl 8002d28 + 8002f92: 2101 movs r1, #1 + 8002f94: 69b8 ldr r0, [r7, #24] + 8002f96: f7ff ff05 bl 8002da4 #if ( configUSE_TRACE_FACILITY == 1 ) { pxNewQueue->ucQueueType = ucQueueType; - 8002f1e: 69bb ldr r3, [r7, #24] - 8002f20: 78fa ldrb r2, [r7, #3] - 8002f22: f883 204c strb.w r2, [r3, #76] ; 0x4c + 8002f9a: 69bb ldr r3, [r7, #24] + 8002f9c: 78fa ldrb r2, [r7, #3] + 8002f9e: f883 204c strb.w r2, [r3, #76] ; 0x4c pxNewQueue->pxQueueSetContainer = NULL; } #endif /* configUSE_QUEUE_SETS */ traceQUEUE_CREATE( pxNewQueue ); } - 8002f26: bf00 nop - 8002f28: 3710 adds r7, #16 - 8002f2a: 46bd mov sp, r7 - 8002f2c: bd80 pop {r7, pc} + 8002fa2: bf00 nop + 8002fa4: 3710 adds r7, #16 + 8002fa6: 46bd mov sp, r7 + 8002fa8: bd80 pop {r7, pc} ... -08002f30 : +08002fac : #endif /* ( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) */ /*-----------------------------------------------------------*/ BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, const BaseType_t xCopyPosition ) { - 8002f30: b580 push {r7, lr} - 8002f32: b08e sub sp, #56 ; 0x38 - 8002f34: af00 add r7, sp, #0 - 8002f36: 60f8 str r0, [r7, #12] - 8002f38: 60b9 str r1, [r7, #8] - 8002f3a: 607a str r2, [r7, #4] - 8002f3c: 603b str r3, [r7, #0] + 8002fac: b580 push {r7, lr} + 8002fae: b08e sub sp, #56 ; 0x38 + 8002fb0: af00 add r7, sp, #0 + 8002fb2: 60f8 str r0, [r7, #12] + 8002fb4: 60b9 str r1, [r7, #8] + 8002fb6: 607a str r2, [r7, #4] + 8002fb8: 603b str r3, [r7, #0] BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; - 8002f3e: 2300 movs r3, #0 - 8002f40: 637b str r3, [r7, #52] ; 0x34 + 8002fba: 2300 movs r3, #0 + 8002fbc: 637b str r3, [r7, #52] ; 0x34 TimeOut_t xTimeOut; Queue_t * const pxQueue = xQueue; - 8002f42: 68fb ldr r3, [r7, #12] - 8002f44: 633b str r3, [r7, #48] ; 0x30 + 8002fbe: 68fb ldr r3, [r7, #12] + 8002fc0: 633b str r3, [r7, #48] ; 0x30 configASSERT( pxQueue ); - 8002f46: 6b3b ldr r3, [r7, #48] ; 0x30 - 8002f48: 2b00 cmp r3, #0 - 8002f4a: d10a bne.n 8002f62 + 8002fc2: 6b3b ldr r3, [r7, #48] ; 0x30 + 8002fc4: 2b00 cmp r3, #0 + 8002fc6: d10a bne.n 8002fde __asm volatile - 8002f4c: f04f 0350 mov.w r3, #80 ; 0x50 - 8002f50: f383 8811 msr BASEPRI, r3 - 8002f54: f3bf 8f6f isb sy - 8002f58: f3bf 8f4f dsb sy - 8002f5c: 62bb str r3, [r7, #40] ; 0x28 + 8002fc8: f04f 0350 mov.w r3, #80 ; 0x50 + 8002fcc: f383 8811 msr BASEPRI, r3 + 8002fd0: f3bf 8f6f isb sy + 8002fd4: f3bf 8f4f dsb sy + 8002fd8: 62bb str r3, [r7, #40] ; 0x28 } - 8002f5e: bf00 nop - 8002f60: e7fe b.n 8002f60 + 8002fda: bf00 nop + 8002fdc: e7fe b.n 8002fdc configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - 8002f62: 68bb ldr r3, [r7, #8] - 8002f64: 2b00 cmp r3, #0 - 8002f66: d103 bne.n 8002f70 - 8002f68: 6b3b ldr r3, [r7, #48] ; 0x30 - 8002f6a: 6c1b ldr r3, [r3, #64] ; 0x40 - 8002f6c: 2b00 cmp r3, #0 - 8002f6e: d101 bne.n 8002f74 - 8002f70: 2301 movs r3, #1 - 8002f72: e000 b.n 8002f76 - 8002f74: 2300 movs r3, #0 - 8002f76: 2b00 cmp r3, #0 - 8002f78: d10a bne.n 8002f90 + 8002fde: 68bb ldr r3, [r7, #8] + 8002fe0: 2b00 cmp r3, #0 + 8002fe2: d103 bne.n 8002fec + 8002fe4: 6b3b ldr r3, [r7, #48] ; 0x30 + 8002fe6: 6c1b ldr r3, [r3, #64] ; 0x40 + 8002fe8: 2b00 cmp r3, #0 + 8002fea: d101 bne.n 8002ff0 + 8002fec: 2301 movs r3, #1 + 8002fee: e000 b.n 8002ff2 + 8002ff0: 2300 movs r3, #0 + 8002ff2: 2b00 cmp r3, #0 + 8002ff4: d10a bne.n 800300c __asm volatile - 8002f7a: f04f 0350 mov.w r3, #80 ; 0x50 - 8002f7e: f383 8811 msr BASEPRI, r3 - 8002f82: f3bf 8f6f isb sy - 8002f86: f3bf 8f4f dsb sy - 8002f8a: 627b str r3, [r7, #36] ; 0x24 + 8002ff6: f04f 0350 mov.w r3, #80 ; 0x50 + 8002ffa: f383 8811 msr BASEPRI, r3 + 8002ffe: f3bf 8f6f isb sy + 8003002: f3bf 8f4f dsb sy + 8003006: 627b str r3, [r7, #36] ; 0x24 } - 8002f8c: bf00 nop - 8002f8e: e7fe b.n 8002f8e + 8003008: bf00 nop + 800300a: e7fe b.n 800300a configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); - 8002f90: 683b ldr r3, [r7, #0] - 8002f92: 2b02 cmp r3, #2 - 8002f94: d103 bne.n 8002f9e - 8002f96: 6b3b ldr r3, [r7, #48] ; 0x30 - 8002f98: 6bdb ldr r3, [r3, #60] ; 0x3c - 8002f9a: 2b01 cmp r3, #1 - 8002f9c: d101 bne.n 8002fa2 - 8002f9e: 2301 movs r3, #1 - 8002fa0: e000 b.n 8002fa4 - 8002fa2: 2300 movs r3, #0 - 8002fa4: 2b00 cmp r3, #0 - 8002fa6: d10a bne.n 8002fbe + 800300c: 683b ldr r3, [r7, #0] + 800300e: 2b02 cmp r3, #2 + 8003010: d103 bne.n 800301a + 8003012: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003014: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003016: 2b01 cmp r3, #1 + 8003018: d101 bne.n 800301e + 800301a: 2301 movs r3, #1 + 800301c: e000 b.n 8003020 + 800301e: 2300 movs r3, #0 + 8003020: 2b00 cmp r3, #0 + 8003022: d10a bne.n 800303a __asm volatile - 8002fa8: f04f 0350 mov.w r3, #80 ; 0x50 - 8002fac: f383 8811 msr BASEPRI, r3 - 8002fb0: f3bf 8f6f isb sy - 8002fb4: f3bf 8f4f dsb sy - 8002fb8: 623b str r3, [r7, #32] + 8003024: f04f 0350 mov.w r3, #80 ; 0x50 + 8003028: f383 8811 msr BASEPRI, r3 + 800302c: f3bf 8f6f isb sy + 8003030: f3bf 8f4f dsb sy + 8003034: 623b str r3, [r7, #32] } - 8002fba: bf00 nop - 8002fbc: e7fe b.n 8002fbc + 8003036: bf00 nop + 8003038: e7fe b.n 8003038 #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) { configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - 8002fbe: f001 f9e7 bl 8004390 - 8002fc2: 4603 mov r3, r0 - 8002fc4: 2b00 cmp r3, #0 - 8002fc6: d102 bne.n 8002fce - 8002fc8: 687b ldr r3, [r7, #4] - 8002fca: 2b00 cmp r3, #0 - 8002fcc: d101 bne.n 8002fd2 - 8002fce: 2301 movs r3, #1 - 8002fd0: e000 b.n 8002fd4 - 8002fd2: 2300 movs r3, #0 - 8002fd4: 2b00 cmp r3, #0 - 8002fd6: d10a bne.n 8002fee + 800303a: f001 f9e7 bl 800440c + 800303e: 4603 mov r3, r0 + 8003040: 2b00 cmp r3, #0 + 8003042: d102 bne.n 800304a + 8003044: 687b ldr r3, [r7, #4] + 8003046: 2b00 cmp r3, #0 + 8003048: d101 bne.n 800304e + 800304a: 2301 movs r3, #1 + 800304c: e000 b.n 8003050 + 800304e: 2300 movs r3, #0 + 8003050: 2b00 cmp r3, #0 + 8003052: d10a bne.n 800306a __asm volatile - 8002fd8: f04f 0350 mov.w r3, #80 ; 0x50 - 8002fdc: f383 8811 msr BASEPRI, r3 - 8002fe0: f3bf 8f6f isb sy - 8002fe4: f3bf 8f4f dsb sy - 8002fe8: 61fb str r3, [r7, #28] + 8003054: f04f 0350 mov.w r3, #80 ; 0x50 + 8003058: f383 8811 msr BASEPRI, r3 + 800305c: f3bf 8f6f isb sy + 8003060: f3bf 8f4f dsb sy + 8003064: 61fb str r3, [r7, #28] } - 8002fea: bf00 nop - 8002fec: e7fe b.n 8002fec + 8003066: bf00 nop + 8003068: e7fe b.n 8003068 /*lint -save -e904 This function relaxes the coding standard somewhat to allow return statements within the function itself. This is done in the interest of execution time efficiency. */ for( ;; ) { taskENTER_CRITICAL(); - 8002fee: f001 ff29 bl 8004e44 + 800306a: f001 ff2b bl 8004ec4 { /* Is there room on the queue now? The running task must be the highest priority task wanting to access the queue. If the head item in the queue is to be overwritten then it does not matter if the queue is full. */ if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) - 8002ff2: 6b3b ldr r3, [r7, #48] ; 0x30 - 8002ff4: 6b9a ldr r2, [r3, #56] ; 0x38 - 8002ff6: 6b3b ldr r3, [r7, #48] ; 0x30 - 8002ff8: 6bdb ldr r3, [r3, #60] ; 0x3c - 8002ffa: 429a cmp r2, r3 - 8002ffc: d302 bcc.n 8003004 - 8002ffe: 683b ldr r3, [r7, #0] - 8003000: 2b02 cmp r3, #2 - 8003002: d129 bne.n 8003058 + 800306e: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003070: 6b9a ldr r2, [r3, #56] ; 0x38 + 8003072: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003074: 6bdb ldr r3, [r3, #60] ; 0x3c + 8003076: 429a cmp r2, r3 + 8003078: d302 bcc.n 8003080 + 800307a: 683b ldr r3, [r7, #0] + 800307c: 2b02 cmp r3, #2 + 800307e: d129 bne.n 80030d4 } } } #else /* configUSE_QUEUE_SETS */ { xYieldRequired = prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - 8003004: 683a ldr r2, [r7, #0] - 8003006: 68b9 ldr r1, [r7, #8] - 8003008: 6b38 ldr r0, [r7, #48] ; 0x30 - 800300a: f000 fa0b bl 8003424 - 800300e: 62f8 str r0, [r7, #44] ; 0x2c + 8003080: 683a ldr r2, [r7, #0] + 8003082: 68b9 ldr r1, [r7, #8] + 8003084: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003086: f000 fa0b bl 80034a0 + 800308a: 62f8 str r0, [r7, #44] ; 0x2c /* If there was a task waiting for data to arrive on the queue then unblock it now. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - 8003010: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003012: 6a5b ldr r3, [r3, #36] ; 0x24 - 8003014: 2b00 cmp r3, #0 - 8003016: d010 beq.n 800303a + 800308c: 6b3b ldr r3, [r7, #48] ; 0x30 + 800308e: 6a5b ldr r3, [r3, #36] ; 0x24 + 8003090: 2b00 cmp r3, #0 + 8003092: d010 beq.n 80030b6 { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - 8003018: 6b3b ldr r3, [r7, #48] ; 0x30 - 800301a: 3324 adds r3, #36 ; 0x24 - 800301c: 4618 mov r0, r3 - 800301e: f000 fff5 bl 800400c - 8003022: 4603 mov r3, r0 - 8003024: 2b00 cmp r3, #0 - 8003026: d013 beq.n 8003050 + 8003094: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003096: 3324 adds r3, #36 ; 0x24 + 8003098: 4618 mov r0, r3 + 800309a: f000 fff5 bl 8004088 + 800309e: 4603 mov r3, r0 + 80030a0: 2b00 cmp r3, #0 + 80030a2: d013 beq.n 80030cc { /* The unblocked task has a priority higher than our own so yield immediately. Yes it is ok to do this from within the critical section - the kernel takes care of that. */ queueYIELD_IF_USING_PREEMPTION(); - 8003028: 4b3f ldr r3, [pc, #252] ; (8003128 ) - 800302a: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 800302e: 601a str r2, [r3, #0] - 8003030: f3bf 8f4f dsb sy - 8003034: f3bf 8f6f isb sy - 8003038: e00a b.n 8003050 + 80030a4: 4b3f ldr r3, [pc, #252] ; (80031a4 ) + 80030a6: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 80030aa: 601a str r2, [r3, #0] + 80030ac: f3bf 8f4f dsb sy + 80030b0: f3bf 8f6f isb sy + 80030b4: e00a b.n 80030cc else { mtCOVERAGE_TEST_MARKER(); } } else if( xYieldRequired != pdFALSE ) - 800303a: 6afb ldr r3, [r7, #44] ; 0x2c - 800303c: 2b00 cmp r3, #0 - 800303e: d007 beq.n 8003050 + 80030b6: 6afb ldr r3, [r7, #44] ; 0x2c + 80030b8: 2b00 cmp r3, #0 + 80030ba: d007 beq.n 80030cc { /* This path is a special case that will only get executed if the task was holding multiple mutexes and the mutexes were given back in an order that is different to that in which they were taken. */ queueYIELD_IF_USING_PREEMPTION(); - 8003040: 4b39 ldr r3, [pc, #228] ; (8003128 ) - 8003042: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003046: 601a str r2, [r3, #0] - 8003048: f3bf 8f4f dsb sy - 800304c: f3bf 8f6f isb sy + 80030bc: 4b39 ldr r3, [pc, #228] ; (80031a4 ) + 80030be: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 80030c2: 601a str r2, [r3, #0] + 80030c4: f3bf 8f4f dsb sy + 80030c8: f3bf 8f6f isb sy mtCOVERAGE_TEST_MARKER(); } } #endif /* configUSE_QUEUE_SETS */ taskEXIT_CRITICAL(); - 8003050: f001 ff28 bl 8004ea4 + 80030cc: f001 ff2a bl 8004f24 return pdPASS; - 8003054: 2301 movs r3, #1 - 8003056: e063 b.n 8003120 + 80030d0: 2301 movs r3, #1 + 80030d2: e063 b.n 800319c } else { if( xTicksToWait == ( TickType_t ) 0 ) - 8003058: 687b ldr r3, [r7, #4] - 800305a: 2b00 cmp r3, #0 - 800305c: d103 bne.n 8003066 + 80030d4: 687b ldr r3, [r7, #4] + 80030d6: 2b00 cmp r3, #0 + 80030d8: d103 bne.n 80030e2 { /* The queue was full and no block time is specified (or the block time has expired) so leave now. */ taskEXIT_CRITICAL(); - 800305e: f001 ff21 bl 8004ea4 + 80030da: f001 ff23 bl 8004f24 /* Return to the original privilege level before exiting the function. */ traceQUEUE_SEND_FAILED( pxQueue ); return errQUEUE_FULL; - 8003062: 2300 movs r3, #0 - 8003064: e05c b.n 8003120 + 80030de: 2300 movs r3, #0 + 80030e0: e05c b.n 800319c } else if( xEntryTimeSet == pdFALSE ) - 8003066: 6b7b ldr r3, [r7, #52] ; 0x34 - 8003068: 2b00 cmp r3, #0 - 800306a: d106 bne.n 800307a + 80030e2: 6b7b ldr r3, [r7, #52] ; 0x34 + 80030e4: 2b00 cmp r3, #0 + 80030e6: d106 bne.n 80030f6 { /* The queue was full and a block time was specified so configure the timeout structure. */ vTaskInternalSetTimeOutState( &xTimeOut ); - 800306c: f107 0314 add.w r3, r7, #20 - 8003070: 4618 mov r0, r3 - 8003072: f001 f82f bl 80040d4 + 80030e8: f107 0314 add.w r3, r7, #20 + 80030ec: 4618 mov r0, r3 + 80030ee: f001 f82f bl 8004150 xEntryTimeSet = pdTRUE; - 8003076: 2301 movs r3, #1 - 8003078: 637b str r3, [r7, #52] ; 0x34 + 80030f2: 2301 movs r3, #1 + 80030f4: 637b str r3, [r7, #52] ; 0x34 /* Entry time was already set. */ mtCOVERAGE_TEST_MARKER(); } } } taskEXIT_CRITICAL(); - 800307a: f001 ff13 bl 8004ea4 + 80030f6: f001 ff15 bl 8004f24 /* Interrupts and other tasks can send to and receive from the queue now the critical section has been exited. */ vTaskSuspendAll(); - 800307e: f000 fd9b bl 8003bb8 + 80030fa: f000 fd9b bl 8003c34 prvLockQueue( pxQueue ); - 8003082: f001 fedf bl 8004e44 - 8003086: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003088: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 800308c: b25b sxtb r3, r3 - 800308e: f1b3 3fff cmp.w r3, #4294967295 - 8003092: d103 bne.n 800309c - 8003094: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003096: 2200 movs r2, #0 - 8003098: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 800309c: 6b3b ldr r3, [r7, #48] ; 0x30 - 800309e: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 80030a2: b25b sxtb r3, r3 - 80030a4: f1b3 3fff cmp.w r3, #4294967295 - 80030a8: d103 bne.n 80030b2 - 80030aa: 6b3b ldr r3, [r7, #48] ; 0x30 - 80030ac: 2200 movs r2, #0 - 80030ae: f883 2045 strb.w r2, [r3, #69] ; 0x45 - 80030b2: f001 fef7 bl 8004ea4 + 80030fe: f001 fee1 bl 8004ec4 + 8003102: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003104: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 8003108: b25b sxtb r3, r3 + 800310a: f1b3 3fff cmp.w r3, #4294967295 + 800310e: d103 bne.n 8003118 + 8003110: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003112: 2200 movs r2, #0 + 8003114: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8003118: 6b3b ldr r3, [r7, #48] ; 0x30 + 800311a: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 800311e: b25b sxtb r3, r3 + 8003120: f1b3 3fff cmp.w r3, #4294967295 + 8003124: d103 bne.n 800312e + 8003126: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003128: 2200 movs r2, #0 + 800312a: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 800312e: f001 fef9 bl 8004f24 /* Update the timeout state to see if it has expired yet. */ if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - 80030b6: 1d3a adds r2, r7, #4 - 80030b8: f107 0314 add.w r3, r7, #20 - 80030bc: 4611 mov r1, r2 - 80030be: 4618 mov r0, r3 - 80030c0: f001 f81e bl 8004100 - 80030c4: 4603 mov r3, r0 - 80030c6: 2b00 cmp r3, #0 - 80030c8: d124 bne.n 8003114 + 8003132: 1d3a adds r2, r7, #4 + 8003134: f107 0314 add.w r3, r7, #20 + 8003138: 4611 mov r1, r2 + 800313a: 4618 mov r0, r3 + 800313c: f001 f81e bl 800417c + 8003140: 4603 mov r3, r0 + 8003142: 2b00 cmp r3, #0 + 8003144: d124 bne.n 8003190 { if( prvIsQueueFull( pxQueue ) != pdFALSE ) - 80030ca: 6b38 ldr r0, [r7, #48] ; 0x30 - 80030cc: f000 faa2 bl 8003614 - 80030d0: 4603 mov r3, r0 - 80030d2: 2b00 cmp r3, #0 - 80030d4: d018 beq.n 8003108 + 8003146: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003148: f000 faa2 bl 8003690 + 800314c: 4603 mov r3, r0 + 800314e: 2b00 cmp r3, #0 + 8003150: d018 beq.n 8003184 { traceBLOCKING_ON_QUEUE_SEND( pxQueue ); vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait ); - 80030d6: 6b3b ldr r3, [r7, #48] ; 0x30 - 80030d8: 3310 adds r3, #16 - 80030da: 687a ldr r2, [r7, #4] - 80030dc: 4611 mov r1, r2 - 80030de: 4618 mov r0, r3 - 80030e0: f000 ff44 bl 8003f6c + 8003152: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003154: 3310 adds r3, #16 + 8003156: 687a ldr r2, [r7, #4] + 8003158: 4611 mov r1, r2 + 800315a: 4618 mov r0, r3 + 800315c: f000 ff44 bl 8003fe8 /* Unlocking the queue means queue events can effect the event list. It is possible that interrupts occurring now remove this task from the event list again - but as the scheduler is suspended the task will go onto the pending ready last instead of the actual ready list. */ prvUnlockQueue( pxQueue ); - 80030e4: 6b38 ldr r0, [r7, #48] ; 0x30 - 80030e6: f000 fa2d bl 8003544 + 8003160: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003162: f000 fa2d bl 80035c0 /* Resuming the scheduler will move tasks from the pending ready list into the ready list - so it is feasible that this task is already in a ready list before it yields - in which case the yield will not cause a context switch unless there is also a higher priority task in the pending ready list. */ if( xTaskResumeAll() == pdFALSE ) - 80030ea: f000 fd73 bl 8003bd4 - 80030ee: 4603 mov r3, r0 - 80030f0: 2b00 cmp r3, #0 - 80030f2: f47f af7c bne.w 8002fee + 8003166: f000 fd73 bl 8003c50 + 800316a: 4603 mov r3, r0 + 800316c: 2b00 cmp r3, #0 + 800316e: f47f af7c bne.w 800306a { portYIELD_WITHIN_API(); - 80030f6: 4b0c ldr r3, [pc, #48] ; (8003128 ) - 80030f8: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80030fc: 601a str r2, [r3, #0] - 80030fe: f3bf 8f4f dsb sy - 8003102: f3bf 8f6f isb sy - 8003106: e772 b.n 8002fee + 8003172: 4b0c ldr r3, [pc, #48] ; (80031a4 ) + 8003174: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003178: 601a str r2, [r3, #0] + 800317a: f3bf 8f4f dsb sy + 800317e: f3bf 8f6f isb sy + 8003182: e772 b.n 800306a } } else { /* Try again. */ prvUnlockQueue( pxQueue ); - 8003108: 6b38 ldr r0, [r7, #48] ; 0x30 - 800310a: f000 fa1b bl 8003544 + 8003184: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003186: f000 fa1b bl 80035c0 ( void ) xTaskResumeAll(); - 800310e: f000 fd61 bl 8003bd4 - 8003112: e76c b.n 8002fee + 800318a: f000 fd61 bl 8003c50 + 800318e: e76c b.n 800306a } } else { /* The timeout has expired. */ prvUnlockQueue( pxQueue ); - 8003114: 6b38 ldr r0, [r7, #48] ; 0x30 - 8003116: f000 fa15 bl 8003544 + 8003190: 6b38 ldr r0, [r7, #48] ; 0x30 + 8003192: f000 fa15 bl 80035c0 ( void ) xTaskResumeAll(); - 800311a: f000 fd5b bl 8003bd4 + 8003196: f000 fd5b bl 8003c50 traceQUEUE_SEND_FAILED( pxQueue ); return errQUEUE_FULL; - 800311e: 2300 movs r3, #0 + 800319a: 2300 movs r3, #0 } } /*lint -restore */ } - 8003120: 4618 mov r0, r3 - 8003122: 3738 adds r7, #56 ; 0x38 - 8003124: 46bd mov sp, r7 - 8003126: bd80 pop {r7, pc} - 8003128: e000ed04 .word 0xe000ed04 + 800319c: 4618 mov r0, r3 + 800319e: 3738 adds r7, #56 ; 0x38 + 80031a0: 46bd mov sp, r7 + 80031a2: bd80 pop {r7, pc} + 80031a4: e000ed04 .word 0xe000ed04 -0800312c : +080031a8 : /*-----------------------------------------------------------*/ BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue, const void * const pvItemToQueue, BaseType_t * const pxHigherPriorityTaskWoken, const BaseType_t xCopyPosition ) { - 800312c: b580 push {r7, lr} - 800312e: b090 sub sp, #64 ; 0x40 - 8003130: af00 add r7, sp, #0 - 8003132: 60f8 str r0, [r7, #12] - 8003134: 60b9 str r1, [r7, #8] - 8003136: 607a str r2, [r7, #4] - 8003138: 603b str r3, [r7, #0] + 80031a8: b580 push {r7, lr} + 80031aa: b090 sub sp, #64 ; 0x40 + 80031ac: af00 add r7, sp, #0 + 80031ae: 60f8 str r0, [r7, #12] + 80031b0: 60b9 str r1, [r7, #8] + 80031b2: 607a str r2, [r7, #4] + 80031b4: 603b str r3, [r7, #0] BaseType_t xReturn; UBaseType_t uxSavedInterruptStatus; Queue_t * const pxQueue = xQueue; - 800313a: 68fb ldr r3, [r7, #12] - 800313c: 63bb str r3, [r7, #56] ; 0x38 + 80031b6: 68fb ldr r3, [r7, #12] + 80031b8: 63bb str r3, [r7, #56] ; 0x38 configASSERT( pxQueue ); - 800313e: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003140: 2b00 cmp r3, #0 - 8003142: d10a bne.n 800315a + 80031ba: 6bbb ldr r3, [r7, #56] ; 0x38 + 80031bc: 2b00 cmp r3, #0 + 80031be: d10a bne.n 80031d6 __asm volatile - 8003144: f04f 0350 mov.w r3, #80 ; 0x50 - 8003148: f383 8811 msr BASEPRI, r3 - 800314c: f3bf 8f6f isb sy - 8003150: f3bf 8f4f dsb sy - 8003154: 62bb str r3, [r7, #40] ; 0x28 + 80031c0: f04f 0350 mov.w r3, #80 ; 0x50 + 80031c4: f383 8811 msr BASEPRI, r3 + 80031c8: f3bf 8f6f isb sy + 80031cc: f3bf 8f4f dsb sy + 80031d0: 62bb str r3, [r7, #40] ; 0x28 } - 8003156: bf00 nop - 8003158: e7fe b.n 8003158 + 80031d2: bf00 nop + 80031d4: e7fe b.n 80031d4 configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( UBaseType_t ) 0U ) ) ); - 800315a: 68bb ldr r3, [r7, #8] - 800315c: 2b00 cmp r3, #0 - 800315e: d103 bne.n 8003168 - 8003160: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003162: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003164: 2b00 cmp r3, #0 - 8003166: d101 bne.n 800316c - 8003168: 2301 movs r3, #1 - 800316a: e000 b.n 800316e - 800316c: 2300 movs r3, #0 - 800316e: 2b00 cmp r3, #0 - 8003170: d10a bne.n 8003188 + 80031d6: 68bb ldr r3, [r7, #8] + 80031d8: 2b00 cmp r3, #0 + 80031da: d103 bne.n 80031e4 + 80031dc: 6bbb ldr r3, [r7, #56] ; 0x38 + 80031de: 6c1b ldr r3, [r3, #64] ; 0x40 + 80031e0: 2b00 cmp r3, #0 + 80031e2: d101 bne.n 80031e8 + 80031e4: 2301 movs r3, #1 + 80031e6: e000 b.n 80031ea + 80031e8: 2300 movs r3, #0 + 80031ea: 2b00 cmp r3, #0 + 80031ec: d10a bne.n 8003204 __asm volatile - 8003172: f04f 0350 mov.w r3, #80 ; 0x50 - 8003176: f383 8811 msr BASEPRI, r3 - 800317a: f3bf 8f6f isb sy - 800317e: f3bf 8f4f dsb sy - 8003182: 627b str r3, [r7, #36] ; 0x24 + 80031ee: f04f 0350 mov.w r3, #80 ; 0x50 + 80031f2: f383 8811 msr BASEPRI, r3 + 80031f6: f3bf 8f6f isb sy + 80031fa: f3bf 8f4f dsb sy + 80031fe: 627b str r3, [r7, #36] ; 0x24 } - 8003184: bf00 nop - 8003186: e7fe b.n 8003186 + 8003200: bf00 nop + 8003202: e7fe b.n 8003202 configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); - 8003188: 683b ldr r3, [r7, #0] - 800318a: 2b02 cmp r3, #2 - 800318c: d103 bne.n 8003196 - 800318e: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003190: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003192: 2b01 cmp r3, #1 - 8003194: d101 bne.n 800319a - 8003196: 2301 movs r3, #1 - 8003198: e000 b.n 800319c - 800319a: 2300 movs r3, #0 - 800319c: 2b00 cmp r3, #0 - 800319e: d10a bne.n 80031b6 + 8003204: 683b ldr r3, [r7, #0] + 8003206: 2b02 cmp r3, #2 + 8003208: d103 bne.n 8003212 + 800320a: 6bbb ldr r3, [r7, #56] ; 0x38 + 800320c: 6bdb ldr r3, [r3, #60] ; 0x3c + 800320e: 2b01 cmp r3, #1 + 8003210: d101 bne.n 8003216 + 8003212: 2301 movs r3, #1 + 8003214: e000 b.n 8003218 + 8003216: 2300 movs r3, #0 + 8003218: 2b00 cmp r3, #0 + 800321a: d10a bne.n 8003232 __asm volatile - 80031a0: f04f 0350 mov.w r3, #80 ; 0x50 - 80031a4: f383 8811 msr BASEPRI, r3 - 80031a8: f3bf 8f6f isb sy - 80031ac: f3bf 8f4f dsb sy - 80031b0: 623b str r3, [r7, #32] + 800321c: f04f 0350 mov.w r3, #80 ; 0x50 + 8003220: f383 8811 msr BASEPRI, r3 + 8003224: f3bf 8f6f isb sy + 8003228: f3bf 8f4f dsb sy + 800322c: 623b str r3, [r7, #32] } - 80031b2: bf00 nop - 80031b4: e7fe b.n 80031b4 + 800322e: bf00 nop + 8003230: e7fe b.n 8003230 that have been assigned a priority at or (logically) below the maximum system call interrupt priority. FreeRTOS maintains a separate interrupt safe API to ensure interrupt entry is as fast and as simple as possible. More information (albeit Cortex-M specific) is provided on the following link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */ portASSERT_IF_INTERRUPT_PRIORITY_INVALID(); - 80031b6: f001 ff27 bl 8005008 + 8003232: f001 ff29 bl 8005088 portFORCE_INLINE static uint32_t ulPortRaiseBASEPRI( void ) { uint32_t ulOriginalBASEPRI, ulNewBASEPRI; __asm volatile - 80031ba: f3ef 8211 mrs r2, BASEPRI - 80031be: f04f 0350 mov.w r3, #80 ; 0x50 - 80031c2: f383 8811 msr BASEPRI, r3 - 80031c6: f3bf 8f6f isb sy - 80031ca: f3bf 8f4f dsb sy - 80031ce: 61fa str r2, [r7, #28] - 80031d0: 61bb str r3, [r7, #24] + 8003236: f3ef 8211 mrs r2, BASEPRI + 800323a: f04f 0350 mov.w r3, #80 ; 0x50 + 800323e: f383 8811 msr BASEPRI, r3 + 8003242: f3bf 8f6f isb sy + 8003246: f3bf 8f4f dsb sy + 800324a: 61fa str r2, [r7, #28] + 800324c: 61bb str r3, [r7, #24] :"=r" (ulOriginalBASEPRI), "=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) : "memory" ); /* This return will not be reached but is necessary to prevent compiler warnings. */ return ulOriginalBASEPRI; - 80031d2: 69fb ldr r3, [r7, #28] + 800324e: 69fb ldr r3, [r7, #28] /* Similar to xQueueGenericSend, except without blocking if there is no room in the queue. Also don't directly wake a task that was blocked on a queue read, instead return a flag to say whether a context switch is required or not (i.e. has a task with a higher priority than us been woken by this post). */ uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR(); - 80031d4: 637b str r3, [r7, #52] ; 0x34 + 8003250: 637b str r3, [r7, #52] ; 0x34 { if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) - 80031d6: 6bbb ldr r3, [r7, #56] ; 0x38 - 80031d8: 6b9a ldr r2, [r3, #56] ; 0x38 - 80031da: 6bbb ldr r3, [r7, #56] ; 0x38 - 80031dc: 6bdb ldr r3, [r3, #60] ; 0x3c - 80031de: 429a cmp r2, r3 - 80031e0: d302 bcc.n 80031e8 - 80031e2: 683b ldr r3, [r7, #0] - 80031e4: 2b02 cmp r3, #2 - 80031e6: d12f bne.n 8003248 + 8003252: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003254: 6b9a ldr r2, [r3, #56] ; 0x38 + 8003256: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003258: 6bdb ldr r3, [r3, #60] ; 0x3c + 800325a: 429a cmp r2, r3 + 800325c: d302 bcc.n 8003264 + 800325e: 683b ldr r3, [r7, #0] + 8003260: 2b02 cmp r3, #2 + 8003262: d12f bne.n 80032c4 { const int8_t cTxLock = pxQueue->cTxLock; - 80031e8: 6bbb ldr r3, [r7, #56] ; 0x38 - 80031ea: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 80031ee: f887 3033 strb.w r3, [r7, #51] ; 0x33 + 8003264: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003266: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 800326a: f887 3033 strb.w r3, [r7, #51] ; 0x33 const UBaseType_t uxPreviousMessagesWaiting = pxQueue->uxMessagesWaiting; - 80031f2: 6bbb ldr r3, [r7, #56] ; 0x38 - 80031f4: 6b9b ldr r3, [r3, #56] ; 0x38 - 80031f6: 62fb str r3, [r7, #44] ; 0x2c + 800326e: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003270: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003272: 62fb str r3, [r7, #44] ; 0x2c /* Semaphores use xQueueGiveFromISR(), so pxQueue will not be a semaphore or mutex. That means prvCopyDataToQueue() cannot result in a task disinheriting a priority and prvCopyDataToQueue() can be called here even though the disinherit function does not check if the scheduler is suspended before accessing the ready lists. */ ( void ) prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition ); - 80031f8: 683a ldr r2, [r7, #0] - 80031fa: 68b9 ldr r1, [r7, #8] - 80031fc: 6bb8 ldr r0, [r7, #56] ; 0x38 - 80031fe: f000 f911 bl 8003424 + 8003274: 683a ldr r2, [r7, #0] + 8003276: 68b9 ldr r1, [r7, #8] + 8003278: 6bb8 ldr r0, [r7, #56] ; 0x38 + 800327a: f000 f911 bl 80034a0 /* The event list is not altered if the queue is locked. This will be done when the queue is unlocked later. */ if( cTxLock == queueUNLOCKED ) - 8003202: f997 3033 ldrsb.w r3, [r7, #51] ; 0x33 - 8003206: f1b3 3fff cmp.w r3, #4294967295 - 800320a: d112 bne.n 8003232 + 800327e: f997 3033 ldrsb.w r3, [r7, #51] ; 0x33 + 8003282: f1b3 3fff cmp.w r3, #4294967295 + 8003286: d112 bne.n 80032ae } } } #else /* configUSE_QUEUE_SETS */ { if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - 800320c: 6bbb ldr r3, [r7, #56] ; 0x38 - 800320e: 6a5b ldr r3, [r3, #36] ; 0x24 - 8003210: 2b00 cmp r3, #0 - 8003212: d016 beq.n 8003242 + 8003288: 6bbb ldr r3, [r7, #56] ; 0x38 + 800328a: 6a5b ldr r3, [r3, #36] ; 0x24 + 800328c: 2b00 cmp r3, #0 + 800328e: d016 beq.n 80032be { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - 8003214: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003216: 3324 adds r3, #36 ; 0x24 - 8003218: 4618 mov r0, r3 - 800321a: f000 fef7 bl 800400c - 800321e: 4603 mov r3, r0 - 8003220: 2b00 cmp r3, #0 - 8003222: d00e beq.n 8003242 + 8003290: 6bbb ldr r3, [r7, #56] ; 0x38 + 8003292: 3324 adds r3, #36 ; 0x24 + 8003294: 4618 mov r0, r3 + 8003296: f000 fef7 bl 8004088 + 800329a: 4603 mov r3, r0 + 800329c: 2b00 cmp r3, #0 + 800329e: d00e beq.n 80032be { /* The task waiting has a higher priority so record that a context switch is required. */ if( pxHigherPriorityTaskWoken != NULL ) - 8003224: 687b ldr r3, [r7, #4] - 8003226: 2b00 cmp r3, #0 - 8003228: d00b beq.n 8003242 + 80032a0: 687b ldr r3, [r7, #4] + 80032a2: 2b00 cmp r3, #0 + 80032a4: d00b beq.n 80032be { *pxHigherPriorityTaskWoken = pdTRUE; - 800322a: 687b ldr r3, [r7, #4] - 800322c: 2201 movs r2, #1 - 800322e: 601a str r2, [r3, #0] - 8003230: e007 b.n 8003242 + 80032a6: 687b ldr r3, [r7, #4] + 80032a8: 2201 movs r2, #1 + 80032aa: 601a str r2, [r3, #0] + 80032ac: e007 b.n 80032be } else { /* Increment the lock count so the task that unlocks the queue knows that data was posted while it was locked. */ pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); - 8003232: f897 3033 ldrb.w r3, [r7, #51] ; 0x33 - 8003236: 3301 adds r3, #1 - 8003238: b2db uxtb r3, r3 - 800323a: b25a sxtb r2, r3 - 800323c: 6bbb ldr r3, [r7, #56] ; 0x38 - 800323e: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 80032ae: f897 3033 ldrb.w r3, [r7, #51] ; 0x33 + 80032b2: 3301 adds r3, #1 + 80032b4: b2db uxtb r3, r3 + 80032b6: b25a sxtb r2, r3 + 80032b8: 6bbb ldr r3, [r7, #56] ; 0x38 + 80032ba: f883 2045 strb.w r2, [r3, #69] ; 0x45 } xReturn = pdPASS; - 8003242: 2301 movs r3, #1 - 8003244: 63fb str r3, [r7, #60] ; 0x3c + 80032be: 2301 movs r3, #1 + 80032c0: 63fb str r3, [r7, #60] ; 0x3c { - 8003246: e001 b.n 800324c + 80032c2: e001 b.n 80032c8 } else { traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue ); xReturn = errQUEUE_FULL; - 8003248: 2300 movs r3, #0 - 800324a: 63fb str r3, [r7, #60] ; 0x3c - 800324c: 6b7b ldr r3, [r7, #52] ; 0x34 - 800324e: 617b str r3, [r7, #20] + 80032c4: 2300 movs r3, #0 + 80032c6: 63fb str r3, [r7, #60] ; 0x3c + 80032c8: 6b7b ldr r3, [r7, #52] ; 0x34 + 80032ca: 617b str r3, [r7, #20] } /*-----------------------------------------------------------*/ portFORCE_INLINE static void vPortSetBASEPRI( uint32_t ulNewMaskValue ) { __asm volatile - 8003250: 697b ldr r3, [r7, #20] - 8003252: f383 8811 msr BASEPRI, r3 + 80032cc: 697b ldr r3, [r7, #20] + 80032ce: f383 8811 msr BASEPRI, r3 ( " msr basepri, %0 " :: "r" ( ulNewMaskValue ) : "memory" ); } - 8003256: bf00 nop + 80032d2: bf00 nop } } portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus ); return xReturn; - 8003258: 6bfb ldr r3, [r7, #60] ; 0x3c + 80032d4: 6bfb ldr r3, [r7, #60] ; 0x3c } - 800325a: 4618 mov r0, r3 - 800325c: 3740 adds r7, #64 ; 0x40 - 800325e: 46bd mov sp, r7 - 8003260: bd80 pop {r7, pc} + 80032d6: 4618 mov r0, r3 + 80032d8: 3740 adds r7, #64 ; 0x40 + 80032da: 46bd mov sp, r7 + 80032dc: bd80 pop {r7, pc} ... -08003264 : +080032e0 : return xReturn; } /*-----------------------------------------------------------*/ BaseType_t xQueueReceive( QueueHandle_t xQueue, void * const pvBuffer, TickType_t xTicksToWait ) { - 8003264: b580 push {r7, lr} - 8003266: b08c sub sp, #48 ; 0x30 - 8003268: af00 add r7, sp, #0 - 800326a: 60f8 str r0, [r7, #12] - 800326c: 60b9 str r1, [r7, #8] - 800326e: 607a str r2, [r7, #4] + 80032e0: b580 push {r7, lr} + 80032e2: b08c sub sp, #48 ; 0x30 + 80032e4: af00 add r7, sp, #0 + 80032e6: 60f8 str r0, [r7, #12] + 80032e8: 60b9 str r1, [r7, #8] + 80032ea: 607a str r2, [r7, #4] BaseType_t xEntryTimeSet = pdFALSE; - 8003270: 2300 movs r3, #0 - 8003272: 62fb str r3, [r7, #44] ; 0x2c + 80032ec: 2300 movs r3, #0 + 80032ee: 62fb str r3, [r7, #44] ; 0x2c TimeOut_t xTimeOut; Queue_t * const pxQueue = xQueue; - 8003274: 68fb ldr r3, [r7, #12] - 8003276: 62bb str r3, [r7, #40] ; 0x28 + 80032f0: 68fb ldr r3, [r7, #12] + 80032f2: 62bb str r3, [r7, #40] ; 0x28 /* Check the pointer is not NULL. */ configASSERT( ( pxQueue ) ); - 8003278: 6abb ldr r3, [r7, #40] ; 0x28 - 800327a: 2b00 cmp r3, #0 - 800327c: d10a bne.n 8003294 + 80032f4: 6abb ldr r3, [r7, #40] ; 0x28 + 80032f6: 2b00 cmp r3, #0 + 80032f8: d10a bne.n 8003310 __asm volatile - 800327e: f04f 0350 mov.w r3, #80 ; 0x50 - 8003282: f383 8811 msr BASEPRI, r3 - 8003286: f3bf 8f6f isb sy - 800328a: f3bf 8f4f dsb sy - 800328e: 623b str r3, [r7, #32] + 80032fa: f04f 0350 mov.w r3, #80 ; 0x50 + 80032fe: f383 8811 msr BASEPRI, r3 + 8003302: f3bf 8f6f isb sy + 8003306: f3bf 8f4f dsb sy + 800330a: 623b str r3, [r7, #32] } - 8003290: bf00 nop - 8003292: e7fe b.n 8003292 + 800330c: bf00 nop + 800330e: e7fe b.n 800330e /* The buffer into which data is received can only be NULL if the data size is zero (so no data is copied into the buffer. */ configASSERT( !( ( ( pvBuffer ) == NULL ) && ( ( pxQueue )->uxItemSize != ( UBaseType_t ) 0U ) ) ); - 8003294: 68bb ldr r3, [r7, #8] - 8003296: 2b00 cmp r3, #0 - 8003298: d103 bne.n 80032a2 - 800329a: 6abb ldr r3, [r7, #40] ; 0x28 - 800329c: 6c1b ldr r3, [r3, #64] ; 0x40 - 800329e: 2b00 cmp r3, #0 - 80032a0: d101 bne.n 80032a6 - 80032a2: 2301 movs r3, #1 - 80032a4: e000 b.n 80032a8 - 80032a6: 2300 movs r3, #0 - 80032a8: 2b00 cmp r3, #0 - 80032aa: d10a bne.n 80032c2 + 8003310: 68bb ldr r3, [r7, #8] + 8003312: 2b00 cmp r3, #0 + 8003314: d103 bne.n 800331e + 8003316: 6abb ldr r3, [r7, #40] ; 0x28 + 8003318: 6c1b ldr r3, [r3, #64] ; 0x40 + 800331a: 2b00 cmp r3, #0 + 800331c: d101 bne.n 8003322 + 800331e: 2301 movs r3, #1 + 8003320: e000 b.n 8003324 + 8003322: 2300 movs r3, #0 + 8003324: 2b00 cmp r3, #0 + 8003326: d10a bne.n 800333e __asm volatile - 80032ac: f04f 0350 mov.w r3, #80 ; 0x50 - 80032b0: f383 8811 msr BASEPRI, r3 - 80032b4: f3bf 8f6f isb sy - 80032b8: f3bf 8f4f dsb sy - 80032bc: 61fb str r3, [r7, #28] + 8003328: f04f 0350 mov.w r3, #80 ; 0x50 + 800332c: f383 8811 msr BASEPRI, r3 + 8003330: f3bf 8f6f isb sy + 8003334: f3bf 8f4f dsb sy + 8003338: 61fb str r3, [r7, #28] } - 80032be: bf00 nop - 80032c0: e7fe b.n 80032c0 + 800333a: bf00 nop + 800333c: e7fe b.n 800333c /* Cannot block if the scheduler is suspended. */ #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) { configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) ); - 80032c2: f001 f865 bl 8004390 - 80032c6: 4603 mov r3, r0 - 80032c8: 2b00 cmp r3, #0 - 80032ca: d102 bne.n 80032d2 - 80032cc: 687b ldr r3, [r7, #4] - 80032ce: 2b00 cmp r3, #0 - 80032d0: d101 bne.n 80032d6 - 80032d2: 2301 movs r3, #1 - 80032d4: e000 b.n 80032d8 - 80032d6: 2300 movs r3, #0 - 80032d8: 2b00 cmp r3, #0 - 80032da: d10a bne.n 80032f2 + 800333e: f001 f865 bl 800440c + 8003342: 4603 mov r3, r0 + 8003344: 2b00 cmp r3, #0 + 8003346: d102 bne.n 800334e + 8003348: 687b ldr r3, [r7, #4] + 800334a: 2b00 cmp r3, #0 + 800334c: d101 bne.n 8003352 + 800334e: 2301 movs r3, #1 + 8003350: e000 b.n 8003354 + 8003352: 2300 movs r3, #0 + 8003354: 2b00 cmp r3, #0 + 8003356: d10a bne.n 800336e __asm volatile - 80032dc: f04f 0350 mov.w r3, #80 ; 0x50 - 80032e0: f383 8811 msr BASEPRI, r3 - 80032e4: f3bf 8f6f isb sy - 80032e8: f3bf 8f4f dsb sy - 80032ec: 61bb str r3, [r7, #24] + 8003358: f04f 0350 mov.w r3, #80 ; 0x50 + 800335c: f383 8811 msr BASEPRI, r3 + 8003360: f3bf 8f6f isb sy + 8003364: f3bf 8f4f dsb sy + 8003368: 61bb str r3, [r7, #24] } - 80032ee: bf00 nop - 80032f0: e7fe b.n 80032f0 + 800336a: bf00 nop + 800336c: e7fe b.n 800336c /*lint -save -e904 This function relaxes the coding standard somewhat to allow return statements within the function itself. This is done in the interest of execution time efficiency. */ for( ;; ) { taskENTER_CRITICAL(); - 80032f2: f001 fda7 bl 8004e44 + 800336e: f001 fda9 bl 8004ec4 { const UBaseType_t uxMessagesWaiting = pxQueue->uxMessagesWaiting; - 80032f6: 6abb ldr r3, [r7, #40] ; 0x28 - 80032f8: 6b9b ldr r3, [r3, #56] ; 0x38 - 80032fa: 627b str r3, [r7, #36] ; 0x24 + 8003372: 6abb ldr r3, [r7, #40] ; 0x28 + 8003374: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003376: 627b str r3, [r7, #36] ; 0x24 /* Is there data in the queue now? To be running the calling task must be the highest priority task wanting to access the queue. */ if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - 80032fc: 6a7b ldr r3, [r7, #36] ; 0x24 - 80032fe: 2b00 cmp r3, #0 - 8003300: d01f beq.n 8003342 + 8003378: 6a7b ldr r3, [r7, #36] ; 0x24 + 800337a: 2b00 cmp r3, #0 + 800337c: d01f beq.n 80033be { /* Data available, remove one item. */ prvCopyDataFromQueue( pxQueue, pvBuffer ); - 8003302: 68b9 ldr r1, [r7, #8] - 8003304: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003306: f000 f8f7 bl 80034f8 + 800337e: 68b9 ldr r1, [r7, #8] + 8003380: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8003382: f000 f8f7 bl 8003574 traceQUEUE_RECEIVE( pxQueue ); pxQueue->uxMessagesWaiting = uxMessagesWaiting - ( UBaseType_t ) 1; - 800330a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800330c: 1e5a subs r2, r3, #1 - 800330e: 6abb ldr r3, [r7, #40] ; 0x28 - 8003310: 639a str r2, [r3, #56] ; 0x38 + 8003386: 6a7b ldr r3, [r7, #36] ; 0x24 + 8003388: 1e5a subs r2, r3, #1 + 800338a: 6abb ldr r3, [r7, #40] ; 0x28 + 800338c: 639a str r2, [r3, #56] ; 0x38 /* There is now space in the queue, were any tasks waiting to post to the queue? If so, unblock the highest priority waiting task. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - 8003312: 6abb ldr r3, [r7, #40] ; 0x28 - 8003314: 691b ldr r3, [r3, #16] - 8003316: 2b00 cmp r3, #0 - 8003318: d00f beq.n 800333a + 800338e: 6abb ldr r3, [r7, #40] ; 0x28 + 8003390: 691b ldr r3, [r3, #16] + 8003392: 2b00 cmp r3, #0 + 8003394: d00f beq.n 80033b6 { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - 800331a: 6abb ldr r3, [r7, #40] ; 0x28 - 800331c: 3310 adds r3, #16 - 800331e: 4618 mov r0, r3 - 8003320: f000 fe74 bl 800400c - 8003324: 4603 mov r3, r0 - 8003326: 2b00 cmp r3, #0 - 8003328: d007 beq.n 800333a + 8003396: 6abb ldr r3, [r7, #40] ; 0x28 + 8003398: 3310 adds r3, #16 + 800339a: 4618 mov r0, r3 + 800339c: f000 fe74 bl 8004088 + 80033a0: 4603 mov r3, r0 + 80033a2: 2b00 cmp r3, #0 + 80033a4: d007 beq.n 80033b6 { queueYIELD_IF_USING_PREEMPTION(); - 800332a: 4b3d ldr r3, [pc, #244] ; (8003420 ) - 800332c: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003330: 601a str r2, [r3, #0] - 8003332: f3bf 8f4f dsb sy - 8003336: f3bf 8f6f isb sy + 80033a6: 4b3d ldr r3, [pc, #244] ; (800349c ) + 80033a8: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 80033ac: 601a str r2, [r3, #0] + 80033ae: f3bf 8f4f dsb sy + 80033b2: f3bf 8f6f isb sy else { mtCOVERAGE_TEST_MARKER(); } taskEXIT_CRITICAL(); - 800333a: f001 fdb3 bl 8004ea4 + 80033b6: f001 fdb5 bl 8004f24 return pdPASS; - 800333e: 2301 movs r3, #1 - 8003340: e069 b.n 8003416 + 80033ba: 2301 movs r3, #1 + 80033bc: e069 b.n 8003492 } else { if( xTicksToWait == ( TickType_t ) 0 ) - 8003342: 687b ldr r3, [r7, #4] - 8003344: 2b00 cmp r3, #0 - 8003346: d103 bne.n 8003350 + 80033be: 687b ldr r3, [r7, #4] + 80033c0: 2b00 cmp r3, #0 + 80033c2: d103 bne.n 80033cc { /* The queue was empty and no block time is specified (or the block time has expired) so leave now. */ taskEXIT_CRITICAL(); - 8003348: f001 fdac bl 8004ea4 + 80033c4: f001 fdae bl 8004f24 traceQUEUE_RECEIVE_FAILED( pxQueue ); return errQUEUE_EMPTY; - 800334c: 2300 movs r3, #0 - 800334e: e062 b.n 8003416 + 80033c8: 2300 movs r3, #0 + 80033ca: e062 b.n 8003492 } else if( xEntryTimeSet == pdFALSE ) - 8003350: 6afb ldr r3, [r7, #44] ; 0x2c - 8003352: 2b00 cmp r3, #0 - 8003354: d106 bne.n 8003364 + 80033cc: 6afb ldr r3, [r7, #44] ; 0x2c + 80033ce: 2b00 cmp r3, #0 + 80033d0: d106 bne.n 80033e0 { /* The queue was empty and a block time was specified so configure the timeout structure. */ vTaskInternalSetTimeOutState( &xTimeOut ); - 8003356: f107 0310 add.w r3, r7, #16 - 800335a: 4618 mov r0, r3 - 800335c: f000 feba bl 80040d4 + 80033d2: f107 0310 add.w r3, r7, #16 + 80033d6: 4618 mov r0, r3 + 80033d8: f000 feba bl 8004150 xEntryTimeSet = pdTRUE; - 8003360: 2301 movs r3, #1 - 8003362: 62fb str r3, [r7, #44] ; 0x2c + 80033dc: 2301 movs r3, #1 + 80033de: 62fb str r3, [r7, #44] ; 0x2c /* Entry time was already set. */ mtCOVERAGE_TEST_MARKER(); } } } taskEXIT_CRITICAL(); - 8003364: f001 fd9e bl 8004ea4 + 80033e0: f001 fda0 bl 8004f24 /* Interrupts and other tasks can send to and receive from the queue now the critical section has been exited. */ vTaskSuspendAll(); - 8003368: f000 fc26 bl 8003bb8 + 80033e4: f000 fc26 bl 8003c34 prvLockQueue( pxQueue ); - 800336c: f001 fd6a bl 8004e44 - 8003370: 6abb ldr r3, [r7, #40] ; 0x28 - 8003372: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 8003376: b25b sxtb r3, r3 - 8003378: f1b3 3fff cmp.w r3, #4294967295 - 800337c: d103 bne.n 8003386 - 800337e: 6abb ldr r3, [r7, #40] ; 0x28 - 8003380: 2200 movs r2, #0 - 8003382: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 8003386: 6abb ldr r3, [r7, #40] ; 0x28 - 8003388: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 800338c: b25b sxtb r3, r3 - 800338e: f1b3 3fff cmp.w r3, #4294967295 - 8003392: d103 bne.n 800339c - 8003394: 6abb ldr r3, [r7, #40] ; 0x28 - 8003396: 2200 movs r2, #0 - 8003398: f883 2045 strb.w r2, [r3, #69] ; 0x45 - 800339c: f001 fd82 bl 8004ea4 + 80033e8: f001 fd6c bl 8004ec4 + 80033ec: 6abb ldr r3, [r7, #40] ; 0x28 + 80033ee: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 80033f2: b25b sxtb r3, r3 + 80033f4: f1b3 3fff cmp.w r3, #4294967295 + 80033f8: d103 bne.n 8003402 + 80033fa: 6abb ldr r3, [r7, #40] ; 0x28 + 80033fc: 2200 movs r2, #0 + 80033fe: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8003402: 6abb ldr r3, [r7, #40] ; 0x28 + 8003404: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 8003408: b25b sxtb r3, r3 + 800340a: f1b3 3fff cmp.w r3, #4294967295 + 800340e: d103 bne.n 8003418 + 8003410: 6abb ldr r3, [r7, #40] ; 0x28 + 8003412: 2200 movs r2, #0 + 8003414: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8003418: f001 fd84 bl 8004f24 /* Update the timeout state to see if it has expired yet. */ if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ) - 80033a0: 1d3a adds r2, r7, #4 - 80033a2: f107 0310 add.w r3, r7, #16 - 80033a6: 4611 mov r1, r2 - 80033a8: 4618 mov r0, r3 - 80033aa: f000 fea9 bl 8004100 - 80033ae: 4603 mov r3, r0 - 80033b0: 2b00 cmp r3, #0 - 80033b2: d123 bne.n 80033fc + 800341c: 1d3a adds r2, r7, #4 + 800341e: f107 0310 add.w r3, r7, #16 + 8003422: 4611 mov r1, r2 + 8003424: 4618 mov r0, r3 + 8003426: f000 fea9 bl 800417c + 800342a: 4603 mov r3, r0 + 800342c: 2b00 cmp r3, #0 + 800342e: d123 bne.n 8003478 { /* The timeout has not expired. If the queue is still empty place the task on the list of tasks waiting to receive from the queue. */ if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - 80033b4: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80033b6: f000 f917 bl 80035e8 - 80033ba: 4603 mov r3, r0 - 80033bc: 2b00 cmp r3, #0 - 80033be: d017 beq.n 80033f0 + 8003430: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8003432: f000 f917 bl 8003664 + 8003436: 4603 mov r3, r0 + 8003438: 2b00 cmp r3, #0 + 800343a: d017 beq.n 800346c { traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue ); vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait ); - 80033c0: 6abb ldr r3, [r7, #40] ; 0x28 - 80033c2: 3324 adds r3, #36 ; 0x24 - 80033c4: 687a ldr r2, [r7, #4] - 80033c6: 4611 mov r1, r2 - 80033c8: 4618 mov r0, r3 - 80033ca: f000 fdcf bl 8003f6c + 800343c: 6abb ldr r3, [r7, #40] ; 0x28 + 800343e: 3324 adds r3, #36 ; 0x24 + 8003440: 687a ldr r2, [r7, #4] + 8003442: 4611 mov r1, r2 + 8003444: 4618 mov r0, r3 + 8003446: f000 fdcf bl 8003fe8 prvUnlockQueue( pxQueue ); - 80033ce: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80033d0: f000 f8b8 bl 8003544 + 800344a: 6ab8 ldr r0, [r7, #40] ; 0x28 + 800344c: f000 f8b8 bl 80035c0 if( xTaskResumeAll() == pdFALSE ) - 80033d4: f000 fbfe bl 8003bd4 - 80033d8: 4603 mov r3, r0 - 80033da: 2b00 cmp r3, #0 - 80033dc: d189 bne.n 80032f2 + 8003450: f000 fbfe bl 8003c50 + 8003454: 4603 mov r3, r0 + 8003456: 2b00 cmp r3, #0 + 8003458: d189 bne.n 800336e { portYIELD_WITHIN_API(); - 80033de: 4b10 ldr r3, [pc, #64] ; (8003420 ) - 80033e0: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80033e4: 601a str r2, [r3, #0] - 80033e6: f3bf 8f4f dsb sy - 80033ea: f3bf 8f6f isb sy - 80033ee: e780 b.n 80032f2 + 800345a: 4b10 ldr r3, [pc, #64] ; (800349c ) + 800345c: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003460: 601a str r2, [r3, #0] + 8003462: f3bf 8f4f dsb sy + 8003466: f3bf 8f6f isb sy + 800346a: e780 b.n 800336e } else { /* The queue contains data again. Loop back to try and read the data. */ prvUnlockQueue( pxQueue ); - 80033f0: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80033f2: f000 f8a7 bl 8003544 + 800346c: 6ab8 ldr r0, [r7, #40] ; 0x28 + 800346e: f000 f8a7 bl 80035c0 ( void ) xTaskResumeAll(); - 80033f6: f000 fbed bl 8003bd4 - 80033fa: e77a b.n 80032f2 + 8003472: f000 fbed bl 8003c50 + 8003476: e77a b.n 800336e } else { /* Timed out. If there is no data in the queue exit, otherwise loop back and attempt to read the data. */ prvUnlockQueue( pxQueue ); - 80033fc: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80033fe: f000 f8a1 bl 8003544 + 8003478: 6ab8 ldr r0, [r7, #40] ; 0x28 + 800347a: f000 f8a1 bl 80035c0 ( void ) xTaskResumeAll(); - 8003402: f000 fbe7 bl 8003bd4 + 800347e: f000 fbe7 bl 8003c50 if( prvIsQueueEmpty( pxQueue ) != pdFALSE ) - 8003406: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8003408: f000 f8ee bl 80035e8 - 800340c: 4603 mov r3, r0 - 800340e: 2b00 cmp r3, #0 - 8003410: f43f af6f beq.w 80032f2 + 8003482: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8003484: f000 f8ee bl 8003664 + 8003488: 4603 mov r3, r0 + 800348a: 2b00 cmp r3, #0 + 800348c: f43f af6f beq.w 800336e { traceQUEUE_RECEIVE_FAILED( pxQueue ); return errQUEUE_EMPTY; - 8003414: 2300 movs r3, #0 + 8003490: 2300 movs r3, #0 { mtCOVERAGE_TEST_MARKER(); } } } /*lint -restore */ } - 8003416: 4618 mov r0, r3 - 8003418: 3730 adds r7, #48 ; 0x30 - 800341a: 46bd mov sp, r7 - 800341c: bd80 pop {r7, pc} - 800341e: bf00 nop - 8003420: e000ed04 .word 0xe000ed04 + 8003492: 4618 mov r0, r3 + 8003494: 3730 adds r7, #48 ; 0x30 + 8003496: 46bd mov sp, r7 + 8003498: bd80 pop {r7, pc} + 800349a: bf00 nop + 800349c: e000ed04 .word 0xe000ed04 -08003424 : +080034a0 : #endif /* configUSE_MUTEXES */ /*-----------------------------------------------------------*/ static BaseType_t prvCopyDataToQueue( Queue_t * const pxQueue, const void *pvItemToQueue, const BaseType_t xPosition ) { - 8003424: b580 push {r7, lr} - 8003426: b086 sub sp, #24 - 8003428: af00 add r7, sp, #0 - 800342a: 60f8 str r0, [r7, #12] - 800342c: 60b9 str r1, [r7, #8] - 800342e: 607a str r2, [r7, #4] + 80034a0: b580 push {r7, lr} + 80034a2: b086 sub sp, #24 + 80034a4: af00 add r7, sp, #0 + 80034a6: 60f8 str r0, [r7, #12] + 80034a8: 60b9 str r1, [r7, #8] + 80034aa: 607a str r2, [r7, #4] BaseType_t xReturn = pdFALSE; - 8003430: 2300 movs r3, #0 - 8003432: 617b str r3, [r7, #20] + 80034ac: 2300 movs r3, #0 + 80034ae: 617b str r3, [r7, #20] UBaseType_t uxMessagesWaiting; /* This function is called from a critical section. */ uxMessagesWaiting = pxQueue->uxMessagesWaiting; - 8003434: 68fb ldr r3, [r7, #12] - 8003436: 6b9b ldr r3, [r3, #56] ; 0x38 - 8003438: 613b str r3, [r7, #16] + 80034b0: 68fb ldr r3, [r7, #12] + 80034b2: 6b9b ldr r3, [r3, #56] ; 0x38 + 80034b4: 613b str r3, [r7, #16] if( pxQueue->uxItemSize == ( UBaseType_t ) 0 ) - 800343a: 68fb ldr r3, [r7, #12] - 800343c: 6c1b ldr r3, [r3, #64] ; 0x40 - 800343e: 2b00 cmp r3, #0 - 8003440: d10d bne.n 800345e + 80034b6: 68fb ldr r3, [r7, #12] + 80034b8: 6c1b ldr r3, [r3, #64] ; 0x40 + 80034ba: 2b00 cmp r3, #0 + 80034bc: d10d bne.n 80034da { #if ( configUSE_MUTEXES == 1 ) { if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX ) - 8003442: 68fb ldr r3, [r7, #12] - 8003444: 681b ldr r3, [r3, #0] - 8003446: 2b00 cmp r3, #0 - 8003448: d14d bne.n 80034e6 + 80034be: 68fb ldr r3, [r7, #12] + 80034c0: 681b ldr r3, [r3, #0] + 80034c2: 2b00 cmp r3, #0 + 80034c4: d14d bne.n 8003562 { /* The mutex is no longer being held. */ xReturn = xTaskPriorityDisinherit( pxQueue->u.xSemaphore.xMutexHolder ); - 800344a: 68fb ldr r3, [r7, #12] - 800344c: 689b ldr r3, [r3, #8] - 800344e: 4618 mov r0, r3 - 8003450: f000 ffbc bl 80043cc - 8003454: 6178 str r0, [r7, #20] + 80034c6: 68fb ldr r3, [r7, #12] + 80034c8: 689b ldr r3, [r3, #8] + 80034ca: 4618 mov r0, r3 + 80034cc: f000 ffbc bl 8004448 + 80034d0: 6178 str r0, [r7, #20] pxQueue->u.xSemaphore.xMutexHolder = NULL; - 8003456: 68fb ldr r3, [r7, #12] - 8003458: 2200 movs r2, #0 - 800345a: 609a str r2, [r3, #8] - 800345c: e043 b.n 80034e6 + 80034d2: 68fb ldr r3, [r7, #12] + 80034d4: 2200 movs r2, #0 + 80034d6: 609a str r2, [r3, #8] + 80034d8: e043 b.n 8003562 mtCOVERAGE_TEST_MARKER(); } } #endif /* configUSE_MUTEXES */ } else if( xPosition == queueSEND_TO_BACK ) - 800345e: 687b ldr r3, [r7, #4] - 8003460: 2b00 cmp r3, #0 - 8003462: d119 bne.n 8003498 + 80034da: 687b ldr r3, [r7, #4] + 80034dc: 2b00 cmp r3, #0 + 80034de: d119 bne.n 8003514 { ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ - 8003464: 68fb ldr r3, [r7, #12] - 8003466: 6858 ldr r0, [r3, #4] - 8003468: 68fb ldr r3, [r7, #12] - 800346a: 6c1b ldr r3, [r3, #64] ; 0x40 - 800346c: 461a mov r2, r3 - 800346e: 68b9 ldr r1, [r7, #8] - 8003470: f002 f878 bl 8005564 + 80034e0: 68fb ldr r3, [r7, #12] + 80034e2: 6858 ldr r0, [r3, #4] + 80034e4: 68fb ldr r3, [r7, #12] + 80034e6: 6c1b ldr r3, [r3, #64] ; 0x40 + 80034e8: 461a mov r2, r3 + 80034ea: 68b9 ldr r1, [r7, #8] + 80034ec: f002 f87a bl 80055e4 pxQueue->pcWriteTo += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ - 8003474: 68fb ldr r3, [r7, #12] - 8003476: 685a ldr r2, [r3, #4] - 8003478: 68fb ldr r3, [r7, #12] - 800347a: 6c1b ldr r3, [r3, #64] ; 0x40 - 800347c: 441a add r2, r3 - 800347e: 68fb ldr r3, [r7, #12] - 8003480: 605a str r2, [r3, #4] + 80034f0: 68fb ldr r3, [r7, #12] + 80034f2: 685a ldr r2, [r3, #4] + 80034f4: 68fb ldr r3, [r7, #12] + 80034f6: 6c1b ldr r3, [r3, #64] ; 0x40 + 80034f8: 441a add r2, r3 + 80034fa: 68fb ldr r3, [r7, #12] + 80034fc: 605a str r2, [r3, #4] if( pxQueue->pcWriteTo >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ - 8003482: 68fb ldr r3, [r7, #12] - 8003484: 685a ldr r2, [r3, #4] - 8003486: 68fb ldr r3, [r7, #12] - 8003488: 689b ldr r3, [r3, #8] - 800348a: 429a cmp r2, r3 - 800348c: d32b bcc.n 80034e6 + 80034fe: 68fb ldr r3, [r7, #12] + 8003500: 685a ldr r2, [r3, #4] + 8003502: 68fb ldr r3, [r7, #12] + 8003504: 689b ldr r3, [r3, #8] + 8003506: 429a cmp r2, r3 + 8003508: d32b bcc.n 8003562 { pxQueue->pcWriteTo = pxQueue->pcHead; - 800348e: 68fb ldr r3, [r7, #12] - 8003490: 681a ldr r2, [r3, #0] - 8003492: 68fb ldr r3, [r7, #12] - 8003494: 605a str r2, [r3, #4] - 8003496: e026 b.n 80034e6 + 800350a: 68fb ldr r3, [r7, #12] + 800350c: 681a ldr r2, [r3, #0] + 800350e: 68fb ldr r3, [r7, #12] + 8003510: 605a str r2, [r3, #4] + 8003512: e026 b.n 8003562 mtCOVERAGE_TEST_MARKER(); } } else { ( void ) memcpy( ( void * ) pxQueue->u.xQueue.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e9087 !e418 MISRA exception as the casts are only redundant for some ports. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. Assert checks null pointer only used when length is 0. */ - 8003498: 68fb ldr r3, [r7, #12] - 800349a: 68d8 ldr r0, [r3, #12] - 800349c: 68fb ldr r3, [r7, #12] - 800349e: 6c1b ldr r3, [r3, #64] ; 0x40 - 80034a0: 461a mov r2, r3 - 80034a2: 68b9 ldr r1, [r7, #8] - 80034a4: f002 f85e bl 8005564 + 8003514: 68fb ldr r3, [r7, #12] + 8003516: 68d8 ldr r0, [r3, #12] + 8003518: 68fb ldr r3, [r7, #12] + 800351a: 6c1b ldr r3, [r3, #64] ; 0x40 + 800351c: 461a mov r2, r3 + 800351e: 68b9 ldr r1, [r7, #8] + 8003520: f002 f860 bl 80055e4 pxQueue->u.xQueue.pcReadFrom -= pxQueue->uxItemSize; - 80034a8: 68fb ldr r3, [r7, #12] - 80034aa: 68da ldr r2, [r3, #12] - 80034ac: 68fb ldr r3, [r7, #12] - 80034ae: 6c1b ldr r3, [r3, #64] ; 0x40 - 80034b0: 425b negs r3, r3 - 80034b2: 441a add r2, r3 - 80034b4: 68fb ldr r3, [r7, #12] - 80034b6: 60da str r2, [r3, #12] + 8003524: 68fb ldr r3, [r7, #12] + 8003526: 68da ldr r2, [r3, #12] + 8003528: 68fb ldr r3, [r7, #12] + 800352a: 6c1b ldr r3, [r3, #64] ; 0x40 + 800352c: 425b negs r3, r3 + 800352e: 441a add r2, r3 + 8003530: 68fb ldr r3, [r7, #12] + 8003532: 60da str r2, [r3, #12] if( pxQueue->u.xQueue.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */ - 80034b8: 68fb ldr r3, [r7, #12] - 80034ba: 68da ldr r2, [r3, #12] - 80034bc: 68fb ldr r3, [r7, #12] - 80034be: 681b ldr r3, [r3, #0] - 80034c0: 429a cmp r2, r3 - 80034c2: d207 bcs.n 80034d4 + 8003534: 68fb ldr r3, [r7, #12] + 8003536: 68da ldr r2, [r3, #12] + 8003538: 68fb ldr r3, [r7, #12] + 800353a: 681b ldr r3, [r3, #0] + 800353c: 429a cmp r2, r3 + 800353e: d207 bcs.n 8003550 { pxQueue->u.xQueue.pcReadFrom = ( pxQueue->u.xQueue.pcTail - pxQueue->uxItemSize ); - 80034c4: 68fb ldr r3, [r7, #12] - 80034c6: 689a ldr r2, [r3, #8] - 80034c8: 68fb ldr r3, [r7, #12] - 80034ca: 6c1b ldr r3, [r3, #64] ; 0x40 - 80034cc: 425b negs r3, r3 - 80034ce: 441a add r2, r3 - 80034d0: 68fb ldr r3, [r7, #12] - 80034d2: 60da str r2, [r3, #12] + 8003540: 68fb ldr r3, [r7, #12] + 8003542: 689a ldr r2, [r3, #8] + 8003544: 68fb ldr r3, [r7, #12] + 8003546: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003548: 425b negs r3, r3 + 800354a: 441a add r2, r3 + 800354c: 68fb ldr r3, [r7, #12] + 800354e: 60da str r2, [r3, #12] else { mtCOVERAGE_TEST_MARKER(); } if( xPosition == queueOVERWRITE ) - 80034d4: 687b ldr r3, [r7, #4] - 80034d6: 2b02 cmp r3, #2 - 80034d8: d105 bne.n 80034e6 + 8003550: 687b ldr r3, [r7, #4] + 8003552: 2b02 cmp r3, #2 + 8003554: d105 bne.n 8003562 { if( uxMessagesWaiting > ( UBaseType_t ) 0 ) - 80034da: 693b ldr r3, [r7, #16] - 80034dc: 2b00 cmp r3, #0 - 80034de: d002 beq.n 80034e6 + 8003556: 693b ldr r3, [r7, #16] + 8003558: 2b00 cmp r3, #0 + 800355a: d002 beq.n 8003562 { /* An item is not being added but overwritten, so subtract one from the recorded number of items in the queue so when one is added again below the number of recorded items remains correct. */ --uxMessagesWaiting; - 80034e0: 693b ldr r3, [r7, #16] - 80034e2: 3b01 subs r3, #1 - 80034e4: 613b str r3, [r7, #16] + 800355c: 693b ldr r3, [r7, #16] + 800355e: 3b01 subs r3, #1 + 8003560: 613b str r3, [r7, #16] { mtCOVERAGE_TEST_MARKER(); } } pxQueue->uxMessagesWaiting = uxMessagesWaiting + ( UBaseType_t ) 1; - 80034e6: 693b ldr r3, [r7, #16] - 80034e8: 1c5a adds r2, r3, #1 - 80034ea: 68fb ldr r3, [r7, #12] - 80034ec: 639a str r2, [r3, #56] ; 0x38 + 8003562: 693b ldr r3, [r7, #16] + 8003564: 1c5a adds r2, r3, #1 + 8003566: 68fb ldr r3, [r7, #12] + 8003568: 639a str r2, [r3, #56] ; 0x38 return xReturn; - 80034ee: 697b ldr r3, [r7, #20] + 800356a: 697b ldr r3, [r7, #20] } - 80034f0: 4618 mov r0, r3 - 80034f2: 3718 adds r7, #24 - 80034f4: 46bd mov sp, r7 - 80034f6: bd80 pop {r7, pc} + 800356c: 4618 mov r0, r3 + 800356e: 3718 adds r7, #24 + 8003570: 46bd mov sp, r7 + 8003572: bd80 pop {r7, pc} -080034f8 : +08003574 : /*-----------------------------------------------------------*/ static void prvCopyDataFromQueue( Queue_t * const pxQueue, void * const pvBuffer ) { - 80034f8: b580 push {r7, lr} - 80034fa: b082 sub sp, #8 - 80034fc: af00 add r7, sp, #0 - 80034fe: 6078 str r0, [r7, #4] - 8003500: 6039 str r1, [r7, #0] + 8003574: b580 push {r7, lr} + 8003576: b082 sub sp, #8 + 8003578: af00 add r7, sp, #0 + 800357a: 6078 str r0, [r7, #4] + 800357c: 6039 str r1, [r7, #0] if( pxQueue->uxItemSize != ( UBaseType_t ) 0 ) - 8003502: 687b ldr r3, [r7, #4] - 8003504: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003506: 2b00 cmp r3, #0 - 8003508: d018 beq.n 800353c + 800357e: 687b ldr r3, [r7, #4] + 8003580: 6c1b ldr r3, [r3, #64] ; 0x40 + 8003582: 2b00 cmp r3, #0 + 8003584: d018 beq.n 80035b8 { pxQueue->u.xQueue.pcReadFrom += pxQueue->uxItemSize; /*lint !e9016 Pointer arithmetic on char types ok, especially in this use case where it is the clearest way of conveying intent. */ - 800350a: 687b ldr r3, [r7, #4] - 800350c: 68da ldr r2, [r3, #12] - 800350e: 687b ldr r3, [r7, #4] - 8003510: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003512: 441a add r2, r3 - 8003514: 687b ldr r3, [r7, #4] - 8003516: 60da str r2, [r3, #12] + 8003586: 687b ldr r3, [r7, #4] + 8003588: 68da ldr r2, [r3, #12] + 800358a: 687b ldr r3, [r7, #4] + 800358c: 6c1b ldr r3, [r3, #64] ; 0x40 + 800358e: 441a add r2, r3 + 8003590: 687b ldr r3, [r7, #4] + 8003592: 60da str r2, [r3, #12] if( pxQueue->u.xQueue.pcReadFrom >= pxQueue->u.xQueue.pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */ - 8003518: 687b ldr r3, [r7, #4] - 800351a: 68da ldr r2, [r3, #12] - 800351c: 687b ldr r3, [r7, #4] - 800351e: 689b ldr r3, [r3, #8] - 8003520: 429a cmp r2, r3 - 8003522: d303 bcc.n 800352c + 8003594: 687b ldr r3, [r7, #4] + 8003596: 68da ldr r2, [r3, #12] + 8003598: 687b ldr r3, [r7, #4] + 800359a: 689b ldr r3, [r3, #8] + 800359c: 429a cmp r2, r3 + 800359e: d303 bcc.n 80035a8 { pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead; - 8003524: 687b ldr r3, [r7, #4] - 8003526: 681a ldr r2, [r3, #0] - 8003528: 687b ldr r3, [r7, #4] - 800352a: 60da str r2, [r3, #12] + 80035a0: 687b ldr r3, [r7, #4] + 80035a2: 681a ldr r2, [r3, #0] + 80035a4: 687b ldr r3, [r7, #4] + 80035a6: 60da str r2, [r3, #12] } else { mtCOVERAGE_TEST_MARKER(); } ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 !e9087 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. Cast to void required by function signature and safe as no alignment requirement and copy length specified in bytes. */ - 800352c: 687b ldr r3, [r7, #4] - 800352e: 68d9 ldr r1, [r3, #12] - 8003530: 687b ldr r3, [r7, #4] - 8003532: 6c1b ldr r3, [r3, #64] ; 0x40 - 8003534: 461a mov r2, r3 - 8003536: 6838 ldr r0, [r7, #0] - 8003538: f002 f814 bl 8005564 + 80035a8: 687b ldr r3, [r7, #4] + 80035aa: 68d9 ldr r1, [r3, #12] + 80035ac: 687b ldr r3, [r7, #4] + 80035ae: 6c1b ldr r3, [r3, #64] ; 0x40 + 80035b0: 461a mov r2, r3 + 80035b2: 6838 ldr r0, [r7, #0] + 80035b4: f002 f816 bl 80055e4 } } - 800353c: bf00 nop - 800353e: 3708 adds r7, #8 - 8003540: 46bd mov sp, r7 - 8003542: bd80 pop {r7, pc} + 80035b8: bf00 nop + 80035ba: 3708 adds r7, #8 + 80035bc: 46bd mov sp, r7 + 80035be: bd80 pop {r7, pc} -08003544 : +080035c0 : /*-----------------------------------------------------------*/ static void prvUnlockQueue( Queue_t * const pxQueue ) { - 8003544: b580 push {r7, lr} - 8003546: b084 sub sp, #16 - 8003548: af00 add r7, sp, #0 - 800354a: 6078 str r0, [r7, #4] + 80035c0: b580 push {r7, lr} + 80035c2: b084 sub sp, #16 + 80035c4: af00 add r7, sp, #0 + 80035c6: 6078 str r0, [r7, #4] /* The lock counts contains the number of extra data items placed or removed from the queue while the queue was locked. When a queue is locked items can be added or removed, but the event lists cannot be updated. */ taskENTER_CRITICAL(); - 800354c: f001 fc7a bl 8004e44 + 80035c8: f001 fc7c bl 8004ec4 { int8_t cTxLock = pxQueue->cTxLock; - 8003550: 687b ldr r3, [r7, #4] - 8003552: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 8003556: 73fb strb r3, [r7, #15] + 80035cc: 687b ldr r3, [r7, #4] + 80035ce: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 80035d2: 73fb strb r3, [r7, #15] /* See if data was added to the queue while it was locked. */ while( cTxLock > queueLOCKED_UNMODIFIED ) - 8003558: e011 b.n 800357e + 80035d4: e011 b.n 80035fa } #else /* configUSE_QUEUE_SETS */ { /* Tasks that are removed from the event list will get added to the pending ready list as the scheduler is still suspended. */ if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) - 800355a: 687b ldr r3, [r7, #4] - 800355c: 6a5b ldr r3, [r3, #36] ; 0x24 - 800355e: 2b00 cmp r3, #0 - 8003560: d012 beq.n 8003588 + 80035d6: 687b ldr r3, [r7, #4] + 80035d8: 6a5b ldr r3, [r3, #36] ; 0x24 + 80035da: 2b00 cmp r3, #0 + 80035dc: d012 beq.n 8003604 { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) - 8003562: 687b ldr r3, [r7, #4] - 8003564: 3324 adds r3, #36 ; 0x24 - 8003566: 4618 mov r0, r3 - 8003568: f000 fd50 bl 800400c - 800356c: 4603 mov r3, r0 - 800356e: 2b00 cmp r3, #0 - 8003570: d001 beq.n 8003576 + 80035de: 687b ldr r3, [r7, #4] + 80035e0: 3324 adds r3, #36 ; 0x24 + 80035e2: 4618 mov r0, r3 + 80035e4: f000 fd50 bl 8004088 + 80035e8: 4603 mov r3, r0 + 80035ea: 2b00 cmp r3, #0 + 80035ec: d001 beq.n 80035f2 { /* The task waiting has a higher priority so record that a context switch is required. */ vTaskMissedYield(); - 8003572: f000 fe27 bl 80041c4 + 80035ee: f000 fe27 bl 8004240 break; } } #endif /* configUSE_QUEUE_SETS */ --cTxLock; - 8003576: 7bfb ldrb r3, [r7, #15] - 8003578: 3b01 subs r3, #1 - 800357a: b2db uxtb r3, r3 - 800357c: 73fb strb r3, [r7, #15] + 80035f2: 7bfb ldrb r3, [r7, #15] + 80035f4: 3b01 subs r3, #1 + 80035f6: b2db uxtb r3, r3 + 80035f8: 73fb strb r3, [r7, #15] while( cTxLock > queueLOCKED_UNMODIFIED ) - 800357e: f997 300f ldrsb.w r3, [r7, #15] - 8003582: 2b00 cmp r3, #0 - 8003584: dce9 bgt.n 800355a - 8003586: e000 b.n 800358a + 80035fa: f997 300f ldrsb.w r3, [r7, #15] + 80035fe: 2b00 cmp r3, #0 + 8003600: dce9 bgt.n 80035d6 + 8003602: e000 b.n 8003606 break; - 8003588: bf00 nop + 8003604: bf00 nop } pxQueue->cTxLock = queueUNLOCKED; - 800358a: 687b ldr r3, [r7, #4] - 800358c: 22ff movs r2, #255 ; 0xff - 800358e: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8003606: 687b ldr r3, [r7, #4] + 8003608: 22ff movs r2, #255 ; 0xff + 800360a: f883 2045 strb.w r2, [r3, #69] ; 0x45 } taskEXIT_CRITICAL(); - 8003592: f001 fc87 bl 8004ea4 + 800360e: f001 fc89 bl 8004f24 /* Do the same for the Rx lock. */ taskENTER_CRITICAL(); - 8003596: f001 fc55 bl 8004e44 + 8003612: f001 fc57 bl 8004ec4 { int8_t cRxLock = pxQueue->cRxLock; - 800359a: 687b ldr r3, [r7, #4] - 800359c: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 80035a0: 73bb strb r3, [r7, #14] + 8003616: 687b ldr r3, [r7, #4] + 8003618: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 800361c: 73bb strb r3, [r7, #14] while( cRxLock > queueLOCKED_UNMODIFIED ) - 80035a2: e011 b.n 80035c8 + 800361e: e011 b.n 8003644 { if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) - 80035a4: 687b ldr r3, [r7, #4] - 80035a6: 691b ldr r3, [r3, #16] - 80035a8: 2b00 cmp r3, #0 - 80035aa: d012 beq.n 80035d2 + 8003620: 687b ldr r3, [r7, #4] + 8003622: 691b ldr r3, [r3, #16] + 8003624: 2b00 cmp r3, #0 + 8003626: d012 beq.n 800364e { if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) - 80035ac: 687b ldr r3, [r7, #4] - 80035ae: 3310 adds r3, #16 - 80035b0: 4618 mov r0, r3 - 80035b2: f000 fd2b bl 800400c - 80035b6: 4603 mov r3, r0 - 80035b8: 2b00 cmp r3, #0 - 80035ba: d001 beq.n 80035c0 + 8003628: 687b ldr r3, [r7, #4] + 800362a: 3310 adds r3, #16 + 800362c: 4618 mov r0, r3 + 800362e: f000 fd2b bl 8004088 + 8003632: 4603 mov r3, r0 + 8003634: 2b00 cmp r3, #0 + 8003636: d001 beq.n 800363c { vTaskMissedYield(); - 80035bc: f000 fe02 bl 80041c4 + 8003638: f000 fe02 bl 8004240 else { mtCOVERAGE_TEST_MARKER(); } --cRxLock; - 80035c0: 7bbb ldrb r3, [r7, #14] - 80035c2: 3b01 subs r3, #1 - 80035c4: b2db uxtb r3, r3 - 80035c6: 73bb strb r3, [r7, #14] + 800363c: 7bbb ldrb r3, [r7, #14] + 800363e: 3b01 subs r3, #1 + 8003640: b2db uxtb r3, r3 + 8003642: 73bb strb r3, [r7, #14] while( cRxLock > queueLOCKED_UNMODIFIED ) - 80035c8: f997 300e ldrsb.w r3, [r7, #14] - 80035cc: 2b00 cmp r3, #0 - 80035ce: dce9 bgt.n 80035a4 - 80035d0: e000 b.n 80035d4 + 8003644: f997 300e ldrsb.w r3, [r7, #14] + 8003648: 2b00 cmp r3, #0 + 800364a: dce9 bgt.n 8003620 + 800364c: e000 b.n 8003650 } else { break; - 80035d2: bf00 nop + 800364e: bf00 nop } } pxQueue->cRxLock = queueUNLOCKED; - 80035d4: 687b ldr r3, [r7, #4] - 80035d6: 22ff movs r2, #255 ; 0xff - 80035d8: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 8003650: 687b ldr r3, [r7, #4] + 8003652: 22ff movs r2, #255 ; 0xff + 8003654: f883 2044 strb.w r2, [r3, #68] ; 0x44 } taskEXIT_CRITICAL(); - 80035dc: f001 fc62 bl 8004ea4 + 8003658: f001 fc64 bl 8004f24 } - 80035e0: bf00 nop - 80035e2: 3710 adds r7, #16 - 80035e4: 46bd mov sp, r7 - 80035e6: bd80 pop {r7, pc} + 800365c: bf00 nop + 800365e: 3710 adds r7, #16 + 8003660: 46bd mov sp, r7 + 8003662: bd80 pop {r7, pc} -080035e8 : +08003664 : /*-----------------------------------------------------------*/ static BaseType_t prvIsQueueEmpty( const Queue_t *pxQueue ) { - 80035e8: b580 push {r7, lr} - 80035ea: b084 sub sp, #16 - 80035ec: af00 add r7, sp, #0 - 80035ee: 6078 str r0, [r7, #4] + 8003664: b580 push {r7, lr} + 8003666: b084 sub sp, #16 + 8003668: af00 add r7, sp, #0 + 800366a: 6078 str r0, [r7, #4] BaseType_t xReturn; taskENTER_CRITICAL(); - 80035f0: f001 fc28 bl 8004e44 + 800366c: f001 fc2a bl 8004ec4 { if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0 ) - 80035f4: 687b ldr r3, [r7, #4] - 80035f6: 6b9b ldr r3, [r3, #56] ; 0x38 - 80035f8: 2b00 cmp r3, #0 - 80035fa: d102 bne.n 8003602 + 8003670: 687b ldr r3, [r7, #4] + 8003672: 6b9b ldr r3, [r3, #56] ; 0x38 + 8003674: 2b00 cmp r3, #0 + 8003676: d102 bne.n 800367e { xReturn = pdTRUE; - 80035fc: 2301 movs r3, #1 - 80035fe: 60fb str r3, [r7, #12] - 8003600: e001 b.n 8003606 + 8003678: 2301 movs r3, #1 + 800367a: 60fb str r3, [r7, #12] + 800367c: e001 b.n 8003682 } else { xReturn = pdFALSE; - 8003602: 2300 movs r3, #0 - 8003604: 60fb str r3, [r7, #12] + 800367e: 2300 movs r3, #0 + 8003680: 60fb str r3, [r7, #12] } } taskEXIT_CRITICAL(); - 8003606: f001 fc4d bl 8004ea4 + 8003682: f001 fc4f bl 8004f24 return xReturn; - 800360a: 68fb ldr r3, [r7, #12] + 8003686: 68fb ldr r3, [r7, #12] } - 800360c: 4618 mov r0, r3 - 800360e: 3710 adds r7, #16 - 8003610: 46bd mov sp, r7 - 8003612: bd80 pop {r7, pc} + 8003688: 4618 mov r0, r3 + 800368a: 3710 adds r7, #16 + 800368c: 46bd mov sp, r7 + 800368e: bd80 pop {r7, pc} -08003614 : +08003690 : return xReturn; } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */ /*-----------------------------------------------------------*/ static BaseType_t prvIsQueueFull( const Queue_t *pxQueue ) { - 8003614: b580 push {r7, lr} - 8003616: b084 sub sp, #16 - 8003618: af00 add r7, sp, #0 - 800361a: 6078 str r0, [r7, #4] + 8003690: b580 push {r7, lr} + 8003692: b084 sub sp, #16 + 8003694: af00 add r7, sp, #0 + 8003696: 6078 str r0, [r7, #4] BaseType_t xReturn; taskENTER_CRITICAL(); - 800361c: f001 fc12 bl 8004e44 + 8003698: f001 fc14 bl 8004ec4 { if( pxQueue->uxMessagesWaiting == pxQueue->uxLength ) - 8003620: 687b ldr r3, [r7, #4] - 8003622: 6b9a ldr r2, [r3, #56] ; 0x38 - 8003624: 687b ldr r3, [r7, #4] - 8003626: 6bdb ldr r3, [r3, #60] ; 0x3c - 8003628: 429a cmp r2, r3 - 800362a: d102 bne.n 8003632 + 800369c: 687b ldr r3, [r7, #4] + 800369e: 6b9a ldr r2, [r3, #56] ; 0x38 + 80036a0: 687b ldr r3, [r7, #4] + 80036a2: 6bdb ldr r3, [r3, #60] ; 0x3c + 80036a4: 429a cmp r2, r3 + 80036a6: d102 bne.n 80036ae { xReturn = pdTRUE; - 800362c: 2301 movs r3, #1 - 800362e: 60fb str r3, [r7, #12] - 8003630: e001 b.n 8003636 + 80036a8: 2301 movs r3, #1 + 80036aa: 60fb str r3, [r7, #12] + 80036ac: e001 b.n 80036b2 } else { xReturn = pdFALSE; - 8003632: 2300 movs r3, #0 - 8003634: 60fb str r3, [r7, #12] + 80036ae: 2300 movs r3, #0 + 80036b0: 60fb str r3, [r7, #12] } } taskEXIT_CRITICAL(); - 8003636: f001 fc35 bl 8004ea4 + 80036b2: f001 fc37 bl 8004f24 return xReturn; - 800363a: 68fb ldr r3, [r7, #12] + 80036b6: 68fb ldr r3, [r7, #12] } - 800363c: 4618 mov r0, r3 - 800363e: 3710 adds r7, #16 - 8003640: 46bd mov sp, r7 - 8003642: bd80 pop {r7, pc} + 80036b8: 4618 mov r0, r3 + 80036ba: 3710 adds r7, #16 + 80036bc: 46bd mov sp, r7 + 80036be: bd80 pop {r7, pc} -08003644 : +080036c0 : /*-----------------------------------------------------------*/ #if ( configQUEUE_REGISTRY_SIZE > 0 ) void vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcQueueName ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ { - 8003644: b480 push {r7} - 8003646: b085 sub sp, #20 - 8003648: af00 add r7, sp, #0 - 800364a: 6078 str r0, [r7, #4] - 800364c: 6039 str r1, [r7, #0] + 80036c0: b480 push {r7} + 80036c2: b085 sub sp, #20 + 80036c4: af00 add r7, sp, #0 + 80036c6: 6078 str r0, [r7, #4] + 80036c8: 6039 str r1, [r7, #0] UBaseType_t ux; /* See if there is an empty space in the registry. A NULL name denotes a free slot. */ for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - 800364e: 2300 movs r3, #0 - 8003650: 60fb str r3, [r7, #12] - 8003652: e014 b.n 800367e + 80036ca: 2300 movs r3, #0 + 80036cc: 60fb str r3, [r7, #12] + 80036ce: e014 b.n 80036fa { if( xQueueRegistry[ ux ].pcQueueName == NULL ) - 8003654: 4a0f ldr r2, [pc, #60] ; (8003694 ) - 8003656: 68fb ldr r3, [r7, #12] - 8003658: f852 3033 ldr.w r3, [r2, r3, lsl #3] - 800365c: 2b00 cmp r3, #0 - 800365e: d10b bne.n 8003678 + 80036d0: 4a0f ldr r2, [pc, #60] ; (8003710 ) + 80036d2: 68fb ldr r3, [r7, #12] + 80036d4: f852 3033 ldr.w r3, [r2, r3, lsl #3] + 80036d8: 2b00 cmp r3, #0 + 80036da: d10b bne.n 80036f4 { /* Store the information on this queue. */ xQueueRegistry[ ux ].pcQueueName = pcQueueName; - 8003660: 490c ldr r1, [pc, #48] ; (8003694 ) - 8003662: 68fb ldr r3, [r7, #12] - 8003664: 683a ldr r2, [r7, #0] - 8003666: f841 2033 str.w r2, [r1, r3, lsl #3] + 80036dc: 490c ldr r1, [pc, #48] ; (8003710 ) + 80036de: 68fb ldr r3, [r7, #12] + 80036e0: 683a ldr r2, [r7, #0] + 80036e2: f841 2033 str.w r2, [r1, r3, lsl #3] xQueueRegistry[ ux ].xHandle = xQueue; - 800366a: 4a0a ldr r2, [pc, #40] ; (8003694 ) - 800366c: 68fb ldr r3, [r7, #12] - 800366e: 00db lsls r3, r3, #3 - 8003670: 4413 add r3, r2 - 8003672: 687a ldr r2, [r7, #4] - 8003674: 605a str r2, [r3, #4] + 80036e6: 4a0a ldr r2, [pc, #40] ; (8003710 ) + 80036e8: 68fb ldr r3, [r7, #12] + 80036ea: 00db lsls r3, r3, #3 + 80036ec: 4413 add r3, r2 + 80036ee: 687a ldr r2, [r7, #4] + 80036f0: 605a str r2, [r3, #4] traceQUEUE_REGISTRY_ADD( xQueue, pcQueueName ); break; - 8003676: e006 b.n 8003686 + 80036f2: e006 b.n 8003702 for( ux = ( UBaseType_t ) 0U; ux < ( UBaseType_t ) configQUEUE_REGISTRY_SIZE; ux++ ) - 8003678: 68fb ldr r3, [r7, #12] - 800367a: 3301 adds r3, #1 - 800367c: 60fb str r3, [r7, #12] - 800367e: 68fb ldr r3, [r7, #12] - 8003680: 2b07 cmp r3, #7 - 8003682: d9e7 bls.n 8003654 + 80036f4: 68fb ldr r3, [r7, #12] + 80036f6: 3301 adds r3, #1 + 80036f8: 60fb str r3, [r7, #12] + 80036fa: 68fb ldr r3, [r7, #12] + 80036fc: 2b07 cmp r3, #7 + 80036fe: d9e7 bls.n 80036d0 else { mtCOVERAGE_TEST_MARKER(); } } } - 8003684: bf00 nop - 8003686: bf00 nop - 8003688: 3714 adds r7, #20 - 800368a: 46bd mov sp, r7 - 800368c: f85d 7b04 ldr.w r7, [sp], #4 - 8003690: 4770 bx lr - 8003692: bf00 nop - 8003694: 20000880 .word 0x20000880 + 8003700: bf00 nop + 8003702: bf00 nop + 8003704: 3714 adds r7, #20 + 8003706: 46bd mov sp, r7 + 8003708: f85d 7b04 ldr.w r7, [sp], #4 + 800370c: 4770 bx lr + 800370e: bf00 nop + 8003710: 20000880 .word 0x20000880 -08003698 : +08003714 : /*-----------------------------------------------------------*/ #if ( configUSE_TIMERS == 1 ) void vQueueWaitForMessageRestricted( QueueHandle_t xQueue, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) { - 8003698: b580 push {r7, lr} - 800369a: b086 sub sp, #24 - 800369c: af00 add r7, sp, #0 - 800369e: 60f8 str r0, [r7, #12] - 80036a0: 60b9 str r1, [r7, #8] - 80036a2: 607a str r2, [r7, #4] + 8003714: b580 push {r7, lr} + 8003716: b086 sub sp, #24 + 8003718: af00 add r7, sp, #0 + 800371a: 60f8 str r0, [r7, #12] + 800371c: 60b9 str r1, [r7, #8] + 800371e: 607a str r2, [r7, #4] Queue_t * const pxQueue = xQueue; - 80036a4: 68fb ldr r3, [r7, #12] - 80036a6: 617b str r3, [r7, #20] + 8003720: 68fb ldr r3, [r7, #12] + 8003722: 617b str r3, [r7, #20] will not actually cause the task to block, just place it on a blocked list. It will not block until the scheduler is unlocked - at which time a yield will be performed. If an item is added to the queue while the queue is locked, and the calling task blocks on the queue, then the calling task will be immediately unblocked when the queue is unlocked. */ prvLockQueue( pxQueue ); - 80036a8: f001 fbcc bl 8004e44 - 80036ac: 697b ldr r3, [r7, #20] - 80036ae: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 - 80036b2: b25b sxtb r3, r3 - 80036b4: f1b3 3fff cmp.w r3, #4294967295 - 80036b8: d103 bne.n 80036c2 - 80036ba: 697b ldr r3, [r7, #20] - 80036bc: 2200 movs r2, #0 - 80036be: f883 2044 strb.w r2, [r3, #68] ; 0x44 - 80036c2: 697b ldr r3, [r7, #20] - 80036c4: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 - 80036c8: b25b sxtb r3, r3 - 80036ca: f1b3 3fff cmp.w r3, #4294967295 - 80036ce: d103 bne.n 80036d8 - 80036d0: 697b ldr r3, [r7, #20] - 80036d2: 2200 movs r2, #0 - 80036d4: f883 2045 strb.w r2, [r3, #69] ; 0x45 - 80036d8: f001 fbe4 bl 8004ea4 + 8003724: f001 fbce bl 8004ec4 + 8003728: 697b ldr r3, [r7, #20] + 800372a: f893 3044 ldrb.w r3, [r3, #68] ; 0x44 + 800372e: b25b sxtb r3, r3 + 8003730: f1b3 3fff cmp.w r3, #4294967295 + 8003734: d103 bne.n 800373e + 8003736: 697b ldr r3, [r7, #20] + 8003738: 2200 movs r2, #0 + 800373a: f883 2044 strb.w r2, [r3, #68] ; 0x44 + 800373e: 697b ldr r3, [r7, #20] + 8003740: f893 3045 ldrb.w r3, [r3, #69] ; 0x45 + 8003744: b25b sxtb r3, r3 + 8003746: f1b3 3fff cmp.w r3, #4294967295 + 800374a: d103 bne.n 8003754 + 800374c: 697b ldr r3, [r7, #20] + 800374e: 2200 movs r2, #0 + 8003750: f883 2045 strb.w r2, [r3, #69] ; 0x45 + 8003754: f001 fbe6 bl 8004f24 if( pxQueue->uxMessagesWaiting == ( UBaseType_t ) 0U ) - 80036dc: 697b ldr r3, [r7, #20] - 80036de: 6b9b ldr r3, [r3, #56] ; 0x38 - 80036e0: 2b00 cmp r3, #0 - 80036e2: d106 bne.n 80036f2 + 8003758: 697b ldr r3, [r7, #20] + 800375a: 6b9b ldr r3, [r3, #56] ; 0x38 + 800375c: 2b00 cmp r3, #0 + 800375e: d106 bne.n 800376e { /* There is nothing in the queue, block for the specified period. */ vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait, xWaitIndefinitely ); - 80036e4: 697b ldr r3, [r7, #20] - 80036e6: 3324 adds r3, #36 ; 0x24 - 80036e8: 687a ldr r2, [r7, #4] - 80036ea: 68b9 ldr r1, [r7, #8] - 80036ec: 4618 mov r0, r3 - 80036ee: f000 fc61 bl 8003fb4 + 8003760: 697b ldr r3, [r7, #20] + 8003762: 3324 adds r3, #36 ; 0x24 + 8003764: 687a ldr r2, [r7, #4] + 8003766: 68b9 ldr r1, [r7, #8] + 8003768: 4618 mov r0, r3 + 800376a: f000 fc61 bl 8004030 } else { mtCOVERAGE_TEST_MARKER(); } prvUnlockQueue( pxQueue ); - 80036f2: 6978 ldr r0, [r7, #20] - 80036f4: f7ff ff26 bl 8003544 + 800376e: 6978 ldr r0, [r7, #20] + 8003770: f7ff ff26 bl 80035c0 } - 80036f8: bf00 nop - 80036fa: 3718 adds r7, #24 - 80036fc: 46bd mov sp, r7 - 80036fe: bd80 pop {r7, pc} + 8003774: bf00 nop + 8003776: 3718 adds r7, #24 + 8003778: 46bd mov sp, r7 + 800377a: bd80 pop {r7, pc} -08003700 : +0800377c : const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer ) { - 8003700: b580 push {r7, lr} - 8003702: b08e sub sp, #56 ; 0x38 - 8003704: af04 add r7, sp, #16 - 8003706: 60f8 str r0, [r7, #12] - 8003708: 60b9 str r1, [r7, #8] - 800370a: 607a str r2, [r7, #4] - 800370c: 603b str r3, [r7, #0] + 800377c: b580 push {r7, lr} + 800377e: b08e sub sp, #56 ; 0x38 + 8003780: af04 add r7, sp, #16 + 8003782: 60f8 str r0, [r7, #12] + 8003784: 60b9 str r1, [r7, #8] + 8003786: 607a str r2, [r7, #4] + 8003788: 603b str r3, [r7, #0] TCB_t *pxNewTCB; TaskHandle_t xReturn; configASSERT( puxStackBuffer != NULL ); - 800370e: 6b7b ldr r3, [r7, #52] ; 0x34 - 8003710: 2b00 cmp r3, #0 - 8003712: d10a bne.n 800372a + 800378a: 6b7b ldr r3, [r7, #52] ; 0x34 + 800378c: 2b00 cmp r3, #0 + 800378e: d10a bne.n 80037a6 __asm volatile - 8003714: f04f 0350 mov.w r3, #80 ; 0x50 - 8003718: f383 8811 msr BASEPRI, r3 - 800371c: f3bf 8f6f isb sy - 8003720: f3bf 8f4f dsb sy - 8003724: 623b str r3, [r7, #32] + 8003790: f04f 0350 mov.w r3, #80 ; 0x50 + 8003794: f383 8811 msr BASEPRI, r3 + 8003798: f3bf 8f6f isb sy + 800379c: f3bf 8f4f dsb sy + 80037a0: 623b str r3, [r7, #32] } - 8003726: bf00 nop - 8003728: e7fe b.n 8003728 + 80037a2: bf00 nop + 80037a4: e7fe b.n 80037a4 configASSERT( pxTaskBuffer != NULL ); - 800372a: 6bbb ldr r3, [r7, #56] ; 0x38 - 800372c: 2b00 cmp r3, #0 - 800372e: d10a bne.n 8003746 + 80037a6: 6bbb ldr r3, [r7, #56] ; 0x38 + 80037a8: 2b00 cmp r3, #0 + 80037aa: d10a bne.n 80037c2 __asm volatile - 8003730: f04f 0350 mov.w r3, #80 ; 0x50 - 8003734: f383 8811 msr BASEPRI, r3 - 8003738: f3bf 8f6f isb sy - 800373c: f3bf 8f4f dsb sy - 8003740: 61fb str r3, [r7, #28] + 80037ac: f04f 0350 mov.w r3, #80 ; 0x50 + 80037b0: f383 8811 msr BASEPRI, r3 + 80037b4: f3bf 8f6f isb sy + 80037b8: f3bf 8f4f dsb sy + 80037bc: 61fb str r3, [r7, #28] } - 8003742: bf00 nop - 8003744: e7fe b.n 8003744 + 80037be: bf00 nop + 80037c0: e7fe b.n 80037c0 #if( configASSERT_DEFINED == 1 ) { /* Sanity check that the size of the structure used to declare a variable of type StaticTask_t equals the size of the real task structure. */ volatile size_t xSize = sizeof( StaticTask_t ); - 8003746: 23a8 movs r3, #168 ; 0xa8 - 8003748: 613b str r3, [r7, #16] + 80037c2: 23a8 movs r3, #168 ; 0xa8 + 80037c4: 613b str r3, [r7, #16] configASSERT( xSize == sizeof( TCB_t ) ); - 800374a: 693b ldr r3, [r7, #16] - 800374c: 2ba8 cmp r3, #168 ; 0xa8 - 800374e: d00a beq.n 8003766 + 80037c6: 693b ldr r3, [r7, #16] + 80037c8: 2ba8 cmp r3, #168 ; 0xa8 + 80037ca: d00a beq.n 80037e2 __asm volatile - 8003750: f04f 0350 mov.w r3, #80 ; 0x50 - 8003754: f383 8811 msr BASEPRI, r3 - 8003758: f3bf 8f6f isb sy - 800375c: f3bf 8f4f dsb sy - 8003760: 61bb str r3, [r7, #24] + 80037cc: f04f 0350 mov.w r3, #80 ; 0x50 + 80037d0: f383 8811 msr BASEPRI, r3 + 80037d4: f3bf 8f6f isb sy + 80037d8: f3bf 8f4f dsb sy + 80037dc: 61bb str r3, [r7, #24] } - 8003762: bf00 nop - 8003764: e7fe b.n 8003764 + 80037de: bf00 nop + 80037e0: e7fe b.n 80037e0 ( void ) xSize; /* Prevent lint warning when configASSERT() is not used. */ - 8003766: 693b ldr r3, [r7, #16] + 80037e2: 693b ldr r3, [r7, #16] } #endif /* configASSERT_DEFINED */ if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) ) - 8003768: 6bbb ldr r3, [r7, #56] ; 0x38 - 800376a: 2b00 cmp r3, #0 - 800376c: d01e beq.n 80037ac - 800376e: 6b7b ldr r3, [r7, #52] ; 0x34 - 8003770: 2b00 cmp r3, #0 - 8003772: d01b beq.n 80037ac + 80037e4: 6bbb ldr r3, [r7, #56] ; 0x38 + 80037e6: 2b00 cmp r3, #0 + 80037e8: d01e beq.n 8003828 + 80037ea: 6b7b ldr r3, [r7, #52] ; 0x34 + 80037ec: 2b00 cmp r3, #0 + 80037ee: d01b beq.n 8003828 { /* The memory used for the task's TCB and stack are passed into this function - use them. */ pxNewTCB = ( TCB_t * ) pxTaskBuffer; /*lint !e740 !e9087 Unusual cast is ok as the structures are designed to have the same alignment, and the size is checked by an assert. */ - 8003774: 6bbb ldr r3, [r7, #56] ; 0x38 - 8003776: 627b str r3, [r7, #36] ; 0x24 + 80037f0: 6bbb ldr r3, [r7, #56] ; 0x38 + 80037f2: 627b str r3, [r7, #36] ; 0x24 pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer; - 8003778: 6a7b ldr r3, [r7, #36] ; 0x24 - 800377a: 6b7a ldr r2, [r7, #52] ; 0x34 - 800377c: 631a str r2, [r3, #48] ; 0x30 + 80037f4: 6a7b ldr r3, [r7, #36] ; 0x24 + 80037f6: 6b7a ldr r2, [r7, #52] ; 0x34 + 80037f8: 631a str r2, [r3, #48] ; 0x30 #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ { /* Tasks can be created statically or dynamically, so note this task was created statically in case the task is later deleted. */ pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB; - 800377e: 6a7b ldr r3, [r7, #36] ; 0x24 - 8003780: 2202 movs r2, #2 - 8003782: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 + 80037fa: 6a7b ldr r3, [r7, #36] ; 0x24 + 80037fc: 2202 movs r2, #2 + 80037fe: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 } #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL ); - 8003786: 2300 movs r3, #0 - 8003788: 9303 str r3, [sp, #12] - 800378a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800378c: 9302 str r3, [sp, #8] - 800378e: f107 0314 add.w r3, r7, #20 - 8003792: 9301 str r3, [sp, #4] - 8003794: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003796: 9300 str r3, [sp, #0] - 8003798: 683b ldr r3, [r7, #0] - 800379a: 687a ldr r2, [r7, #4] - 800379c: 68b9 ldr r1, [r7, #8] - 800379e: 68f8 ldr r0, [r7, #12] - 80037a0: f000 f850 bl 8003844 + 8003802: 2300 movs r3, #0 + 8003804: 9303 str r3, [sp, #12] + 8003806: 6a7b ldr r3, [r7, #36] ; 0x24 + 8003808: 9302 str r3, [sp, #8] + 800380a: f107 0314 add.w r3, r7, #20 + 800380e: 9301 str r3, [sp, #4] + 8003810: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003812: 9300 str r3, [sp, #0] + 8003814: 683b ldr r3, [r7, #0] + 8003816: 687a ldr r2, [r7, #4] + 8003818: 68b9 ldr r1, [r7, #8] + 800381a: 68f8 ldr r0, [r7, #12] + 800381c: f000 f850 bl 80038c0 prvAddNewTaskToReadyList( pxNewTCB ); - 80037a4: 6a78 ldr r0, [r7, #36] ; 0x24 - 80037a6: f000 f8f3 bl 8003990 - 80037aa: e001 b.n 80037b0 + 8003820: 6a78 ldr r0, [r7, #36] ; 0x24 + 8003822: f000 f8f3 bl 8003a0c + 8003826: e001 b.n 800382c } else { xReturn = NULL; - 80037ac: 2300 movs r3, #0 - 80037ae: 617b str r3, [r7, #20] + 8003828: 2300 movs r3, #0 + 800382a: 617b str r3, [r7, #20] } return xReturn; - 80037b0: 697b ldr r3, [r7, #20] + 800382c: 697b ldr r3, [r7, #20] } - 80037b2: 4618 mov r0, r3 - 80037b4: 3728 adds r7, #40 ; 0x28 - 80037b6: 46bd mov sp, r7 - 80037b8: bd80 pop {r7, pc} + 800382e: 4618 mov r0, r3 + 8003830: 3728 adds r7, #40 ; 0x28 + 8003832: 46bd mov sp, r7 + 8003834: bd80 pop {r7, pc} -080037ba : +08003836 : const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ const configSTACK_DEPTH_TYPE usStackDepth, void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask ) { - 80037ba: b580 push {r7, lr} - 80037bc: b08c sub sp, #48 ; 0x30 - 80037be: af04 add r7, sp, #16 - 80037c0: 60f8 str r0, [r7, #12] - 80037c2: 60b9 str r1, [r7, #8] - 80037c4: 603b str r3, [r7, #0] - 80037c6: 4613 mov r3, r2 - 80037c8: 80fb strh r3, [r7, #6] + 8003836: b580 push {r7, lr} + 8003838: b08c sub sp, #48 ; 0x30 + 800383a: af04 add r7, sp, #16 + 800383c: 60f8 str r0, [r7, #12] + 800383e: 60b9 str r1, [r7, #8] + 8003840: 603b str r3, [r7, #0] + 8003842: 4613 mov r3, r2 + 8003844: 80fb strh r3, [r7, #6] #else /* portSTACK_GROWTH */ { StackType_t *pxStack; /* Allocate space for the stack used by the task being created. */ pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) ); /*lint !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack and this allocation is the stack. */ - 80037ca: 88fb ldrh r3, [r7, #6] - 80037cc: 009b lsls r3, r3, #2 - 80037ce: 4618 mov r0, r3 - 80037d0: f001 fc5a bl 8005088 - 80037d4: 6178 str r0, [r7, #20] + 8003846: 88fb ldrh r3, [r7, #6] + 8003848: 009b lsls r3, r3, #2 + 800384a: 4618 mov r0, r3 + 800384c: f001 fc5c bl 8005108 + 8003850: 6178 str r0, [r7, #20] if( pxStack != NULL ) - 80037d6: 697b ldr r3, [r7, #20] - 80037d8: 2b00 cmp r3, #0 - 80037da: d00e beq.n 80037fa + 8003852: 697b ldr r3, [r7, #20] + 8003854: 2b00 cmp r3, #0 + 8003856: d00e beq.n 8003876 { /* Allocate space for the TCB. */ pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) ); /*lint !e9087 !e9079 All values returned by pvPortMalloc() have at least the alignment required by the MCU's stack, and the first member of TCB_t is always a pointer to the task's stack. */ - 80037dc: 20a8 movs r0, #168 ; 0xa8 - 80037de: f001 fc53 bl 8005088 - 80037e2: 61f8 str r0, [r7, #28] + 8003858: 20a8 movs r0, #168 ; 0xa8 + 800385a: f001 fc55 bl 8005108 + 800385e: 61f8 str r0, [r7, #28] if( pxNewTCB != NULL ) - 80037e4: 69fb ldr r3, [r7, #28] - 80037e6: 2b00 cmp r3, #0 - 80037e8: d003 beq.n 80037f2 + 8003860: 69fb ldr r3, [r7, #28] + 8003862: 2b00 cmp r3, #0 + 8003864: d003 beq.n 800386e { /* Store the stack location in the TCB. */ pxNewTCB->pxStack = pxStack; - 80037ea: 69fb ldr r3, [r7, #28] - 80037ec: 697a ldr r2, [r7, #20] - 80037ee: 631a str r2, [r3, #48] ; 0x30 - 80037f0: e005 b.n 80037fe + 8003866: 69fb ldr r3, [r7, #28] + 8003868: 697a ldr r2, [r7, #20] + 800386a: 631a str r2, [r3, #48] ; 0x30 + 800386c: e005 b.n 800387a } else { /* The stack cannot be used as the TCB was not created. Free it again. */ vPortFree( pxStack ); - 80037f2: 6978 ldr r0, [r7, #20] - 80037f4: f001 fd14 bl 8005220 - 80037f8: e001 b.n 80037fe + 800386e: 6978 ldr r0, [r7, #20] + 8003870: f001 fd16 bl 80052a0 + 8003874: e001 b.n 800387a } } else { pxNewTCB = NULL; - 80037fa: 2300 movs r3, #0 - 80037fc: 61fb str r3, [r7, #28] + 8003876: 2300 movs r3, #0 + 8003878: 61fb str r3, [r7, #28] } } #endif /* portSTACK_GROWTH */ if( pxNewTCB != NULL ) - 80037fe: 69fb ldr r3, [r7, #28] - 8003800: 2b00 cmp r3, #0 - 8003802: d017 beq.n 8003834 + 800387a: 69fb ldr r3, [r7, #28] + 800387c: 2b00 cmp r3, #0 + 800387e: d017 beq.n 80038b0 { #if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e9029 !e731 Macro has been consolidated for readability reasons. */ { /* Tasks can be created statically or dynamically, so note this task was created dynamically in case it is later deleted. */ pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB; - 8003804: 69fb ldr r3, [r7, #28] - 8003806: 2200 movs r2, #0 - 8003808: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 + 8003880: 69fb ldr r3, [r7, #28] + 8003882: 2200 movs r2, #0 + 8003884: f883 20a5 strb.w r2, [r3, #165] ; 0xa5 } #endif /* tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE */ prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL ); - 800380c: 88fa ldrh r2, [r7, #6] - 800380e: 2300 movs r3, #0 - 8003810: 9303 str r3, [sp, #12] - 8003812: 69fb ldr r3, [r7, #28] - 8003814: 9302 str r3, [sp, #8] - 8003816: 6afb ldr r3, [r7, #44] ; 0x2c - 8003818: 9301 str r3, [sp, #4] - 800381a: 6abb ldr r3, [r7, #40] ; 0x28 - 800381c: 9300 str r3, [sp, #0] - 800381e: 683b ldr r3, [r7, #0] - 8003820: 68b9 ldr r1, [r7, #8] - 8003822: 68f8 ldr r0, [r7, #12] - 8003824: f000 f80e bl 8003844 + 8003888: 88fa ldrh r2, [r7, #6] + 800388a: 2300 movs r3, #0 + 800388c: 9303 str r3, [sp, #12] + 800388e: 69fb ldr r3, [r7, #28] + 8003890: 9302 str r3, [sp, #8] + 8003892: 6afb ldr r3, [r7, #44] ; 0x2c + 8003894: 9301 str r3, [sp, #4] + 8003896: 6abb ldr r3, [r7, #40] ; 0x28 + 8003898: 9300 str r3, [sp, #0] + 800389a: 683b ldr r3, [r7, #0] + 800389c: 68b9 ldr r1, [r7, #8] + 800389e: 68f8 ldr r0, [r7, #12] + 80038a0: f000 f80e bl 80038c0 prvAddNewTaskToReadyList( pxNewTCB ); - 8003828: 69f8 ldr r0, [r7, #28] - 800382a: f000 f8b1 bl 8003990 + 80038a4: 69f8 ldr r0, [r7, #28] + 80038a6: f000 f8b1 bl 8003a0c xReturn = pdPASS; - 800382e: 2301 movs r3, #1 - 8003830: 61bb str r3, [r7, #24] - 8003832: e002 b.n 800383a + 80038aa: 2301 movs r3, #1 + 80038ac: 61bb str r3, [r7, #24] + 80038ae: e002 b.n 80038b6 } else { xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY; - 8003834: f04f 33ff mov.w r3, #4294967295 - 8003838: 61bb str r3, [r7, #24] + 80038b0: f04f 33ff mov.w r3, #4294967295 + 80038b4: 61bb str r3, [r7, #24] } return xReturn; - 800383a: 69bb ldr r3, [r7, #24] + 80038b6: 69bb ldr r3, [r7, #24] } - 800383c: 4618 mov r0, r3 - 800383e: 3720 adds r7, #32 - 8003840: 46bd mov sp, r7 - 8003842: bd80 pop {r7, pc} + 80038b8: 4618 mov r0, r3 + 80038ba: 3720 adds r7, #32 + 80038bc: 46bd mov sp, r7 + 80038be: bd80 pop {r7, pc} -08003844 : +080038c0 : void * const pvParameters, UBaseType_t uxPriority, TaskHandle_t * const pxCreatedTask, TCB_t *pxNewTCB, const MemoryRegion_t * const xRegions ) { - 8003844: b580 push {r7, lr} - 8003846: b088 sub sp, #32 - 8003848: af00 add r7, sp, #0 - 800384a: 60f8 str r0, [r7, #12] - 800384c: 60b9 str r1, [r7, #8] - 800384e: 607a str r2, [r7, #4] - 8003850: 603b str r3, [r7, #0] + 80038c0: b580 push {r7, lr} + 80038c2: b088 sub sp, #32 + 80038c4: af00 add r7, sp, #0 + 80038c6: 60f8 str r0, [r7, #12] + 80038c8: 60b9 str r1, [r7, #8] + 80038ca: 607a str r2, [r7, #4] + 80038cc: 603b str r3, [r7, #0] /* Avoid dependency on memset() if it is not required. */ #if( tskSET_NEW_STACKS_TO_KNOWN_VALUE == 1 ) { /* Fill the stack with a known value to assist debugging. */ ( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) ); - 8003852: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003854: 6b18 ldr r0, [r3, #48] ; 0x30 - 8003856: 687b ldr r3, [r7, #4] - 8003858: 009b lsls r3, r3, #2 - 800385a: 461a mov r2, r3 - 800385c: 21a5 movs r1, #165 ; 0xa5 - 800385e: f001 fdfd bl 800545c + 80038ce: 6b3b ldr r3, [r7, #48] ; 0x30 + 80038d0: 6b18 ldr r0, [r3, #48] ; 0x30 + 80038d2: 687b ldr r3, [r7, #4] + 80038d4: 009b lsls r3, r3, #2 + 80038d6: 461a mov r2, r3 + 80038d8: 21a5 movs r1, #165 ; 0xa5 + 80038da: f001 fdff bl 80054dc grows from high memory to low (as per the 80x86) or vice versa. portSTACK_GROWTH is used to make the result positive or negative as required by the port. */ #if( portSTACK_GROWTH < 0 ) { pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] ); - 8003862: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003864: 6b1a ldr r2, [r3, #48] ; 0x30 - 8003866: 687b ldr r3, [r7, #4] - 8003868: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 - 800386c: 3b01 subs r3, #1 - 800386e: 009b lsls r3, r3, #2 - 8003870: 4413 add r3, r2 - 8003872: 61bb str r3, [r7, #24] + 80038de: 6b3b ldr r3, [r7, #48] ; 0x30 + 80038e0: 6b1a ldr r2, [r3, #48] ; 0x30 + 80038e2: 687b ldr r3, [r7, #4] + 80038e4: f103 4380 add.w r3, r3, #1073741824 ; 0x40000000 + 80038e8: 3b01 subs r3, #1 + 80038ea: 009b lsls r3, r3, #2 + 80038ec: 4413 add r3, r2 + 80038ee: 61bb str r3, [r7, #24] pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); /*lint !e923 !e9033 !e9078 MISRA exception. Avoiding casts between pointers and integers is not practical. Size differences accounted for using portPOINTER_SIZE_TYPE type. Checked by assert(). */ - 8003874: 69bb ldr r3, [r7, #24] - 8003876: f023 0307 bic.w r3, r3, #7 - 800387a: 61bb str r3, [r7, #24] + 80038f0: 69bb ldr r3, [r7, #24] + 80038f2: f023 0307 bic.w r3, r3, #7 + 80038f6: 61bb str r3, [r7, #24] /* Check the alignment of the calculated top of stack is correct. */ configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) ); - 800387c: 69bb ldr r3, [r7, #24] - 800387e: f003 0307 and.w r3, r3, #7 - 8003882: 2b00 cmp r3, #0 - 8003884: d00a beq.n 800389c + 80038f8: 69bb ldr r3, [r7, #24] + 80038fa: f003 0307 and.w r3, r3, #7 + 80038fe: 2b00 cmp r3, #0 + 8003900: d00a beq.n 8003918 __asm volatile - 8003886: f04f 0350 mov.w r3, #80 ; 0x50 - 800388a: f383 8811 msr BASEPRI, r3 - 800388e: f3bf 8f6f isb sy - 8003892: f3bf 8f4f dsb sy - 8003896: 617b str r3, [r7, #20] + 8003902: f04f 0350 mov.w r3, #80 ; 0x50 + 8003906: f383 8811 msr BASEPRI, r3 + 800390a: f3bf 8f6f isb sy + 800390e: f3bf 8f4f dsb sy + 8003912: 617b str r3, [r7, #20] } - 8003898: bf00 nop - 800389a: e7fe b.n 800389a + 8003914: bf00 nop + 8003916: e7fe b.n 8003916 pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 ); } #endif /* portSTACK_GROWTH */ /* Store the task name in the TCB. */ if( pcName != NULL ) - 800389c: 68bb ldr r3, [r7, #8] - 800389e: 2b00 cmp r3, #0 - 80038a0: d01f beq.n 80038e2 + 8003918: 68bb ldr r3, [r7, #8] + 800391a: 2b00 cmp r3, #0 + 800391c: d01f beq.n 800395e { for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - 80038a2: 2300 movs r3, #0 - 80038a4: 61fb str r3, [r7, #28] - 80038a6: e012 b.n 80038ce + 800391e: 2300 movs r3, #0 + 8003920: 61fb str r3, [r7, #28] + 8003922: e012 b.n 800394a { pxNewTCB->pcTaskName[ x ] = pcName[ x ]; - 80038a8: 68ba ldr r2, [r7, #8] - 80038aa: 69fb ldr r3, [r7, #28] - 80038ac: 4413 add r3, r2 - 80038ae: 7819 ldrb r1, [r3, #0] - 80038b0: 6b3a ldr r2, [r7, #48] ; 0x30 - 80038b2: 69fb ldr r3, [r7, #28] - 80038b4: 4413 add r3, r2 - 80038b6: 3334 adds r3, #52 ; 0x34 - 80038b8: 460a mov r2, r1 - 80038ba: 701a strb r2, [r3, #0] + 8003924: 68ba ldr r2, [r7, #8] + 8003926: 69fb ldr r3, [r7, #28] + 8003928: 4413 add r3, r2 + 800392a: 7819 ldrb r1, [r3, #0] + 800392c: 6b3a ldr r2, [r7, #48] ; 0x30 + 800392e: 69fb ldr r3, [r7, #28] + 8003930: 4413 add r3, r2 + 8003932: 3334 adds r3, #52 ; 0x34 + 8003934: 460a mov r2, r1 + 8003936: 701a strb r2, [r3, #0] /* Don't copy all configMAX_TASK_NAME_LEN if the string is shorter than configMAX_TASK_NAME_LEN characters just in case the memory after the string is not accessible (extremely unlikely). */ if( pcName[ x ] == ( char ) 0x00 ) - 80038bc: 68ba ldr r2, [r7, #8] - 80038be: 69fb ldr r3, [r7, #28] - 80038c0: 4413 add r3, r2 - 80038c2: 781b ldrb r3, [r3, #0] - 80038c4: 2b00 cmp r3, #0 - 80038c6: d006 beq.n 80038d6 + 8003938: 68ba ldr r2, [r7, #8] + 800393a: 69fb ldr r3, [r7, #28] + 800393c: 4413 add r3, r2 + 800393e: 781b ldrb r3, [r3, #0] + 8003940: 2b00 cmp r3, #0 + 8003942: d006 beq.n 8003952 for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ ) - 80038c8: 69fb ldr r3, [r7, #28] - 80038ca: 3301 adds r3, #1 - 80038cc: 61fb str r3, [r7, #28] - 80038ce: 69fb ldr r3, [r7, #28] - 80038d0: 2b0f cmp r3, #15 - 80038d2: d9e9 bls.n 80038a8 - 80038d4: e000 b.n 80038d8 + 8003944: 69fb ldr r3, [r7, #28] + 8003946: 3301 adds r3, #1 + 8003948: 61fb str r3, [r7, #28] + 800394a: 69fb ldr r3, [r7, #28] + 800394c: 2b0f cmp r3, #15 + 800394e: d9e9 bls.n 8003924 + 8003950: e000 b.n 8003954 { break; - 80038d6: bf00 nop + 8003952: bf00 nop } } /* Ensure the name string is terminated in the case that the string length was greater or equal to configMAX_TASK_NAME_LEN. */ pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0'; - 80038d8: 6b3b ldr r3, [r7, #48] ; 0x30 - 80038da: 2200 movs r2, #0 - 80038dc: f883 2043 strb.w r2, [r3, #67] ; 0x43 - 80038e0: e003 b.n 80038ea + 8003954: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003956: 2200 movs r2, #0 + 8003958: f883 2043 strb.w r2, [r3, #67] ; 0x43 + 800395c: e003 b.n 8003966 } else { /* The task has not been given a name, so just ensure there is a NULL terminator when it is read out. */ pxNewTCB->pcTaskName[ 0 ] = 0x00; - 80038e2: 6b3b ldr r3, [r7, #48] ; 0x30 - 80038e4: 2200 movs r2, #0 - 80038e6: f883 2034 strb.w r2, [r3, #52] ; 0x34 + 800395e: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003960: 2200 movs r2, #0 + 8003962: f883 2034 strb.w r2, [r3, #52] ; 0x34 } /* This is used as an array index so must ensure it's not too large. First remove the privilege bit if one is present. */ if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES ) - 80038ea: 6abb ldr r3, [r7, #40] ; 0x28 - 80038ec: 2b37 cmp r3, #55 ; 0x37 - 80038ee: d901 bls.n 80038f4 + 8003966: 6abb ldr r3, [r7, #40] ; 0x28 + 8003968: 2b37 cmp r3, #55 ; 0x37 + 800396a: d901 bls.n 8003970 { uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U; - 80038f0: 2337 movs r3, #55 ; 0x37 - 80038f2: 62bb str r3, [r7, #40] ; 0x28 + 800396c: 2337 movs r3, #55 ; 0x37 + 800396e: 62bb str r3, [r7, #40] ; 0x28 else { mtCOVERAGE_TEST_MARKER(); } pxNewTCB->uxPriority = uxPriority; - 80038f4: 6b3b ldr r3, [r7, #48] ; 0x30 - 80038f6: 6aba ldr r2, [r7, #40] ; 0x28 - 80038f8: 62da str r2, [r3, #44] ; 0x2c + 8003970: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003972: 6aba ldr r2, [r7, #40] ; 0x28 + 8003974: 62da str r2, [r3, #44] ; 0x2c #if ( configUSE_MUTEXES == 1 ) { pxNewTCB->uxBasePriority = uxPriority; - 80038fa: 6b3b ldr r3, [r7, #48] ; 0x30 - 80038fc: 6aba ldr r2, [r7, #40] ; 0x28 - 80038fe: 64da str r2, [r3, #76] ; 0x4c + 8003976: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003978: 6aba ldr r2, [r7, #40] ; 0x28 + 800397a: 64da str r2, [r3, #76] ; 0x4c pxNewTCB->uxMutexesHeld = 0; - 8003900: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003902: 2200 movs r2, #0 - 8003904: 651a str r2, [r3, #80] ; 0x50 + 800397c: 6b3b ldr r3, [r7, #48] ; 0x30 + 800397e: 2200 movs r2, #0 + 8003980: 651a str r2, [r3, #80] ; 0x50 } #endif /* configUSE_MUTEXES */ vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); - 8003906: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003908: 3304 adds r3, #4 - 800390a: 4618 mov r0, r3 - 800390c: f7ff f978 bl 8002c00 + 8003982: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003984: 3304 adds r3, #4 + 8003986: 4618 mov r0, r3 + 8003988: f7ff f978 bl 8002c7c vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); - 8003910: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003912: 3318 adds r3, #24 - 8003914: 4618 mov r0, r3 - 8003916: f7ff f973 bl 8002c00 + 800398c: 6b3b ldr r3, [r7, #48] ; 0x30 + 800398e: 3318 adds r3, #24 + 8003990: 4618 mov r0, r3 + 8003992: f7ff f973 bl 8002c7c /* Set the pxNewTCB as a link back from the ListItem_t. This is so we can get back to the containing TCB from a generic item in a list. */ listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); - 800391a: 6b3b ldr r3, [r7, #48] ; 0x30 - 800391c: 6b3a ldr r2, [r7, #48] ; 0x30 - 800391e: 611a str r2, [r3, #16] + 8003996: 6b3b ldr r3, [r7, #48] ; 0x30 + 8003998: 6b3a ldr r2, [r7, #48] ; 0x30 + 800399a: 611a str r2, [r3, #16] /* Event lists are always in priority order. */ listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 8003920: 6abb ldr r3, [r7, #40] ; 0x28 - 8003922: f1c3 0238 rsb r2, r3, #56 ; 0x38 - 8003926: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003928: 619a str r2, [r3, #24] + 800399c: 6abb ldr r3, [r7, #40] ; 0x28 + 800399e: f1c3 0238 rsb r2, r3, #56 ; 0x38 + 80039a2: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039a4: 619a str r2, [r3, #24] listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); - 800392a: 6b3b ldr r3, [r7, #48] ; 0x30 - 800392c: 6b3a ldr r2, [r7, #48] ; 0x30 - 800392e: 625a str r2, [r3, #36] ; 0x24 + 80039a6: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039a8: 6b3a ldr r2, [r7, #48] ; 0x30 + 80039aa: 625a str r2, [r3, #36] ; 0x24 } #endif #if ( configUSE_TASK_NOTIFICATIONS == 1 ) { pxNewTCB->ulNotifiedValue = 0; - 8003930: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003932: 2200 movs r2, #0 - 8003934: f8c3 20a0 str.w r2, [r3, #160] ; 0xa0 + 80039ac: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039ae: 2200 movs r2, #0 + 80039b0: f8c3 20a0 str.w r2, [r3, #160] ; 0xa0 pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION; - 8003938: 6b3b ldr r3, [r7, #48] ; 0x30 - 800393a: 2200 movs r2, #0 - 800393c: f883 20a4 strb.w r2, [r3, #164] ; 0xa4 + 80039b4: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039b6: 2200 movs r2, #0 + 80039b8: f883 20a4 strb.w r2, [r3, #164] ; 0xa4 #if ( configUSE_NEWLIB_REENTRANT == 1 ) { /* Initialise this task's Newlib reent structure. See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html for additional information. */ _REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) ); - 8003940: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003942: 3354 adds r3, #84 ; 0x54 - 8003944: 224c movs r2, #76 ; 0x4c - 8003946: 2100 movs r1, #0 - 8003948: 4618 mov r0, r3 - 800394a: f001 fd87 bl 800545c - 800394e: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003950: 4a0c ldr r2, [pc, #48] ; (8003984 ) - 8003952: 659a str r2, [r3, #88] ; 0x58 - 8003954: 6b3b ldr r3, [r7, #48] ; 0x30 - 8003956: 4a0c ldr r2, [pc, #48] ; (8003988 ) - 8003958: 65da str r2, [r3, #92] ; 0x5c - 800395a: 6b3b ldr r3, [r7, #48] ; 0x30 - 800395c: 4a0b ldr r2, [pc, #44] ; (800398c ) - 800395e: 661a str r2, [r3, #96] ; 0x60 + 80039bc: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039be: 3354 adds r3, #84 ; 0x54 + 80039c0: 224c movs r2, #76 ; 0x4c + 80039c2: 2100 movs r1, #0 + 80039c4: 4618 mov r0, r3 + 80039c6: f001 fd89 bl 80054dc + 80039ca: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039cc: 4a0c ldr r2, [pc, #48] ; (8003a00 ) + 80039ce: 659a str r2, [r3, #88] ; 0x58 + 80039d0: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039d2: 4a0c ldr r2, [pc, #48] ; (8003a04 ) + 80039d4: 65da str r2, [r3, #92] ; 0x5c + 80039d6: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039d8: 4a0b ldr r2, [pc, #44] ; (8003a08 ) + 80039da: 661a str r2, [r3, #96] ; 0x60 } #endif /* portSTACK_GROWTH */ } #else /* portHAS_STACK_OVERFLOW_CHECKING */ { pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters ); - 8003960: 683a ldr r2, [r7, #0] - 8003962: 68f9 ldr r1, [r7, #12] - 8003964: 69b8 ldr r0, [r7, #24] - 8003966: f001 f941 bl 8004bec - 800396a: 4602 mov r2, r0 - 800396c: 6b3b ldr r3, [r7, #48] ; 0x30 - 800396e: 601a str r2, [r3, #0] + 80039dc: 683a ldr r2, [r7, #0] + 80039de: 68f9 ldr r1, [r7, #12] + 80039e0: 69b8 ldr r0, [r7, #24] + 80039e2: f001 f941 bl 8004c68 + 80039e6: 4602 mov r2, r0 + 80039e8: 6b3b ldr r3, [r7, #48] ; 0x30 + 80039ea: 601a str r2, [r3, #0] } #endif /* portHAS_STACK_OVERFLOW_CHECKING */ } #endif /* portUSING_MPU_WRAPPERS */ if( pxCreatedTask != NULL ) - 8003970: 6afb ldr r3, [r7, #44] ; 0x2c - 8003972: 2b00 cmp r3, #0 - 8003974: d002 beq.n 800397c + 80039ec: 6afb ldr r3, [r7, #44] ; 0x2c + 80039ee: 2b00 cmp r3, #0 + 80039f0: d002 beq.n 80039f8 { /* Pass the handle out in an anonymous way. The handle can be used to change the created task's priority, delete the created task, etc.*/ *pxCreatedTask = ( TaskHandle_t ) pxNewTCB; - 8003976: 6afb ldr r3, [r7, #44] ; 0x2c - 8003978: 6b3a ldr r2, [r7, #48] ; 0x30 - 800397a: 601a str r2, [r3, #0] + 80039f2: 6afb ldr r3, [r7, #44] ; 0x2c + 80039f4: 6b3a ldr r2, [r7, #48] ; 0x30 + 80039f6: 601a str r2, [r3, #0] } else { mtCOVERAGE_TEST_MARKER(); } } - 800397c: bf00 nop - 800397e: 3720 adds r7, #32 - 8003980: 46bd mov sp, r7 - 8003982: bd80 pop {r7, pc} - 8003984: 20004b14 .word 0x20004b14 - 8003988: 20004b7c .word 0x20004b7c - 800398c: 20004be4 .word 0x20004be4 + 80039f8: bf00 nop + 80039fa: 3720 adds r7, #32 + 80039fc: 46bd mov sp, r7 + 80039fe: bd80 pop {r7, pc} + 8003a00: 20004b14 .word 0x20004b14 + 8003a04: 20004b7c .word 0x20004b7c + 8003a08: 20004be4 .word 0x20004be4 -08003990 : +08003a0c : /*-----------------------------------------------------------*/ static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) { - 8003990: b580 push {r7, lr} - 8003992: b082 sub sp, #8 - 8003994: af00 add r7, sp, #0 - 8003996: 6078 str r0, [r7, #4] + 8003a0c: b580 push {r7, lr} + 8003a0e: b082 sub sp, #8 + 8003a10: af00 add r7, sp, #0 + 8003a12: 6078 str r0, [r7, #4] /* Ensure interrupts don't access the task lists while the lists are being updated. */ taskENTER_CRITICAL(); - 8003998: f001 fa54 bl 8004e44 + 8003a14: f001 fa56 bl 8004ec4 { uxCurrentNumberOfTasks++; - 800399c: 4b2d ldr r3, [pc, #180] ; (8003a54 ) - 800399e: 681b ldr r3, [r3, #0] - 80039a0: 3301 adds r3, #1 - 80039a2: 4a2c ldr r2, [pc, #176] ; (8003a54 ) - 80039a4: 6013 str r3, [r2, #0] + 8003a18: 4b2d ldr r3, [pc, #180] ; (8003ad0 ) + 8003a1a: 681b ldr r3, [r3, #0] + 8003a1c: 3301 adds r3, #1 + 8003a1e: 4a2c ldr r2, [pc, #176] ; (8003ad0 ) + 8003a20: 6013 str r3, [r2, #0] if( pxCurrentTCB == NULL ) - 80039a6: 4b2c ldr r3, [pc, #176] ; (8003a58 ) - 80039a8: 681b ldr r3, [r3, #0] - 80039aa: 2b00 cmp r3, #0 - 80039ac: d109 bne.n 80039c2 + 8003a22: 4b2c ldr r3, [pc, #176] ; (8003ad4 ) + 8003a24: 681b ldr r3, [r3, #0] + 8003a26: 2b00 cmp r3, #0 + 8003a28: d109 bne.n 8003a3e { /* There are no other tasks, or all the other tasks are in the suspended state - make this the current task. */ pxCurrentTCB = pxNewTCB; - 80039ae: 4a2a ldr r2, [pc, #168] ; (8003a58 ) - 80039b0: 687b ldr r3, [r7, #4] - 80039b2: 6013 str r3, [r2, #0] + 8003a2a: 4a2a ldr r2, [pc, #168] ; (8003ad4 ) + 8003a2c: 687b ldr r3, [r7, #4] + 8003a2e: 6013 str r3, [r2, #0] if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 ) - 80039b4: 4b27 ldr r3, [pc, #156] ; (8003a54 ) - 80039b6: 681b ldr r3, [r3, #0] - 80039b8: 2b01 cmp r3, #1 - 80039ba: d110 bne.n 80039de + 8003a30: 4b27 ldr r3, [pc, #156] ; (8003ad0 ) + 8003a32: 681b ldr r3, [r3, #0] + 8003a34: 2b01 cmp r3, #1 + 8003a36: d110 bne.n 8003a5a { /* This is the first task to be created so do the preliminary initialisation required. We will not recover if this call fails, but we will report the failure. */ prvInitialiseTaskLists(); - 80039bc: f000 fc26 bl 800420c - 80039c0: e00d b.n 80039de + 8003a38: f000 fc26 bl 8004288 + 8003a3c: e00d b.n 8003a5a else { /* If the scheduler is not already running, make this task the current task if it is the highest priority task to be created so far. */ if( xSchedulerRunning == pdFALSE ) - 80039c2: 4b26 ldr r3, [pc, #152] ; (8003a5c ) - 80039c4: 681b ldr r3, [r3, #0] - 80039c6: 2b00 cmp r3, #0 - 80039c8: d109 bne.n 80039de + 8003a3e: 4b26 ldr r3, [pc, #152] ; (8003ad8 ) + 8003a40: 681b ldr r3, [r3, #0] + 8003a42: 2b00 cmp r3, #0 + 8003a44: d109 bne.n 8003a5a { if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority ) - 80039ca: 4b23 ldr r3, [pc, #140] ; (8003a58 ) - 80039cc: 681b ldr r3, [r3, #0] - 80039ce: 6ada ldr r2, [r3, #44] ; 0x2c - 80039d0: 687b ldr r3, [r7, #4] - 80039d2: 6adb ldr r3, [r3, #44] ; 0x2c - 80039d4: 429a cmp r2, r3 - 80039d6: d802 bhi.n 80039de + 8003a46: 4b23 ldr r3, [pc, #140] ; (8003ad4 ) + 8003a48: 681b ldr r3, [r3, #0] + 8003a4a: 6ada ldr r2, [r3, #44] ; 0x2c + 8003a4c: 687b ldr r3, [r7, #4] + 8003a4e: 6adb ldr r3, [r3, #44] ; 0x2c + 8003a50: 429a cmp r2, r3 + 8003a52: d802 bhi.n 8003a5a { pxCurrentTCB = pxNewTCB; - 80039d8: 4a1f ldr r2, [pc, #124] ; (8003a58 ) - 80039da: 687b ldr r3, [r7, #4] - 80039dc: 6013 str r3, [r2, #0] + 8003a54: 4a1f ldr r2, [pc, #124] ; (8003ad4 ) + 8003a56: 687b ldr r3, [r7, #4] + 8003a58: 6013 str r3, [r2, #0] { mtCOVERAGE_TEST_MARKER(); } } uxTaskNumber++; - 80039de: 4b20 ldr r3, [pc, #128] ; (8003a60 ) - 80039e0: 681b ldr r3, [r3, #0] - 80039e2: 3301 adds r3, #1 - 80039e4: 4a1e ldr r2, [pc, #120] ; (8003a60 ) - 80039e6: 6013 str r3, [r2, #0] + 8003a5a: 4b20 ldr r3, [pc, #128] ; (8003adc ) + 8003a5c: 681b ldr r3, [r3, #0] + 8003a5e: 3301 adds r3, #1 + 8003a60: 4a1e ldr r2, [pc, #120] ; (8003adc ) + 8003a62: 6013 str r3, [r2, #0] #if ( configUSE_TRACE_FACILITY == 1 ) { /* Add a counter into the TCB for tracing only. */ pxNewTCB->uxTCBNumber = uxTaskNumber; - 80039e8: 4b1d ldr r3, [pc, #116] ; (8003a60 ) - 80039ea: 681a ldr r2, [r3, #0] - 80039ec: 687b ldr r3, [r7, #4] - 80039ee: 645a str r2, [r3, #68] ; 0x44 + 8003a64: 4b1d ldr r3, [pc, #116] ; (8003adc ) + 8003a66: 681a ldr r2, [r3, #0] + 8003a68: 687b ldr r3, [r7, #4] + 8003a6a: 645a str r2, [r3, #68] ; 0x44 } #endif /* configUSE_TRACE_FACILITY */ traceTASK_CREATE( pxNewTCB ); prvAddTaskToReadyList( pxNewTCB ); - 80039f0: 687b ldr r3, [r7, #4] - 80039f2: 6ada ldr r2, [r3, #44] ; 0x2c - 80039f4: 4b1b ldr r3, [pc, #108] ; (8003a64 ) - 80039f6: 681b ldr r3, [r3, #0] - 80039f8: 429a cmp r2, r3 - 80039fa: d903 bls.n 8003a04 - 80039fc: 687b ldr r3, [r7, #4] - 80039fe: 6adb ldr r3, [r3, #44] ; 0x2c - 8003a00: 4a18 ldr r2, [pc, #96] ; (8003a64 ) - 8003a02: 6013 str r3, [r2, #0] - 8003a04: 687b ldr r3, [r7, #4] - 8003a06: 6ada ldr r2, [r3, #44] ; 0x2c - 8003a08: 4613 mov r3, r2 - 8003a0a: 009b lsls r3, r3, #2 - 8003a0c: 4413 add r3, r2 - 8003a0e: 009b lsls r3, r3, #2 - 8003a10: 4a15 ldr r2, [pc, #84] ; (8003a68 ) - 8003a12: 441a add r2, r3 - 8003a14: 687b ldr r3, [r7, #4] - 8003a16: 3304 adds r3, #4 - 8003a18: 4619 mov r1, r3 - 8003a1a: 4610 mov r0, r2 - 8003a1c: f7ff f8fd bl 8002c1a + 8003a6c: 687b ldr r3, [r7, #4] + 8003a6e: 6ada ldr r2, [r3, #44] ; 0x2c + 8003a70: 4b1b ldr r3, [pc, #108] ; (8003ae0 ) + 8003a72: 681b ldr r3, [r3, #0] + 8003a74: 429a cmp r2, r3 + 8003a76: d903 bls.n 8003a80 + 8003a78: 687b ldr r3, [r7, #4] + 8003a7a: 6adb ldr r3, [r3, #44] ; 0x2c + 8003a7c: 4a18 ldr r2, [pc, #96] ; (8003ae0 ) + 8003a7e: 6013 str r3, [r2, #0] + 8003a80: 687b ldr r3, [r7, #4] + 8003a82: 6ada ldr r2, [r3, #44] ; 0x2c + 8003a84: 4613 mov r3, r2 + 8003a86: 009b lsls r3, r3, #2 + 8003a88: 4413 add r3, r2 + 8003a8a: 009b lsls r3, r3, #2 + 8003a8c: 4a15 ldr r2, [pc, #84] ; (8003ae4 ) + 8003a8e: 441a add r2, r3 + 8003a90: 687b ldr r3, [r7, #4] + 8003a92: 3304 adds r3, #4 + 8003a94: 4619 mov r1, r3 + 8003a96: 4610 mov r0, r2 + 8003a98: f7ff f8fd bl 8002c96 portSETUP_TCB( pxNewTCB ); } taskEXIT_CRITICAL(); - 8003a20: f001 fa40 bl 8004ea4 + 8003a9c: f001 fa42 bl 8004f24 if( xSchedulerRunning != pdFALSE ) - 8003a24: 4b0d ldr r3, [pc, #52] ; (8003a5c ) - 8003a26: 681b ldr r3, [r3, #0] - 8003a28: 2b00 cmp r3, #0 - 8003a2a: d00e beq.n 8003a4a + 8003aa0: 4b0d ldr r3, [pc, #52] ; (8003ad8 ) + 8003aa2: 681b ldr r3, [r3, #0] + 8003aa4: 2b00 cmp r3, #0 + 8003aa6: d00e beq.n 8003ac6 { /* If the created task is of a higher priority than the current task then it should run now. */ if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority ) - 8003a2c: 4b0a ldr r3, [pc, #40] ; (8003a58 ) - 8003a2e: 681b ldr r3, [r3, #0] - 8003a30: 6ada ldr r2, [r3, #44] ; 0x2c - 8003a32: 687b ldr r3, [r7, #4] - 8003a34: 6adb ldr r3, [r3, #44] ; 0x2c - 8003a36: 429a cmp r2, r3 - 8003a38: d207 bcs.n 8003a4a + 8003aa8: 4b0a ldr r3, [pc, #40] ; (8003ad4 ) + 8003aaa: 681b ldr r3, [r3, #0] + 8003aac: 6ada ldr r2, [r3, #44] ; 0x2c + 8003aae: 687b ldr r3, [r7, #4] + 8003ab0: 6adb ldr r3, [r3, #44] ; 0x2c + 8003ab2: 429a cmp r2, r3 + 8003ab4: d207 bcs.n 8003ac6 { taskYIELD_IF_USING_PREEMPTION(); - 8003a3a: 4b0c ldr r3, [pc, #48] ; (8003a6c ) - 8003a3c: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003a40: 601a str r2, [r3, #0] - 8003a42: f3bf 8f4f dsb sy - 8003a46: f3bf 8f6f isb sy + 8003ab6: 4b0c ldr r3, [pc, #48] ; (8003ae8 ) + 8003ab8: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003abc: 601a str r2, [r3, #0] + 8003abe: f3bf 8f4f dsb sy + 8003ac2: f3bf 8f6f isb sy } else { mtCOVERAGE_TEST_MARKER(); } } - 8003a4a: bf00 nop - 8003a4c: 3708 adds r7, #8 - 8003a4e: 46bd mov sp, r7 - 8003a50: bd80 pop {r7, pc} - 8003a52: bf00 nop - 8003a54: 20000d94 .word 0x20000d94 - 8003a58: 200008c0 .word 0x200008c0 - 8003a5c: 20000da0 .word 0x20000da0 - 8003a60: 20000db0 .word 0x20000db0 - 8003a64: 20000d9c .word 0x20000d9c - 8003a68: 200008c4 .word 0x200008c4 - 8003a6c: e000ed04 .word 0xe000ed04 + 8003ac6: bf00 nop + 8003ac8: 3708 adds r7, #8 + 8003aca: 46bd mov sp, r7 + 8003acc: bd80 pop {r7, pc} + 8003ace: bf00 nop + 8003ad0: 20000d94 .word 0x20000d94 + 8003ad4: 200008c0 .word 0x200008c0 + 8003ad8: 20000da0 .word 0x20000da0 + 8003adc: 20000db0 .word 0x20000db0 + 8003ae0: 20000d9c .word 0x20000d9c + 8003ae4: 200008c4 .word 0x200008c4 + 8003ae8: e000ed04 .word 0xe000ed04 -08003a70 : +08003aec : /*-----------------------------------------------------------*/ #if ( INCLUDE_vTaskDelay == 1 ) void vTaskDelay( const TickType_t xTicksToDelay ) { - 8003a70: b580 push {r7, lr} - 8003a72: b084 sub sp, #16 - 8003a74: af00 add r7, sp, #0 - 8003a76: 6078 str r0, [r7, #4] + 8003aec: b580 push {r7, lr} + 8003aee: b084 sub sp, #16 + 8003af0: af00 add r7, sp, #0 + 8003af2: 6078 str r0, [r7, #4] BaseType_t xAlreadyYielded = pdFALSE; - 8003a78: 2300 movs r3, #0 - 8003a7a: 60fb str r3, [r7, #12] + 8003af4: 2300 movs r3, #0 + 8003af6: 60fb str r3, [r7, #12] /* A delay time of zero just forces a reschedule. */ if( xTicksToDelay > ( TickType_t ) 0U ) - 8003a7c: 687b ldr r3, [r7, #4] - 8003a7e: 2b00 cmp r3, #0 - 8003a80: d017 beq.n 8003ab2 + 8003af8: 687b ldr r3, [r7, #4] + 8003afa: 2b00 cmp r3, #0 + 8003afc: d017 beq.n 8003b2e { configASSERT( uxSchedulerSuspended == 0 ); - 8003a82: 4b13 ldr r3, [pc, #76] ; (8003ad0 ) - 8003a84: 681b ldr r3, [r3, #0] - 8003a86: 2b00 cmp r3, #0 - 8003a88: d00a beq.n 8003aa0 + 8003afe: 4b13 ldr r3, [pc, #76] ; (8003b4c ) + 8003b00: 681b ldr r3, [r3, #0] + 8003b02: 2b00 cmp r3, #0 + 8003b04: d00a beq.n 8003b1c __asm volatile - 8003a8a: f04f 0350 mov.w r3, #80 ; 0x50 - 8003a8e: f383 8811 msr BASEPRI, r3 - 8003a92: f3bf 8f6f isb sy - 8003a96: f3bf 8f4f dsb sy - 8003a9a: 60bb str r3, [r7, #8] + 8003b06: f04f 0350 mov.w r3, #80 ; 0x50 + 8003b0a: f383 8811 msr BASEPRI, r3 + 8003b0e: f3bf 8f6f isb sy + 8003b12: f3bf 8f4f dsb sy + 8003b16: 60bb str r3, [r7, #8] } - 8003a9c: bf00 nop - 8003a9e: e7fe b.n 8003a9e + 8003b18: bf00 nop + 8003b1a: e7fe b.n 8003b1a vTaskSuspendAll(); - 8003aa0: f000 f88a bl 8003bb8 + 8003b1c: f000 f88a bl 8003c34 list or removed from the blocked list until the scheduler is resumed. This task cannot be in an event list as it is the currently executing task. */ prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE ); - 8003aa4: 2100 movs r1, #0 - 8003aa6: 6878 ldr r0, [r7, #4] - 8003aa8: f000 fcfe bl 80044a8 + 8003b20: 2100 movs r1, #0 + 8003b22: 6878 ldr r0, [r7, #4] + 8003b24: f000 fcfe bl 8004524 } xAlreadyYielded = xTaskResumeAll(); - 8003aac: f000 f892 bl 8003bd4 - 8003ab0: 60f8 str r0, [r7, #12] + 8003b28: f000 f892 bl 8003c50 + 8003b2c: 60f8 str r0, [r7, #12] mtCOVERAGE_TEST_MARKER(); } /* Force a reschedule if xTaskResumeAll has not already done so, we may have put ourselves to sleep. */ if( xAlreadyYielded == pdFALSE ) - 8003ab2: 68fb ldr r3, [r7, #12] - 8003ab4: 2b00 cmp r3, #0 - 8003ab6: d107 bne.n 8003ac8 + 8003b2e: 68fb ldr r3, [r7, #12] + 8003b30: 2b00 cmp r3, #0 + 8003b32: d107 bne.n 8003b44 { portYIELD_WITHIN_API(); - 8003ab8: 4b06 ldr r3, [pc, #24] ; (8003ad4 ) - 8003aba: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003abe: 601a str r2, [r3, #0] - 8003ac0: f3bf 8f4f dsb sy - 8003ac4: f3bf 8f6f isb sy + 8003b34: 4b06 ldr r3, [pc, #24] ; (8003b50 ) + 8003b36: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003b3a: 601a str r2, [r3, #0] + 8003b3c: f3bf 8f4f dsb sy + 8003b40: f3bf 8f6f isb sy } else { mtCOVERAGE_TEST_MARKER(); } } - 8003ac8: bf00 nop - 8003aca: 3710 adds r7, #16 - 8003acc: 46bd mov sp, r7 - 8003ace: bd80 pop {r7, pc} - 8003ad0: 20000dbc .word 0x20000dbc - 8003ad4: e000ed04 .word 0xe000ed04 + 8003b44: bf00 nop + 8003b46: 3710 adds r7, #16 + 8003b48: 46bd mov sp, r7 + 8003b4a: bd80 pop {r7, pc} + 8003b4c: 20000dbc .word 0x20000dbc + 8003b50: e000ed04 .word 0xe000ed04 -08003ad8 : +08003b54 : #endif /* ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) ) */ /*-----------------------------------------------------------*/ void vTaskStartScheduler( void ) { - 8003ad8: b580 push {r7, lr} - 8003ada: b08a sub sp, #40 ; 0x28 - 8003adc: af04 add r7, sp, #16 + 8003b54: b580 push {r7, lr} + 8003b56: b08a sub sp, #40 ; 0x28 + 8003b58: af04 add r7, sp, #16 BaseType_t xReturn; /* Add the idle task at the lowest priority. */ #if( configSUPPORT_STATIC_ALLOCATION == 1 ) { StaticTask_t *pxIdleTaskTCBBuffer = NULL; - 8003ade: 2300 movs r3, #0 - 8003ae0: 60bb str r3, [r7, #8] + 8003b5a: 2300 movs r3, #0 + 8003b5c: 60bb str r3, [r7, #8] StackType_t *pxIdleTaskStackBuffer = NULL; - 8003ae2: 2300 movs r3, #0 - 8003ae4: 607b str r3, [r7, #4] + 8003b5e: 2300 movs r3, #0 + 8003b60: 607b str r3, [r7, #4] uint32_t ulIdleTaskStackSize; /* The Idle task is created using user provided RAM - obtain the address of the RAM then create the idle task. */ vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize ); - 8003ae6: 463a mov r2, r7 - 8003ae8: 1d39 adds r1, r7, #4 - 8003aea: f107 0308 add.w r3, r7, #8 - 8003aee: 4618 mov r0, r3 - 8003af0: f7ff f832 bl 8002b58 + 8003b62: 463a mov r2, r7 + 8003b64: 1d39 adds r1, r7, #4 + 8003b66: f107 0308 add.w r3, r7, #8 + 8003b6a: 4618 mov r0, r3 + 8003b6c: f7ff f832 bl 8002bd4 xIdleTaskHandle = xTaskCreateStatic( prvIdleTask, - 8003af4: 6839 ldr r1, [r7, #0] - 8003af6: 687b ldr r3, [r7, #4] - 8003af8: 68ba ldr r2, [r7, #8] - 8003afa: 9202 str r2, [sp, #8] - 8003afc: 9301 str r3, [sp, #4] - 8003afe: 2300 movs r3, #0 - 8003b00: 9300 str r3, [sp, #0] - 8003b02: 2300 movs r3, #0 - 8003b04: 460a mov r2, r1 - 8003b06: 4924 ldr r1, [pc, #144] ; (8003b98 ) - 8003b08: 4824 ldr r0, [pc, #144] ; (8003b9c ) - 8003b0a: f7ff fdf9 bl 8003700 - 8003b0e: 4603 mov r3, r0 - 8003b10: 4a23 ldr r2, [pc, #140] ; (8003ba0 ) - 8003b12: 6013 str r3, [r2, #0] + 8003b70: 6839 ldr r1, [r7, #0] + 8003b72: 687b ldr r3, [r7, #4] + 8003b74: 68ba ldr r2, [r7, #8] + 8003b76: 9202 str r2, [sp, #8] + 8003b78: 9301 str r3, [sp, #4] + 8003b7a: 2300 movs r3, #0 + 8003b7c: 9300 str r3, [sp, #0] + 8003b7e: 2300 movs r3, #0 + 8003b80: 460a mov r2, r1 + 8003b82: 4924 ldr r1, [pc, #144] ; (8003c14 ) + 8003b84: 4824 ldr r0, [pc, #144] ; (8003c18 ) + 8003b86: f7ff fdf9 bl 800377c + 8003b8a: 4603 mov r3, r0 + 8003b8c: 4a23 ldr r2, [pc, #140] ; (8003c1c ) + 8003b8e: 6013 str r3, [r2, #0] ( void * ) NULL, /*lint !e961. The cast is not redundant for all compilers. */ portPRIVILEGE_BIT, /* In effect ( tskIDLE_PRIORITY | portPRIVILEGE_BIT ), but tskIDLE_PRIORITY is zero. */ pxIdleTaskStackBuffer, pxIdleTaskTCBBuffer ); /*lint !e961 MISRA exception, justified as it is not a redundant explicit cast to all supported compilers. */ if( xIdleTaskHandle != NULL ) - 8003b14: 4b22 ldr r3, [pc, #136] ; (8003ba0 ) - 8003b16: 681b ldr r3, [r3, #0] - 8003b18: 2b00 cmp r3, #0 - 8003b1a: d002 beq.n 8003b22 + 8003b90: 4b22 ldr r3, [pc, #136] ; (8003c1c ) + 8003b92: 681b ldr r3, [r3, #0] + 8003b94: 2b00 cmp r3, #0 + 8003b96: d002 beq.n 8003b9e { xReturn = pdPASS; - 8003b1c: 2301 movs r3, #1 - 8003b1e: 617b str r3, [r7, #20] - 8003b20: e001 b.n 8003b26 + 8003b98: 2301 movs r3, #1 + 8003b9a: 617b str r3, [r7, #20] + 8003b9c: e001 b.n 8003ba2 } else { xReturn = pdFAIL; - 8003b22: 2300 movs r3, #0 - 8003b24: 617b str r3, [r7, #20] + 8003b9e: 2300 movs r3, #0 + 8003ba0: 617b str r3, [r7, #20] } #endif /* configSUPPORT_STATIC_ALLOCATION */ #if ( configUSE_TIMERS == 1 ) { if( xReturn == pdPASS ) - 8003b26: 697b ldr r3, [r7, #20] - 8003b28: 2b01 cmp r3, #1 - 8003b2a: d102 bne.n 8003b32 + 8003ba2: 697b ldr r3, [r7, #20] + 8003ba4: 2b01 cmp r3, #1 + 8003ba6: d102 bne.n 8003bae { xReturn = xTimerCreateTimerTask(); - 8003b2c: f000 fd10 bl 8004550 - 8003b30: 6178 str r0, [r7, #20] + 8003ba8: f000 fd10 bl 80045cc + 8003bac: 6178 str r0, [r7, #20] mtCOVERAGE_TEST_MARKER(); } } #endif /* configUSE_TIMERS */ if( xReturn == pdPASS ) - 8003b32: 697b ldr r3, [r7, #20] - 8003b34: 2b01 cmp r3, #1 - 8003b36: d11b bne.n 8003b70 + 8003bae: 697b ldr r3, [r7, #20] + 8003bb0: 2b01 cmp r3, #1 + 8003bb2: d11b bne.n 8003bec __asm volatile - 8003b38: f04f 0350 mov.w r3, #80 ; 0x50 - 8003b3c: f383 8811 msr BASEPRI, r3 - 8003b40: f3bf 8f6f isb sy - 8003b44: f3bf 8f4f dsb sy - 8003b48: 613b str r3, [r7, #16] + 8003bb4: f04f 0350 mov.w r3, #80 ; 0x50 + 8003bb8: f383 8811 msr BASEPRI, r3 + 8003bbc: f3bf 8f6f isb sy + 8003bc0: f3bf 8f4f dsb sy + 8003bc4: 613b str r3, [r7, #16] } - 8003b4a: bf00 nop + 8003bc6: bf00 nop { /* Switch Newlib's _impure_ptr variable to point to the _reent structure specific to the task that will run first. See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html for additional information. */ _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - 8003b4c: 4b15 ldr r3, [pc, #84] ; (8003ba4 ) - 8003b4e: 681b ldr r3, [r3, #0] - 8003b50: 3354 adds r3, #84 ; 0x54 - 8003b52: 4a15 ldr r2, [pc, #84] ; (8003ba8 ) - 8003b54: 6013 str r3, [r2, #0] + 8003bc8: 4b15 ldr r3, [pc, #84] ; (8003c20 ) + 8003bca: 681b ldr r3, [r3, #0] + 8003bcc: 3354 adds r3, #84 ; 0x54 + 8003bce: 4a15 ldr r2, [pc, #84] ; (8003c24 ) + 8003bd0: 6013 str r3, [r2, #0] } #endif /* configUSE_NEWLIB_REENTRANT */ xNextTaskUnblockTime = portMAX_DELAY; - 8003b56: 4b15 ldr r3, [pc, #84] ; (8003bac ) - 8003b58: f04f 32ff mov.w r2, #4294967295 - 8003b5c: 601a str r2, [r3, #0] + 8003bd2: 4b15 ldr r3, [pc, #84] ; (8003c28 ) + 8003bd4: f04f 32ff mov.w r2, #4294967295 + 8003bd8: 601a str r2, [r3, #0] xSchedulerRunning = pdTRUE; - 8003b5e: 4b14 ldr r3, [pc, #80] ; (8003bb0 ) - 8003b60: 2201 movs r2, #1 - 8003b62: 601a str r2, [r3, #0] + 8003bda: 4b14 ldr r3, [pc, #80] ; (8003c2c ) + 8003bdc: 2201 movs r2, #1 + 8003bde: 601a str r2, [r3, #0] xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT; - 8003b64: 4b13 ldr r3, [pc, #76] ; (8003bb4 ) - 8003b66: 2200 movs r2, #0 - 8003b68: 601a str r2, [r3, #0] + 8003be0: 4b13 ldr r3, [pc, #76] ; (8003c30 ) + 8003be2: 2200 movs r2, #0 + 8003be4: 601a str r2, [r3, #0] traceTASK_SWITCHED_IN(); /* Setting up the timer tick is hardware specific and thus in the portable interface. */ if( xPortStartScheduler() != pdFALSE ) - 8003b6a: f001 f8c9 bl 8004d00 + 8003be6: f001 f8cb bl 8004d80 } /* Prevent compiler warnings if INCLUDE_xTaskGetIdleTaskHandle is set to 0, meaning xIdleTaskHandle is not used anywhere else. */ ( void ) xIdleTaskHandle; } - 8003b6e: e00e b.n 8003b8e + 8003bea: e00e b.n 8003c0a configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY ); - 8003b70: 697b ldr r3, [r7, #20] - 8003b72: f1b3 3fff cmp.w r3, #4294967295 - 8003b76: d10a bne.n 8003b8e + 8003bec: 697b ldr r3, [r7, #20] + 8003bee: f1b3 3fff cmp.w r3, #4294967295 + 8003bf2: d10a bne.n 8003c0a __asm volatile - 8003b78: f04f 0350 mov.w r3, #80 ; 0x50 - 8003b7c: f383 8811 msr BASEPRI, r3 - 8003b80: f3bf 8f6f isb sy - 8003b84: f3bf 8f4f dsb sy - 8003b88: 60fb str r3, [r7, #12] + 8003bf4: f04f 0350 mov.w r3, #80 ; 0x50 + 8003bf8: f383 8811 msr BASEPRI, r3 + 8003bfc: f3bf 8f6f isb sy + 8003c00: f3bf 8f4f dsb sy + 8003c04: 60fb str r3, [r7, #12] } - 8003b8a: bf00 nop - 8003b8c: e7fe b.n 8003b8c + 8003c06: bf00 nop + 8003c08: e7fe b.n 8003c08 } - 8003b8e: bf00 nop - 8003b90: 3718 adds r7, #24 - 8003b92: 46bd mov sp, r7 - 8003b94: bd80 pop {r7, pc} - 8003b96: bf00 nop - 8003b98: 08005660 .word 0x08005660 - 8003b9c: 080041dd .word 0x080041dd - 8003ba0: 20000db8 .word 0x20000db8 - 8003ba4: 200008c0 .word 0x200008c0 - 8003ba8: 2000005c .word 0x2000005c - 8003bac: 20000db4 .word 0x20000db4 - 8003bb0: 20000da0 .word 0x20000da0 - 8003bb4: 20000d98 .word 0x20000d98 + 8003c0a: bf00 nop + 8003c0c: 3718 adds r7, #24 + 8003c0e: 46bd mov sp, r7 + 8003c10: bd80 pop {r7, pc} + 8003c12: bf00 nop + 8003c14: 080056e0 .word 0x080056e0 + 8003c18: 08004259 .word 0x08004259 + 8003c1c: 20000db8 .word 0x20000db8 + 8003c20: 200008c0 .word 0x200008c0 + 8003c24: 2000005c .word 0x2000005c + 8003c28: 20000db4 .word 0x20000db4 + 8003c2c: 20000da0 .word 0x20000da0 + 8003c30: 20000d98 .word 0x20000d98 -08003bb8 : +08003c34 : vPortEndScheduler(); } /*----------------------------------------------------------*/ void vTaskSuspendAll( void ) { - 8003bb8: b480 push {r7} - 8003bba: af00 add r7, sp, #0 + 8003c34: b480 push {r7} + 8003c36: af00 add r7, sp, #0 do not otherwise exhibit real time behaviour. */ portSOFTWARE_BARRIER(); /* The scheduler is suspended if uxSchedulerSuspended is non-zero. An increment is used to allow calls to vTaskSuspendAll() to nest. */ ++uxSchedulerSuspended; - 8003bbc: 4b04 ldr r3, [pc, #16] ; (8003bd0 ) - 8003bbe: 681b ldr r3, [r3, #0] - 8003bc0: 3301 adds r3, #1 - 8003bc2: 4a03 ldr r2, [pc, #12] ; (8003bd0 ) - 8003bc4: 6013 str r3, [r2, #0] + 8003c38: 4b04 ldr r3, [pc, #16] ; (8003c4c ) + 8003c3a: 681b ldr r3, [r3, #0] + 8003c3c: 3301 adds r3, #1 + 8003c3e: 4a03 ldr r2, [pc, #12] ; (8003c4c ) + 8003c40: 6013 str r3, [r2, #0] /* Enforces ordering for ports and optimised compilers that may otherwise place the above increment elsewhere. */ portMEMORY_BARRIER(); } - 8003bc6: bf00 nop - 8003bc8: 46bd mov sp, r7 - 8003bca: f85d 7b04 ldr.w r7, [sp], #4 - 8003bce: 4770 bx lr - 8003bd0: 20000dbc .word 0x20000dbc + 8003c42: bf00 nop + 8003c44: 46bd mov sp, r7 + 8003c46: f85d 7b04 ldr.w r7, [sp], #4 + 8003c4a: 4770 bx lr + 8003c4c: 20000dbc .word 0x20000dbc -08003bd4 : +08003c50 : #endif /* configUSE_TICKLESS_IDLE */ /*----------------------------------------------------------*/ BaseType_t xTaskResumeAll( void ) { - 8003bd4: b580 push {r7, lr} - 8003bd6: b084 sub sp, #16 - 8003bd8: af00 add r7, sp, #0 + 8003c50: b580 push {r7, lr} + 8003c52: b084 sub sp, #16 + 8003c54: af00 add r7, sp, #0 TCB_t *pxTCB = NULL; - 8003bda: 2300 movs r3, #0 - 8003bdc: 60fb str r3, [r7, #12] + 8003c56: 2300 movs r3, #0 + 8003c58: 60fb str r3, [r7, #12] BaseType_t xAlreadyYielded = pdFALSE; - 8003bde: 2300 movs r3, #0 - 8003be0: 60bb str r3, [r7, #8] + 8003c5a: 2300 movs r3, #0 + 8003c5c: 60bb str r3, [r7, #8] /* If uxSchedulerSuspended is zero then this function does not match a previous call to vTaskSuspendAll(). */ configASSERT( uxSchedulerSuspended ); - 8003be2: 4b42 ldr r3, [pc, #264] ; (8003cec ) - 8003be4: 681b ldr r3, [r3, #0] - 8003be6: 2b00 cmp r3, #0 - 8003be8: d10a bne.n 8003c00 + 8003c5e: 4b42 ldr r3, [pc, #264] ; (8003d68 ) + 8003c60: 681b ldr r3, [r3, #0] + 8003c62: 2b00 cmp r3, #0 + 8003c64: d10a bne.n 8003c7c __asm volatile - 8003bea: f04f 0350 mov.w r3, #80 ; 0x50 - 8003bee: f383 8811 msr BASEPRI, r3 - 8003bf2: f3bf 8f6f isb sy - 8003bf6: f3bf 8f4f dsb sy - 8003bfa: 603b str r3, [r7, #0] + 8003c66: f04f 0350 mov.w r3, #80 ; 0x50 + 8003c6a: f383 8811 msr BASEPRI, r3 + 8003c6e: f3bf 8f6f isb sy + 8003c72: f3bf 8f4f dsb sy + 8003c76: 603b str r3, [r7, #0] } - 8003bfc: bf00 nop - 8003bfe: e7fe b.n 8003bfe + 8003c78: bf00 nop + 8003c7a: e7fe b.n 8003c7a /* It is possible that an ISR caused a task to be removed from an event list while the scheduler was suspended. If this was the case then the removed task will have been added to the xPendingReadyList. Once the scheduler has been resumed it is safe to move all the pending ready tasks from this list into their appropriate ready list. */ taskENTER_CRITICAL(); - 8003c00: f001 f920 bl 8004e44 + 8003c7c: f001 f922 bl 8004ec4 { --uxSchedulerSuspended; - 8003c04: 4b39 ldr r3, [pc, #228] ; (8003cec ) - 8003c06: 681b ldr r3, [r3, #0] - 8003c08: 3b01 subs r3, #1 - 8003c0a: 4a38 ldr r2, [pc, #224] ; (8003cec ) - 8003c0c: 6013 str r3, [r2, #0] + 8003c80: 4b39 ldr r3, [pc, #228] ; (8003d68 ) + 8003c82: 681b ldr r3, [r3, #0] + 8003c84: 3b01 subs r3, #1 + 8003c86: 4a38 ldr r2, [pc, #224] ; (8003d68 ) + 8003c88: 6013 str r3, [r2, #0] if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8003c0e: 4b37 ldr r3, [pc, #220] ; (8003cec ) - 8003c10: 681b ldr r3, [r3, #0] - 8003c12: 2b00 cmp r3, #0 - 8003c14: d162 bne.n 8003cdc + 8003c8a: 4b37 ldr r3, [pc, #220] ; (8003d68 ) + 8003c8c: 681b ldr r3, [r3, #0] + 8003c8e: 2b00 cmp r3, #0 + 8003c90: d162 bne.n 8003d58 { if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U ) - 8003c16: 4b36 ldr r3, [pc, #216] ; (8003cf0 ) - 8003c18: 681b ldr r3, [r3, #0] - 8003c1a: 2b00 cmp r3, #0 - 8003c1c: d05e beq.n 8003cdc + 8003c92: 4b36 ldr r3, [pc, #216] ; (8003d6c ) + 8003c94: 681b ldr r3, [r3, #0] + 8003c96: 2b00 cmp r3, #0 + 8003c98: d05e beq.n 8003d58 { /* Move any readied tasks from the pending list into the appropriate ready list. */ while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) - 8003c1e: e02f b.n 8003c80 + 8003c9a: e02f b.n 8003cfc { pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8003c20: 4b34 ldr r3, [pc, #208] ; (8003cf4 ) - 8003c22: 68db ldr r3, [r3, #12] - 8003c24: 68db ldr r3, [r3, #12] - 8003c26: 60fb str r3, [r7, #12] + 8003c9c: 4b34 ldr r3, [pc, #208] ; (8003d70 ) + 8003c9e: 68db ldr r3, [r3, #12] + 8003ca0: 68db ldr r3, [r3, #12] + 8003ca2: 60fb str r3, [r7, #12] ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - 8003c28: 68fb ldr r3, [r7, #12] - 8003c2a: 3318 adds r3, #24 - 8003c2c: 4618 mov r0, r3 - 8003c2e: f7ff f851 bl 8002cd4 + 8003ca4: 68fb ldr r3, [r7, #12] + 8003ca6: 3318 adds r3, #24 + 8003ca8: 4618 mov r0, r3 + 8003caa: f7ff f851 bl 8002d50 ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - 8003c32: 68fb ldr r3, [r7, #12] - 8003c34: 3304 adds r3, #4 - 8003c36: 4618 mov r0, r3 - 8003c38: f7ff f84c bl 8002cd4 + 8003cae: 68fb ldr r3, [r7, #12] + 8003cb0: 3304 adds r3, #4 + 8003cb2: 4618 mov r0, r3 + 8003cb4: f7ff f84c bl 8002d50 prvAddTaskToReadyList( pxTCB ); - 8003c3c: 68fb ldr r3, [r7, #12] - 8003c3e: 6ada ldr r2, [r3, #44] ; 0x2c - 8003c40: 4b2d ldr r3, [pc, #180] ; (8003cf8 ) - 8003c42: 681b ldr r3, [r3, #0] - 8003c44: 429a cmp r2, r3 - 8003c46: d903 bls.n 8003c50 - 8003c48: 68fb ldr r3, [r7, #12] - 8003c4a: 6adb ldr r3, [r3, #44] ; 0x2c - 8003c4c: 4a2a ldr r2, [pc, #168] ; (8003cf8 ) - 8003c4e: 6013 str r3, [r2, #0] - 8003c50: 68fb ldr r3, [r7, #12] - 8003c52: 6ada ldr r2, [r3, #44] ; 0x2c - 8003c54: 4613 mov r3, r2 - 8003c56: 009b lsls r3, r3, #2 - 8003c58: 4413 add r3, r2 - 8003c5a: 009b lsls r3, r3, #2 - 8003c5c: 4a27 ldr r2, [pc, #156] ; (8003cfc ) - 8003c5e: 441a add r2, r3 - 8003c60: 68fb ldr r3, [r7, #12] - 8003c62: 3304 adds r3, #4 - 8003c64: 4619 mov r1, r3 - 8003c66: 4610 mov r0, r2 - 8003c68: f7fe ffd7 bl 8002c1a + 8003cb8: 68fb ldr r3, [r7, #12] + 8003cba: 6ada ldr r2, [r3, #44] ; 0x2c + 8003cbc: 4b2d ldr r3, [pc, #180] ; (8003d74 ) + 8003cbe: 681b ldr r3, [r3, #0] + 8003cc0: 429a cmp r2, r3 + 8003cc2: d903 bls.n 8003ccc + 8003cc4: 68fb ldr r3, [r7, #12] + 8003cc6: 6adb ldr r3, [r3, #44] ; 0x2c + 8003cc8: 4a2a ldr r2, [pc, #168] ; (8003d74 ) + 8003cca: 6013 str r3, [r2, #0] + 8003ccc: 68fb ldr r3, [r7, #12] + 8003cce: 6ada ldr r2, [r3, #44] ; 0x2c + 8003cd0: 4613 mov r3, r2 + 8003cd2: 009b lsls r3, r3, #2 + 8003cd4: 4413 add r3, r2 + 8003cd6: 009b lsls r3, r3, #2 + 8003cd8: 4a27 ldr r2, [pc, #156] ; (8003d78 ) + 8003cda: 441a add r2, r3 + 8003cdc: 68fb ldr r3, [r7, #12] + 8003cde: 3304 adds r3, #4 + 8003ce0: 4619 mov r1, r3 + 8003ce2: 4610 mov r0, r2 + 8003ce4: f7fe ffd7 bl 8002c96 /* If the moved task has a priority higher than the current task then a yield must be performed. */ if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - 8003c6c: 68fb ldr r3, [r7, #12] - 8003c6e: 6ada ldr r2, [r3, #44] ; 0x2c - 8003c70: 4b23 ldr r3, [pc, #140] ; (8003d00 ) - 8003c72: 681b ldr r3, [r3, #0] - 8003c74: 6adb ldr r3, [r3, #44] ; 0x2c - 8003c76: 429a cmp r2, r3 - 8003c78: d302 bcc.n 8003c80 + 8003ce8: 68fb ldr r3, [r7, #12] + 8003cea: 6ada ldr r2, [r3, #44] ; 0x2c + 8003cec: 4b23 ldr r3, [pc, #140] ; (8003d7c ) + 8003cee: 681b ldr r3, [r3, #0] + 8003cf0: 6adb ldr r3, [r3, #44] ; 0x2c + 8003cf2: 429a cmp r2, r3 + 8003cf4: d302 bcc.n 8003cfc { xYieldPending = pdTRUE; - 8003c7a: 4b22 ldr r3, [pc, #136] ; (8003d04 ) - 8003c7c: 2201 movs r2, #1 - 8003c7e: 601a str r2, [r3, #0] + 8003cf6: 4b22 ldr r3, [pc, #136] ; (8003d80 ) + 8003cf8: 2201 movs r2, #1 + 8003cfa: 601a str r2, [r3, #0] while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) - 8003c80: 4b1c ldr r3, [pc, #112] ; (8003cf4 ) - 8003c82: 681b ldr r3, [r3, #0] - 8003c84: 2b00 cmp r3, #0 - 8003c86: d1cb bne.n 8003c20 + 8003cfc: 4b1c ldr r3, [pc, #112] ; (8003d70 ) + 8003cfe: 681b ldr r3, [r3, #0] + 8003d00: 2b00 cmp r3, #0 + 8003d02: d1cb bne.n 8003c9c { mtCOVERAGE_TEST_MARKER(); } } if( pxTCB != NULL ) - 8003c88: 68fb ldr r3, [r7, #12] - 8003c8a: 2b00 cmp r3, #0 - 8003c8c: d001 beq.n 8003c92 + 8003d04: 68fb ldr r3, [r7, #12] + 8003d06: 2b00 cmp r3, #0 + 8003d08: d001 beq.n 8003d0e which may have prevented the next unblock time from being re-calculated, in which case re-calculate it now. Mainly important for low power tickless implementations, where this can prevent an unnecessary exit from low power state. */ prvResetNextTaskUnblockTime(); - 8003c8e: f000 fb5f bl 8004350 + 8003d0a: f000 fb5f bl 80043cc /* If any ticks occurred while the scheduler was suspended then they should be processed now. This ensures the tick count does not slip, and that any delayed tasks are resumed at the correct time. */ { TickType_t xPendedCounts = xPendedTicks; /* Non-volatile copy. */ - 8003c92: 4b1d ldr r3, [pc, #116] ; (8003d08 ) - 8003c94: 681b ldr r3, [r3, #0] - 8003c96: 607b str r3, [r7, #4] + 8003d0e: 4b1d ldr r3, [pc, #116] ; (8003d84 ) + 8003d10: 681b ldr r3, [r3, #0] + 8003d12: 607b str r3, [r7, #4] if( xPendedCounts > ( TickType_t ) 0U ) - 8003c98: 687b ldr r3, [r7, #4] - 8003c9a: 2b00 cmp r3, #0 - 8003c9c: d010 beq.n 8003cc0 + 8003d14: 687b ldr r3, [r7, #4] + 8003d16: 2b00 cmp r3, #0 + 8003d18: d010 beq.n 8003d3c { do { if( xTaskIncrementTick() != pdFALSE ) - 8003c9e: f000 f847 bl 8003d30 - 8003ca2: 4603 mov r3, r0 - 8003ca4: 2b00 cmp r3, #0 - 8003ca6: d002 beq.n 8003cae + 8003d1a: f000 f847 bl 8003dac + 8003d1e: 4603 mov r3, r0 + 8003d20: 2b00 cmp r3, #0 + 8003d22: d002 beq.n 8003d2a { xYieldPending = pdTRUE; - 8003ca8: 4b16 ldr r3, [pc, #88] ; (8003d04 ) - 8003caa: 2201 movs r2, #1 - 8003cac: 601a str r2, [r3, #0] + 8003d24: 4b16 ldr r3, [pc, #88] ; (8003d80 ) + 8003d26: 2201 movs r2, #1 + 8003d28: 601a str r2, [r3, #0] } else { mtCOVERAGE_TEST_MARKER(); } --xPendedCounts; - 8003cae: 687b ldr r3, [r7, #4] - 8003cb0: 3b01 subs r3, #1 - 8003cb2: 607b str r3, [r7, #4] + 8003d2a: 687b ldr r3, [r7, #4] + 8003d2c: 3b01 subs r3, #1 + 8003d2e: 607b str r3, [r7, #4] } while( xPendedCounts > ( TickType_t ) 0U ); - 8003cb4: 687b ldr r3, [r7, #4] - 8003cb6: 2b00 cmp r3, #0 - 8003cb8: d1f1 bne.n 8003c9e + 8003d30: 687b ldr r3, [r7, #4] + 8003d32: 2b00 cmp r3, #0 + 8003d34: d1f1 bne.n 8003d1a xPendedTicks = 0; - 8003cba: 4b13 ldr r3, [pc, #76] ; (8003d08 ) - 8003cbc: 2200 movs r2, #0 - 8003cbe: 601a str r2, [r3, #0] + 8003d36: 4b13 ldr r3, [pc, #76] ; (8003d84 ) + 8003d38: 2200 movs r2, #0 + 8003d3a: 601a str r2, [r3, #0] { mtCOVERAGE_TEST_MARKER(); } } if( xYieldPending != pdFALSE ) - 8003cc0: 4b10 ldr r3, [pc, #64] ; (8003d04 ) - 8003cc2: 681b ldr r3, [r3, #0] - 8003cc4: 2b00 cmp r3, #0 - 8003cc6: d009 beq.n 8003cdc + 8003d3c: 4b10 ldr r3, [pc, #64] ; (8003d80 ) + 8003d3e: 681b ldr r3, [r3, #0] + 8003d40: 2b00 cmp r3, #0 + 8003d42: d009 beq.n 8003d58 { #if( configUSE_PREEMPTION != 0 ) { xAlreadyYielded = pdTRUE; - 8003cc8: 2301 movs r3, #1 - 8003cca: 60bb str r3, [r7, #8] + 8003d44: 2301 movs r3, #1 + 8003d46: 60bb str r3, [r7, #8] } #endif taskYIELD_IF_USING_PREEMPTION(); - 8003ccc: 4b0f ldr r3, [pc, #60] ; (8003d0c ) - 8003cce: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8003cd2: 601a str r2, [r3, #0] - 8003cd4: f3bf 8f4f dsb sy - 8003cd8: f3bf 8f6f isb sy + 8003d48: 4b0f ldr r3, [pc, #60] ; (8003d88 ) + 8003d4a: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8003d4e: 601a str r2, [r3, #0] + 8003d50: f3bf 8f4f dsb sy + 8003d54: f3bf 8f6f isb sy else { mtCOVERAGE_TEST_MARKER(); } } taskEXIT_CRITICAL(); - 8003cdc: f001 f8e2 bl 8004ea4 + 8003d58: f001 f8e4 bl 8004f24 return xAlreadyYielded; - 8003ce0: 68bb ldr r3, [r7, #8] + 8003d5c: 68bb ldr r3, [r7, #8] } - 8003ce2: 4618 mov r0, r3 - 8003ce4: 3710 adds r7, #16 - 8003ce6: 46bd mov sp, r7 - 8003ce8: bd80 pop {r7, pc} - 8003cea: bf00 nop - 8003cec: 20000dbc .word 0x20000dbc - 8003cf0: 20000d94 .word 0x20000d94 - 8003cf4: 20000d54 .word 0x20000d54 - 8003cf8: 20000d9c .word 0x20000d9c - 8003cfc: 200008c4 .word 0x200008c4 - 8003d00: 200008c0 .word 0x200008c0 - 8003d04: 20000da8 .word 0x20000da8 - 8003d08: 20000da4 .word 0x20000da4 - 8003d0c: e000ed04 .word 0xe000ed04 + 8003d5e: 4618 mov r0, r3 + 8003d60: 3710 adds r7, #16 + 8003d62: 46bd mov sp, r7 + 8003d64: bd80 pop {r7, pc} + 8003d66: bf00 nop + 8003d68: 20000dbc .word 0x20000dbc + 8003d6c: 20000d94 .word 0x20000d94 + 8003d70: 20000d54 .word 0x20000d54 + 8003d74: 20000d9c .word 0x20000d9c + 8003d78: 200008c4 .word 0x200008c4 + 8003d7c: 200008c0 .word 0x200008c0 + 8003d80: 20000da8 .word 0x20000da8 + 8003d84: 20000da4 .word 0x20000da4 + 8003d88: e000ed04 .word 0xe000ed04 -08003d10 : +08003d8c : /*-----------------------------------------------------------*/ TickType_t xTaskGetTickCount( void ) { - 8003d10: b480 push {r7} - 8003d12: b083 sub sp, #12 - 8003d14: af00 add r7, sp, #0 + 8003d8c: b480 push {r7} + 8003d8e: b083 sub sp, #12 + 8003d90: af00 add r7, sp, #0 TickType_t xTicks; /* Critical section required if running on a 16 bit processor. */ portTICK_TYPE_ENTER_CRITICAL(); { xTicks = xTickCount; - 8003d16: 4b05 ldr r3, [pc, #20] ; (8003d2c ) - 8003d18: 681b ldr r3, [r3, #0] - 8003d1a: 607b str r3, [r7, #4] + 8003d92: 4b05 ldr r3, [pc, #20] ; (8003da8 ) + 8003d94: 681b ldr r3, [r3, #0] + 8003d96: 607b str r3, [r7, #4] } portTICK_TYPE_EXIT_CRITICAL(); return xTicks; - 8003d1c: 687b ldr r3, [r7, #4] + 8003d98: 687b ldr r3, [r7, #4] } - 8003d1e: 4618 mov r0, r3 - 8003d20: 370c adds r7, #12 - 8003d22: 46bd mov sp, r7 - 8003d24: f85d 7b04 ldr.w r7, [sp], #4 - 8003d28: 4770 bx lr - 8003d2a: bf00 nop - 8003d2c: 20000d98 .word 0x20000d98 + 8003d9a: 4618 mov r0, r3 + 8003d9c: 370c adds r7, #12 + 8003d9e: 46bd mov sp, r7 + 8003da0: f85d 7b04 ldr.w r7, [sp], #4 + 8003da4: 4770 bx lr + 8003da6: bf00 nop + 8003da8: 20000d98 .word 0x20000d98 -08003d30 : +08003dac : #endif /* INCLUDE_xTaskAbortDelay */ /*----------------------------------------------------------*/ BaseType_t xTaskIncrementTick( void ) { - 8003d30: b580 push {r7, lr} - 8003d32: b086 sub sp, #24 - 8003d34: af00 add r7, sp, #0 + 8003dac: b580 push {r7, lr} + 8003dae: b086 sub sp, #24 + 8003db0: af00 add r7, sp, #0 TCB_t * pxTCB; TickType_t xItemValue; BaseType_t xSwitchRequired = pdFALSE; - 8003d36: 2300 movs r3, #0 - 8003d38: 617b str r3, [r7, #20] + 8003db2: 2300 movs r3, #0 + 8003db4: 617b str r3, [r7, #20] /* Called by the portable layer each time a tick interrupt occurs. Increments the tick then checks to see if the new tick value will cause any tasks to be unblocked. */ traceTASK_INCREMENT_TICK( xTickCount ); if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8003d3a: 4b4f ldr r3, [pc, #316] ; (8003e78 ) - 8003d3c: 681b ldr r3, [r3, #0] - 8003d3e: 2b00 cmp r3, #0 - 8003d40: f040 808f bne.w 8003e62 + 8003db6: 4b4f ldr r3, [pc, #316] ; (8003ef4 ) + 8003db8: 681b ldr r3, [r3, #0] + 8003dba: 2b00 cmp r3, #0 + 8003dbc: f040 808f bne.w 8003ede { /* Minor optimisation. The tick count cannot change in this block. */ const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1; - 8003d44: 4b4d ldr r3, [pc, #308] ; (8003e7c ) - 8003d46: 681b ldr r3, [r3, #0] - 8003d48: 3301 adds r3, #1 - 8003d4a: 613b str r3, [r7, #16] + 8003dc0: 4b4d ldr r3, [pc, #308] ; (8003ef8 ) + 8003dc2: 681b ldr r3, [r3, #0] + 8003dc4: 3301 adds r3, #1 + 8003dc6: 613b str r3, [r7, #16] /* Increment the RTOS tick, switching the delayed and overflowed delayed lists if it wraps to 0. */ xTickCount = xConstTickCount; - 8003d4c: 4a4b ldr r2, [pc, #300] ; (8003e7c ) - 8003d4e: 693b ldr r3, [r7, #16] - 8003d50: 6013 str r3, [r2, #0] + 8003dc8: 4a4b ldr r2, [pc, #300] ; (8003ef8 ) + 8003dca: 693b ldr r3, [r7, #16] + 8003dcc: 6013 str r3, [r2, #0] if( xConstTickCount == ( TickType_t ) 0U ) /*lint !e774 'if' does not always evaluate to false as it is looking for an overflow. */ - 8003d52: 693b ldr r3, [r7, #16] - 8003d54: 2b00 cmp r3, #0 - 8003d56: d120 bne.n 8003d9a + 8003dce: 693b ldr r3, [r7, #16] + 8003dd0: 2b00 cmp r3, #0 + 8003dd2: d120 bne.n 8003e16 { taskSWITCH_DELAYED_LISTS(); - 8003d58: 4b49 ldr r3, [pc, #292] ; (8003e80 ) - 8003d5a: 681b ldr r3, [r3, #0] - 8003d5c: 681b ldr r3, [r3, #0] - 8003d5e: 2b00 cmp r3, #0 - 8003d60: d00a beq.n 8003d78 + 8003dd4: 4b49 ldr r3, [pc, #292] ; (8003efc ) + 8003dd6: 681b ldr r3, [r3, #0] + 8003dd8: 681b ldr r3, [r3, #0] + 8003dda: 2b00 cmp r3, #0 + 8003ddc: d00a beq.n 8003df4 __asm volatile - 8003d62: f04f 0350 mov.w r3, #80 ; 0x50 - 8003d66: f383 8811 msr BASEPRI, r3 - 8003d6a: f3bf 8f6f isb sy - 8003d6e: f3bf 8f4f dsb sy - 8003d72: 603b str r3, [r7, #0] + 8003dde: f04f 0350 mov.w r3, #80 ; 0x50 + 8003de2: f383 8811 msr BASEPRI, r3 + 8003de6: f3bf 8f6f isb sy + 8003dea: f3bf 8f4f dsb sy + 8003dee: 603b str r3, [r7, #0] } - 8003d74: bf00 nop - 8003d76: e7fe b.n 8003d76 - 8003d78: 4b41 ldr r3, [pc, #260] ; (8003e80 ) - 8003d7a: 681b ldr r3, [r3, #0] - 8003d7c: 60fb str r3, [r7, #12] - 8003d7e: 4b41 ldr r3, [pc, #260] ; (8003e84 ) - 8003d80: 681b ldr r3, [r3, #0] - 8003d82: 4a3f ldr r2, [pc, #252] ; (8003e80 ) - 8003d84: 6013 str r3, [r2, #0] - 8003d86: 4a3f ldr r2, [pc, #252] ; (8003e84 ) - 8003d88: 68fb ldr r3, [r7, #12] - 8003d8a: 6013 str r3, [r2, #0] - 8003d8c: 4b3e ldr r3, [pc, #248] ; (8003e88 ) - 8003d8e: 681b ldr r3, [r3, #0] - 8003d90: 3301 adds r3, #1 - 8003d92: 4a3d ldr r2, [pc, #244] ; (8003e88 ) - 8003d94: 6013 str r3, [r2, #0] - 8003d96: f000 fadb bl 8004350 + 8003df0: bf00 nop + 8003df2: e7fe b.n 8003df2 + 8003df4: 4b41 ldr r3, [pc, #260] ; (8003efc ) + 8003df6: 681b ldr r3, [r3, #0] + 8003df8: 60fb str r3, [r7, #12] + 8003dfa: 4b41 ldr r3, [pc, #260] ; (8003f00 ) + 8003dfc: 681b ldr r3, [r3, #0] + 8003dfe: 4a3f ldr r2, [pc, #252] ; (8003efc ) + 8003e00: 6013 str r3, [r2, #0] + 8003e02: 4a3f ldr r2, [pc, #252] ; (8003f00 ) + 8003e04: 68fb ldr r3, [r7, #12] + 8003e06: 6013 str r3, [r2, #0] + 8003e08: 4b3e ldr r3, [pc, #248] ; (8003f04 ) + 8003e0a: 681b ldr r3, [r3, #0] + 8003e0c: 3301 adds r3, #1 + 8003e0e: 4a3d ldr r2, [pc, #244] ; (8003f04 ) + 8003e10: 6013 str r3, [r2, #0] + 8003e12: f000 fadb bl 80043cc /* See if this tick has made a timeout expire. Tasks are stored in the queue in the order of their wake time - meaning once one task has been found whose block time has not expired there is no need to look any further down the list. */ if( xConstTickCount >= xNextTaskUnblockTime ) - 8003d9a: 4b3c ldr r3, [pc, #240] ; (8003e8c ) - 8003d9c: 681b ldr r3, [r3, #0] - 8003d9e: 693a ldr r2, [r7, #16] - 8003da0: 429a cmp r2, r3 - 8003da2: d349 bcc.n 8003e38 + 8003e16: 4b3c ldr r3, [pc, #240] ; (8003f08 ) + 8003e18: 681b ldr r3, [r3, #0] + 8003e1a: 693a ldr r2, [r7, #16] + 8003e1c: 429a cmp r2, r3 + 8003e1e: d349 bcc.n 8003eb4 { for( ;; ) { if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - 8003da4: 4b36 ldr r3, [pc, #216] ; (8003e80 ) - 8003da6: 681b ldr r3, [r3, #0] - 8003da8: 681b ldr r3, [r3, #0] - 8003daa: 2b00 cmp r3, #0 - 8003dac: d104 bne.n 8003db8 + 8003e20: 4b36 ldr r3, [pc, #216] ; (8003efc ) + 8003e22: 681b ldr r3, [r3, #0] + 8003e24: 681b ldr r3, [r3, #0] + 8003e26: 2b00 cmp r3, #0 + 8003e28: d104 bne.n 8003e34 /* The delayed list is empty. Set xNextTaskUnblockTime to the maximum possible value so it is extremely unlikely that the if( xTickCount >= xNextTaskUnblockTime ) test will pass next time through. */ xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 8003dae: 4b37 ldr r3, [pc, #220] ; (8003e8c ) - 8003db0: f04f 32ff mov.w r2, #4294967295 - 8003db4: 601a str r2, [r3, #0] + 8003e2a: 4b37 ldr r3, [pc, #220] ; (8003f08 ) + 8003e2c: f04f 32ff mov.w r2, #4294967295 + 8003e30: 601a str r2, [r3, #0] break; - 8003db6: e03f b.n 8003e38 + 8003e32: e03f b.n 8003eb4 { /* The delayed list is not empty, get the value of the item at the head of the delayed list. This is the time at which the task at the head of the delayed list must be removed from the Blocked state. */ pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8003db8: 4b31 ldr r3, [pc, #196] ; (8003e80 ) - 8003dba: 681b ldr r3, [r3, #0] - 8003dbc: 68db ldr r3, [r3, #12] - 8003dbe: 68db ldr r3, [r3, #12] - 8003dc0: 60bb str r3, [r7, #8] + 8003e34: 4b31 ldr r3, [pc, #196] ; (8003efc ) + 8003e36: 681b ldr r3, [r3, #0] + 8003e38: 68db ldr r3, [r3, #12] + 8003e3a: 68db ldr r3, [r3, #12] + 8003e3c: 60bb str r3, [r7, #8] xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); - 8003dc2: 68bb ldr r3, [r7, #8] - 8003dc4: 685b ldr r3, [r3, #4] - 8003dc6: 607b str r3, [r7, #4] + 8003e3e: 68bb ldr r3, [r7, #8] + 8003e40: 685b ldr r3, [r3, #4] + 8003e42: 607b str r3, [r7, #4] if( xConstTickCount < xItemValue ) - 8003dc8: 693a ldr r2, [r7, #16] - 8003dca: 687b ldr r3, [r7, #4] - 8003dcc: 429a cmp r2, r3 - 8003dce: d203 bcs.n 8003dd8 + 8003e44: 693a ldr r2, [r7, #16] + 8003e46: 687b ldr r3, [r7, #4] + 8003e48: 429a cmp r2, r3 + 8003e4a: d203 bcs.n 8003e54 /* It is not time to unblock this item yet, but the item value is the time at which the task at the head of the blocked list must be removed from the Blocked state - so record the item value in xNextTaskUnblockTime. */ xNextTaskUnblockTime = xItemValue; - 8003dd0: 4a2e ldr r2, [pc, #184] ; (8003e8c ) - 8003dd2: 687b ldr r3, [r7, #4] - 8003dd4: 6013 str r3, [r2, #0] + 8003e4c: 4a2e ldr r2, [pc, #184] ; (8003f08 ) + 8003e4e: 687b ldr r3, [r7, #4] + 8003e50: 6013 str r3, [r2, #0] break; /*lint !e9011 Code structure here is deedmed easier to understand with multiple breaks. */ - 8003dd6: e02f b.n 8003e38 + 8003e52: e02f b.n 8003eb4 { mtCOVERAGE_TEST_MARKER(); } /* It is time to remove the item from the Blocked state. */ ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - 8003dd8: 68bb ldr r3, [r7, #8] - 8003dda: 3304 adds r3, #4 - 8003ddc: 4618 mov r0, r3 - 8003dde: f7fe ff79 bl 8002cd4 + 8003e54: 68bb ldr r3, [r7, #8] + 8003e56: 3304 adds r3, #4 + 8003e58: 4618 mov r0, r3 + 8003e5a: f7fe ff79 bl 8002d50 /* Is the task waiting on an event also? If so remove it from the event list. */ if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) - 8003de2: 68bb ldr r3, [r7, #8] - 8003de4: 6a9b ldr r3, [r3, #40] ; 0x28 - 8003de6: 2b00 cmp r3, #0 - 8003de8: d004 beq.n 8003df4 + 8003e5e: 68bb ldr r3, [r7, #8] + 8003e60: 6a9b ldr r3, [r3, #40] ; 0x28 + 8003e62: 2b00 cmp r3, #0 + 8003e64: d004 beq.n 8003e70 { ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); - 8003dea: 68bb ldr r3, [r7, #8] - 8003dec: 3318 adds r3, #24 - 8003dee: 4618 mov r0, r3 - 8003df0: f7fe ff70 bl 8002cd4 + 8003e66: 68bb ldr r3, [r7, #8] + 8003e68: 3318 adds r3, #24 + 8003e6a: 4618 mov r0, r3 + 8003e6c: f7fe ff70 bl 8002d50 mtCOVERAGE_TEST_MARKER(); } /* Place the unblocked task into the appropriate ready list. */ prvAddTaskToReadyList( pxTCB ); - 8003df4: 68bb ldr r3, [r7, #8] - 8003df6: 6ada ldr r2, [r3, #44] ; 0x2c - 8003df8: 4b25 ldr r3, [pc, #148] ; (8003e90 ) - 8003dfa: 681b ldr r3, [r3, #0] - 8003dfc: 429a cmp r2, r3 - 8003dfe: d903 bls.n 8003e08 - 8003e00: 68bb ldr r3, [r7, #8] - 8003e02: 6adb ldr r3, [r3, #44] ; 0x2c - 8003e04: 4a22 ldr r2, [pc, #136] ; (8003e90 ) - 8003e06: 6013 str r3, [r2, #0] - 8003e08: 68bb ldr r3, [r7, #8] - 8003e0a: 6ada ldr r2, [r3, #44] ; 0x2c - 8003e0c: 4613 mov r3, r2 - 8003e0e: 009b lsls r3, r3, #2 - 8003e10: 4413 add r3, r2 - 8003e12: 009b lsls r3, r3, #2 - 8003e14: 4a1f ldr r2, [pc, #124] ; (8003e94 ) - 8003e16: 441a add r2, r3 - 8003e18: 68bb ldr r3, [r7, #8] - 8003e1a: 3304 adds r3, #4 - 8003e1c: 4619 mov r1, r3 - 8003e1e: 4610 mov r0, r2 - 8003e20: f7fe fefb bl 8002c1a + 8003e70: 68bb ldr r3, [r7, #8] + 8003e72: 6ada ldr r2, [r3, #44] ; 0x2c + 8003e74: 4b25 ldr r3, [pc, #148] ; (8003f0c ) + 8003e76: 681b ldr r3, [r3, #0] + 8003e78: 429a cmp r2, r3 + 8003e7a: d903 bls.n 8003e84 + 8003e7c: 68bb ldr r3, [r7, #8] + 8003e7e: 6adb ldr r3, [r3, #44] ; 0x2c + 8003e80: 4a22 ldr r2, [pc, #136] ; (8003f0c ) + 8003e82: 6013 str r3, [r2, #0] + 8003e84: 68bb ldr r3, [r7, #8] + 8003e86: 6ada ldr r2, [r3, #44] ; 0x2c + 8003e88: 4613 mov r3, r2 + 8003e8a: 009b lsls r3, r3, #2 + 8003e8c: 4413 add r3, r2 + 8003e8e: 009b lsls r3, r3, #2 + 8003e90: 4a1f ldr r2, [pc, #124] ; (8003f10 ) + 8003e92: 441a add r2, r3 + 8003e94: 68bb ldr r3, [r7, #8] + 8003e96: 3304 adds r3, #4 + 8003e98: 4619 mov r1, r3 + 8003e9a: 4610 mov r0, r2 + 8003e9c: f7fe fefb bl 8002c96 { /* Preemption is on, but a context switch should only be performed if the unblocked task has a priority that is equal to or higher than the currently executing task. */ if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority ) - 8003e24: 68bb ldr r3, [r7, #8] - 8003e26: 6ada ldr r2, [r3, #44] ; 0x2c - 8003e28: 4b1b ldr r3, [pc, #108] ; (8003e98 ) - 8003e2a: 681b ldr r3, [r3, #0] - 8003e2c: 6adb ldr r3, [r3, #44] ; 0x2c - 8003e2e: 429a cmp r2, r3 - 8003e30: d3b8 bcc.n 8003da4 + 8003ea0: 68bb ldr r3, [r7, #8] + 8003ea2: 6ada ldr r2, [r3, #44] ; 0x2c + 8003ea4: 4b1b ldr r3, [pc, #108] ; (8003f14 ) + 8003ea6: 681b ldr r3, [r3, #0] + 8003ea8: 6adb ldr r3, [r3, #44] ; 0x2c + 8003eaa: 429a cmp r2, r3 + 8003eac: d3b8 bcc.n 8003e20 { xSwitchRequired = pdTRUE; - 8003e32: 2301 movs r3, #1 - 8003e34: 617b str r3, [r7, #20] + 8003eae: 2301 movs r3, #1 + 8003eb0: 617b str r3, [r7, #20] if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - 8003e36: e7b5 b.n 8003da4 + 8003eb2: e7b5 b.n 8003e20 /* Tasks of equal priority to the currently running task will share processing time (time slice) if preemption is on, and the application writer has not explicitly turned time slicing off. */ #if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) ) { if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 ) - 8003e38: 4b17 ldr r3, [pc, #92] ; (8003e98 ) - 8003e3a: 681b ldr r3, [r3, #0] - 8003e3c: 6ada ldr r2, [r3, #44] ; 0x2c - 8003e3e: 4915 ldr r1, [pc, #84] ; (8003e94 ) - 8003e40: 4613 mov r3, r2 - 8003e42: 009b lsls r3, r3, #2 - 8003e44: 4413 add r3, r2 - 8003e46: 009b lsls r3, r3, #2 - 8003e48: 440b add r3, r1 - 8003e4a: 681b ldr r3, [r3, #0] - 8003e4c: 2b01 cmp r3, #1 - 8003e4e: d901 bls.n 8003e54 + 8003eb4: 4b17 ldr r3, [pc, #92] ; (8003f14 ) + 8003eb6: 681b ldr r3, [r3, #0] + 8003eb8: 6ada ldr r2, [r3, #44] ; 0x2c + 8003eba: 4915 ldr r1, [pc, #84] ; (8003f10 ) + 8003ebc: 4613 mov r3, r2 + 8003ebe: 009b lsls r3, r3, #2 + 8003ec0: 4413 add r3, r2 + 8003ec2: 009b lsls r3, r3, #2 + 8003ec4: 440b add r3, r1 + 8003ec6: 681b ldr r3, [r3, #0] + 8003ec8: 2b01 cmp r3, #1 + 8003eca: d901 bls.n 8003ed0 { xSwitchRequired = pdTRUE; - 8003e50: 2301 movs r3, #1 - 8003e52: 617b str r3, [r7, #20] + 8003ecc: 2301 movs r3, #1 + 8003ece: 617b str r3, [r7, #20] } #endif /* configUSE_TICK_HOOK */ #if ( configUSE_PREEMPTION == 1 ) { if( xYieldPending != pdFALSE ) - 8003e54: 4b11 ldr r3, [pc, #68] ; (8003e9c ) - 8003e56: 681b ldr r3, [r3, #0] - 8003e58: 2b00 cmp r3, #0 - 8003e5a: d007 beq.n 8003e6c + 8003ed0: 4b11 ldr r3, [pc, #68] ; (8003f18 ) + 8003ed2: 681b ldr r3, [r3, #0] + 8003ed4: 2b00 cmp r3, #0 + 8003ed6: d007 beq.n 8003ee8 { xSwitchRequired = pdTRUE; - 8003e5c: 2301 movs r3, #1 - 8003e5e: 617b str r3, [r7, #20] - 8003e60: e004 b.n 8003e6c + 8003ed8: 2301 movs r3, #1 + 8003eda: 617b str r3, [r7, #20] + 8003edc: e004 b.n 8003ee8 } #endif /* configUSE_PREEMPTION */ } else { ++xPendedTicks; - 8003e62: 4b0f ldr r3, [pc, #60] ; (8003ea0 ) - 8003e64: 681b ldr r3, [r3, #0] - 8003e66: 3301 adds r3, #1 - 8003e68: 4a0d ldr r2, [pc, #52] ; (8003ea0 ) - 8003e6a: 6013 str r3, [r2, #0] + 8003ede: 4b0f ldr r3, [pc, #60] ; (8003f1c ) + 8003ee0: 681b ldr r3, [r3, #0] + 8003ee2: 3301 adds r3, #1 + 8003ee4: 4a0d ldr r2, [pc, #52] ; (8003f1c ) + 8003ee6: 6013 str r3, [r2, #0] vApplicationTickHook(); } #endif } return xSwitchRequired; - 8003e6c: 697b ldr r3, [r7, #20] + 8003ee8: 697b ldr r3, [r7, #20] } - 8003e6e: 4618 mov r0, r3 - 8003e70: 3718 adds r7, #24 - 8003e72: 46bd mov sp, r7 - 8003e74: bd80 pop {r7, pc} - 8003e76: bf00 nop - 8003e78: 20000dbc .word 0x20000dbc - 8003e7c: 20000d98 .word 0x20000d98 - 8003e80: 20000d4c .word 0x20000d4c - 8003e84: 20000d50 .word 0x20000d50 - 8003e88: 20000dac .word 0x20000dac - 8003e8c: 20000db4 .word 0x20000db4 - 8003e90: 20000d9c .word 0x20000d9c - 8003e94: 200008c4 .word 0x200008c4 - 8003e98: 200008c0 .word 0x200008c0 - 8003e9c: 20000da8 .word 0x20000da8 - 8003ea0: 20000da4 .word 0x20000da4 + 8003eea: 4618 mov r0, r3 + 8003eec: 3718 adds r7, #24 + 8003eee: 46bd mov sp, r7 + 8003ef0: bd80 pop {r7, pc} + 8003ef2: bf00 nop + 8003ef4: 20000dbc .word 0x20000dbc + 8003ef8: 20000d98 .word 0x20000d98 + 8003efc: 20000d4c .word 0x20000d4c + 8003f00: 20000d50 .word 0x20000d50 + 8003f04: 20000dac .word 0x20000dac + 8003f08: 20000db4 .word 0x20000db4 + 8003f0c: 20000d9c .word 0x20000d9c + 8003f10: 200008c4 .word 0x200008c4 + 8003f14: 200008c0 .word 0x200008c0 + 8003f18: 20000da8 .word 0x20000da8 + 8003f1c: 20000da4 .word 0x20000da4 -08003ea4 : +08003f20 : #endif /* configUSE_APPLICATION_TASK_TAG */ /*-----------------------------------------------------------*/ void vTaskSwitchContext( void ) { - 8003ea4: b480 push {r7} - 8003ea6: b085 sub sp, #20 - 8003ea8: af00 add r7, sp, #0 + 8003f20: b480 push {r7} + 8003f22: b085 sub sp, #20 + 8003f24: af00 add r7, sp, #0 if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE ) - 8003eaa: 4b2a ldr r3, [pc, #168] ; (8003f54 ) - 8003eac: 681b ldr r3, [r3, #0] - 8003eae: 2b00 cmp r3, #0 - 8003eb0: d003 beq.n 8003eba + 8003f26: 4b2a ldr r3, [pc, #168] ; (8003fd0 ) + 8003f28: 681b ldr r3, [r3, #0] + 8003f2a: 2b00 cmp r3, #0 + 8003f2c: d003 beq.n 8003f36 { /* The scheduler is currently suspended - do not allow a context switch. */ xYieldPending = pdTRUE; - 8003eb2: 4b29 ldr r3, [pc, #164] ; (8003f58 ) - 8003eb4: 2201 movs r2, #1 - 8003eb6: 601a str r2, [r3, #0] + 8003f2e: 4b29 ldr r3, [pc, #164] ; (8003fd4 ) + 8003f30: 2201 movs r2, #1 + 8003f32: 601a str r2, [r3, #0] for additional information. */ _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); } #endif /* configUSE_NEWLIB_REENTRANT */ } } - 8003eb8: e046 b.n 8003f48 + 8003f34: e046 b.n 8003fc4 xYieldPending = pdFALSE; - 8003eba: 4b27 ldr r3, [pc, #156] ; (8003f58 ) - 8003ebc: 2200 movs r2, #0 - 8003ebe: 601a str r2, [r3, #0] + 8003f36: 4b27 ldr r3, [pc, #156] ; (8003fd4 ) + 8003f38: 2200 movs r2, #0 + 8003f3a: 601a str r2, [r3, #0] taskSELECT_HIGHEST_PRIORITY_TASK(); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8003ec0: 4b26 ldr r3, [pc, #152] ; (8003f5c ) - 8003ec2: 681b ldr r3, [r3, #0] - 8003ec4: 60fb str r3, [r7, #12] - 8003ec6: e010 b.n 8003eea - 8003ec8: 68fb ldr r3, [r7, #12] - 8003eca: 2b00 cmp r3, #0 - 8003ecc: d10a bne.n 8003ee4 + 8003f3c: 4b26 ldr r3, [pc, #152] ; (8003fd8 ) + 8003f3e: 681b ldr r3, [r3, #0] + 8003f40: 60fb str r3, [r7, #12] + 8003f42: e010 b.n 8003f66 + 8003f44: 68fb ldr r3, [r7, #12] + 8003f46: 2b00 cmp r3, #0 + 8003f48: d10a bne.n 8003f60 __asm volatile - 8003ece: f04f 0350 mov.w r3, #80 ; 0x50 - 8003ed2: f383 8811 msr BASEPRI, r3 - 8003ed6: f3bf 8f6f isb sy - 8003eda: f3bf 8f4f dsb sy - 8003ede: 607b str r3, [r7, #4] + 8003f4a: f04f 0350 mov.w r3, #80 ; 0x50 + 8003f4e: f383 8811 msr BASEPRI, r3 + 8003f52: f3bf 8f6f isb sy + 8003f56: f3bf 8f4f dsb sy + 8003f5a: 607b str r3, [r7, #4] } - 8003ee0: bf00 nop - 8003ee2: e7fe b.n 8003ee2 - 8003ee4: 68fb ldr r3, [r7, #12] - 8003ee6: 3b01 subs r3, #1 - 8003ee8: 60fb str r3, [r7, #12] - 8003eea: 491d ldr r1, [pc, #116] ; (8003f60 ) - 8003eec: 68fa ldr r2, [r7, #12] - 8003eee: 4613 mov r3, r2 - 8003ef0: 009b lsls r3, r3, #2 - 8003ef2: 4413 add r3, r2 - 8003ef4: 009b lsls r3, r3, #2 - 8003ef6: 440b add r3, r1 - 8003ef8: 681b ldr r3, [r3, #0] - 8003efa: 2b00 cmp r3, #0 - 8003efc: d0e4 beq.n 8003ec8 - 8003efe: 68fa ldr r2, [r7, #12] - 8003f00: 4613 mov r3, r2 - 8003f02: 009b lsls r3, r3, #2 - 8003f04: 4413 add r3, r2 - 8003f06: 009b lsls r3, r3, #2 - 8003f08: 4a15 ldr r2, [pc, #84] ; (8003f60 ) - 8003f0a: 4413 add r3, r2 - 8003f0c: 60bb str r3, [r7, #8] - 8003f0e: 68bb ldr r3, [r7, #8] - 8003f10: 685b ldr r3, [r3, #4] - 8003f12: 685a ldr r2, [r3, #4] - 8003f14: 68bb ldr r3, [r7, #8] - 8003f16: 605a str r2, [r3, #4] - 8003f18: 68bb ldr r3, [r7, #8] - 8003f1a: 685a ldr r2, [r3, #4] - 8003f1c: 68bb ldr r3, [r7, #8] - 8003f1e: 3308 adds r3, #8 - 8003f20: 429a cmp r2, r3 - 8003f22: d104 bne.n 8003f2e - 8003f24: 68bb ldr r3, [r7, #8] - 8003f26: 685b ldr r3, [r3, #4] - 8003f28: 685a ldr r2, [r3, #4] - 8003f2a: 68bb ldr r3, [r7, #8] - 8003f2c: 605a str r2, [r3, #4] - 8003f2e: 68bb ldr r3, [r7, #8] - 8003f30: 685b ldr r3, [r3, #4] - 8003f32: 68db ldr r3, [r3, #12] - 8003f34: 4a0b ldr r2, [pc, #44] ; (8003f64 ) - 8003f36: 6013 str r3, [r2, #0] - 8003f38: 4a08 ldr r2, [pc, #32] ; (8003f5c ) - 8003f3a: 68fb ldr r3, [r7, #12] - 8003f3c: 6013 str r3, [r2, #0] + 8003f5c: bf00 nop + 8003f5e: e7fe b.n 8003f5e + 8003f60: 68fb ldr r3, [r7, #12] + 8003f62: 3b01 subs r3, #1 + 8003f64: 60fb str r3, [r7, #12] + 8003f66: 491d ldr r1, [pc, #116] ; (8003fdc ) + 8003f68: 68fa ldr r2, [r7, #12] + 8003f6a: 4613 mov r3, r2 + 8003f6c: 009b lsls r3, r3, #2 + 8003f6e: 4413 add r3, r2 + 8003f70: 009b lsls r3, r3, #2 + 8003f72: 440b add r3, r1 + 8003f74: 681b ldr r3, [r3, #0] + 8003f76: 2b00 cmp r3, #0 + 8003f78: d0e4 beq.n 8003f44 + 8003f7a: 68fa ldr r2, [r7, #12] + 8003f7c: 4613 mov r3, r2 + 8003f7e: 009b lsls r3, r3, #2 + 8003f80: 4413 add r3, r2 + 8003f82: 009b lsls r3, r3, #2 + 8003f84: 4a15 ldr r2, [pc, #84] ; (8003fdc ) + 8003f86: 4413 add r3, r2 + 8003f88: 60bb str r3, [r7, #8] + 8003f8a: 68bb ldr r3, [r7, #8] + 8003f8c: 685b ldr r3, [r3, #4] + 8003f8e: 685a ldr r2, [r3, #4] + 8003f90: 68bb ldr r3, [r7, #8] + 8003f92: 605a str r2, [r3, #4] + 8003f94: 68bb ldr r3, [r7, #8] + 8003f96: 685a ldr r2, [r3, #4] + 8003f98: 68bb ldr r3, [r7, #8] + 8003f9a: 3308 adds r3, #8 + 8003f9c: 429a cmp r2, r3 + 8003f9e: d104 bne.n 8003faa + 8003fa0: 68bb ldr r3, [r7, #8] + 8003fa2: 685b ldr r3, [r3, #4] + 8003fa4: 685a ldr r2, [r3, #4] + 8003fa6: 68bb ldr r3, [r7, #8] + 8003fa8: 605a str r2, [r3, #4] + 8003faa: 68bb ldr r3, [r7, #8] + 8003fac: 685b ldr r3, [r3, #4] + 8003fae: 68db ldr r3, [r3, #12] + 8003fb0: 4a0b ldr r2, [pc, #44] ; (8003fe0 ) + 8003fb2: 6013 str r3, [r2, #0] + 8003fb4: 4a08 ldr r2, [pc, #32] ; (8003fd8 ) + 8003fb6: 68fb ldr r3, [r7, #12] + 8003fb8: 6013 str r3, [r2, #0] _impure_ptr = &( pxCurrentTCB->xNewLib_reent ); - 8003f3e: 4b09 ldr r3, [pc, #36] ; (8003f64 ) - 8003f40: 681b ldr r3, [r3, #0] - 8003f42: 3354 adds r3, #84 ; 0x54 - 8003f44: 4a08 ldr r2, [pc, #32] ; (8003f68 ) - 8003f46: 6013 str r3, [r2, #0] + 8003fba: 4b09 ldr r3, [pc, #36] ; (8003fe0 ) + 8003fbc: 681b ldr r3, [r3, #0] + 8003fbe: 3354 adds r3, #84 ; 0x54 + 8003fc0: 4a08 ldr r2, [pc, #32] ; (8003fe4 ) + 8003fc2: 6013 str r3, [r2, #0] } - 8003f48: bf00 nop - 8003f4a: 3714 adds r7, #20 - 8003f4c: 46bd mov sp, r7 - 8003f4e: f85d 7b04 ldr.w r7, [sp], #4 - 8003f52: 4770 bx lr - 8003f54: 20000dbc .word 0x20000dbc - 8003f58: 20000da8 .word 0x20000da8 - 8003f5c: 20000d9c .word 0x20000d9c - 8003f60: 200008c4 .word 0x200008c4 - 8003f64: 200008c0 .word 0x200008c0 - 8003f68: 2000005c .word 0x2000005c + 8003fc4: bf00 nop + 8003fc6: 3714 adds r7, #20 + 8003fc8: 46bd mov sp, r7 + 8003fca: f85d 7b04 ldr.w r7, [sp], #4 + 8003fce: 4770 bx lr + 8003fd0: 20000dbc .word 0x20000dbc + 8003fd4: 20000da8 .word 0x20000da8 + 8003fd8: 20000d9c .word 0x20000d9c + 8003fdc: 200008c4 .word 0x200008c4 + 8003fe0: 200008c0 .word 0x200008c0 + 8003fe4: 2000005c .word 0x2000005c -08003f6c : +08003fe8 : /*-----------------------------------------------------------*/ void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait ) { - 8003f6c: b580 push {r7, lr} - 8003f6e: b084 sub sp, #16 - 8003f70: af00 add r7, sp, #0 - 8003f72: 6078 str r0, [r7, #4] - 8003f74: 6039 str r1, [r7, #0] + 8003fe8: b580 push {r7, lr} + 8003fea: b084 sub sp, #16 + 8003fec: af00 add r7, sp, #0 + 8003fee: 6078 str r0, [r7, #4] + 8003ff0: 6039 str r1, [r7, #0] configASSERT( pxEventList ); - 8003f76: 687b ldr r3, [r7, #4] - 8003f78: 2b00 cmp r3, #0 - 8003f7a: d10a bne.n 8003f92 + 8003ff2: 687b ldr r3, [r7, #4] + 8003ff4: 2b00 cmp r3, #0 + 8003ff6: d10a bne.n 800400e __asm volatile - 8003f7c: f04f 0350 mov.w r3, #80 ; 0x50 - 8003f80: f383 8811 msr BASEPRI, r3 - 8003f84: f3bf 8f6f isb sy - 8003f88: f3bf 8f4f dsb sy - 8003f8c: 60fb str r3, [r7, #12] + 8003ff8: f04f 0350 mov.w r3, #80 ; 0x50 + 8003ffc: f383 8811 msr BASEPRI, r3 + 8004000: f3bf 8f6f isb sy + 8004004: f3bf 8f4f dsb sy + 8004008: 60fb str r3, [r7, #12] } - 8003f8e: bf00 nop - 8003f90: e7fe b.n 8003f90 + 800400a: bf00 nop + 800400c: e7fe b.n 800400c /* Place the event list item of the TCB in the appropriate event list. This is placed in the list in priority order so the highest priority task is the first to be woken by the event. The queue that contains the event list is locked, preventing simultaneous access from interrupts. */ vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - 8003f92: 4b07 ldr r3, [pc, #28] ; (8003fb0 ) - 8003f94: 681b ldr r3, [r3, #0] - 8003f96: 3318 adds r3, #24 - 8003f98: 4619 mov r1, r3 - 8003f9a: 6878 ldr r0, [r7, #4] - 8003f9c: f7fe fe61 bl 8002c62 + 800400e: 4b07 ldr r3, [pc, #28] ; (800402c ) + 8004010: 681b ldr r3, [r3, #0] + 8004012: 3318 adds r3, #24 + 8004014: 4619 mov r1, r3 + 8004016: 6878 ldr r0, [r7, #4] + 8004018: f7fe fe61 bl 8002cde prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE ); - 8003fa0: 2101 movs r1, #1 - 8003fa2: 6838 ldr r0, [r7, #0] - 8003fa4: f000 fa80 bl 80044a8 + 800401c: 2101 movs r1, #1 + 800401e: 6838 ldr r0, [r7, #0] + 8004020: f000 fa80 bl 8004524 } - 8003fa8: bf00 nop - 8003faa: 3710 adds r7, #16 - 8003fac: 46bd mov sp, r7 - 8003fae: bd80 pop {r7, pc} - 8003fb0: 200008c0 .word 0x200008c0 + 8004024: bf00 nop + 8004026: 3710 adds r7, #16 + 8004028: 46bd mov sp, r7 + 800402a: bd80 pop {r7, pc} + 800402c: 200008c0 .word 0x200008c0 -08003fb4 : +08004030 : /*-----------------------------------------------------------*/ #if( configUSE_TIMERS == 1 ) void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely ) { - 8003fb4: b580 push {r7, lr} - 8003fb6: b086 sub sp, #24 - 8003fb8: af00 add r7, sp, #0 - 8003fba: 60f8 str r0, [r7, #12] - 8003fbc: 60b9 str r1, [r7, #8] - 8003fbe: 607a str r2, [r7, #4] + 8004030: b580 push {r7, lr} + 8004032: b086 sub sp, #24 + 8004034: af00 add r7, sp, #0 + 8004036: 60f8 str r0, [r7, #12] + 8004038: 60b9 str r1, [r7, #8] + 800403a: 607a str r2, [r7, #4] configASSERT( pxEventList ); - 8003fc0: 68fb ldr r3, [r7, #12] - 8003fc2: 2b00 cmp r3, #0 - 8003fc4: d10a bne.n 8003fdc + 800403c: 68fb ldr r3, [r7, #12] + 800403e: 2b00 cmp r3, #0 + 8004040: d10a bne.n 8004058 __asm volatile - 8003fc6: f04f 0350 mov.w r3, #80 ; 0x50 - 8003fca: f383 8811 msr BASEPRI, r3 - 8003fce: f3bf 8f6f isb sy - 8003fd2: f3bf 8f4f dsb sy - 8003fd6: 617b str r3, [r7, #20] + 8004042: f04f 0350 mov.w r3, #80 ; 0x50 + 8004046: f383 8811 msr BASEPRI, r3 + 800404a: f3bf 8f6f isb sy + 800404e: f3bf 8f4f dsb sy + 8004052: 617b str r3, [r7, #20] } - 8003fd8: bf00 nop - 8003fda: e7fe b.n 8003fda + 8004054: bf00 nop + 8004056: e7fe b.n 8004056 /* Place the event list item of the TCB in the appropriate event list. In this case it is assume that this is the only task that is going to be waiting on this event list, so the faster vListInsertEnd() function can be used in place of vListInsert. */ vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) ); - 8003fdc: 4b0a ldr r3, [pc, #40] ; (8004008 ) - 8003fde: 681b ldr r3, [r3, #0] - 8003fe0: 3318 adds r3, #24 - 8003fe2: 4619 mov r1, r3 - 8003fe4: 68f8 ldr r0, [r7, #12] - 8003fe6: f7fe fe18 bl 8002c1a + 8004058: 4b0a ldr r3, [pc, #40] ; (8004084 ) + 800405a: 681b ldr r3, [r3, #0] + 800405c: 3318 adds r3, #24 + 800405e: 4619 mov r1, r3 + 8004060: 68f8 ldr r0, [r7, #12] + 8004062: f7fe fe18 bl 8002c96 /* If the task should block indefinitely then set the block time to a value that will be recognised as an indefinite delay inside the prvAddCurrentTaskToDelayedList() function. */ if( xWaitIndefinitely != pdFALSE ) - 8003fea: 687b ldr r3, [r7, #4] - 8003fec: 2b00 cmp r3, #0 - 8003fee: d002 beq.n 8003ff6 + 8004066: 687b ldr r3, [r7, #4] + 8004068: 2b00 cmp r3, #0 + 800406a: d002 beq.n 8004072 { xTicksToWait = portMAX_DELAY; - 8003ff0: f04f 33ff mov.w r3, #4294967295 - 8003ff4: 60bb str r3, [r7, #8] + 800406c: f04f 33ff mov.w r3, #4294967295 + 8004070: 60bb str r3, [r7, #8] } traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) ); prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely ); - 8003ff6: 6879 ldr r1, [r7, #4] - 8003ff8: 68b8 ldr r0, [r7, #8] - 8003ffa: f000 fa55 bl 80044a8 + 8004072: 6879 ldr r1, [r7, #4] + 8004074: 68b8 ldr r0, [r7, #8] + 8004076: f000 fa55 bl 8004524 } - 8003ffe: bf00 nop - 8004000: 3718 adds r7, #24 - 8004002: 46bd mov sp, r7 - 8004004: bd80 pop {r7, pc} - 8004006: bf00 nop - 8004008: 200008c0 .word 0x200008c0 + 800407a: bf00 nop + 800407c: 3718 adds r7, #24 + 800407e: 46bd mov sp, r7 + 8004080: bd80 pop {r7, pc} + 8004082: bf00 nop + 8004084: 200008c0 .word 0x200008c0 -0800400c : +08004088 : #endif /* configUSE_TIMERS */ /*-----------------------------------------------------------*/ BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) { - 800400c: b580 push {r7, lr} - 800400e: b086 sub sp, #24 - 8004010: af00 add r7, sp, #0 - 8004012: 6078 str r0, [r7, #4] + 8004088: b580 push {r7, lr} + 800408a: b086 sub sp, #24 + 800408c: af00 add r7, sp, #0 + 800408e: 6078 str r0, [r7, #4] get called - the lock count on the queue will get modified instead. This means exclusive access to the event list is guaranteed here. This function assumes that a check has already been made to ensure that pxEventList is not empty. */ pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004014: 687b ldr r3, [r7, #4] - 8004016: 68db ldr r3, [r3, #12] - 8004018: 68db ldr r3, [r3, #12] - 800401a: 613b str r3, [r7, #16] + 8004090: 687b ldr r3, [r7, #4] + 8004092: 68db ldr r3, [r3, #12] + 8004094: 68db ldr r3, [r3, #12] + 8004096: 613b str r3, [r7, #16] configASSERT( pxUnblockedTCB ); - 800401c: 693b ldr r3, [r7, #16] - 800401e: 2b00 cmp r3, #0 - 8004020: d10a bne.n 8004038 + 8004098: 693b ldr r3, [r7, #16] + 800409a: 2b00 cmp r3, #0 + 800409c: d10a bne.n 80040b4 __asm volatile - 8004022: f04f 0350 mov.w r3, #80 ; 0x50 - 8004026: f383 8811 msr BASEPRI, r3 - 800402a: f3bf 8f6f isb sy - 800402e: f3bf 8f4f dsb sy - 8004032: 60fb str r3, [r7, #12] + 800409e: f04f 0350 mov.w r3, #80 ; 0x50 + 80040a2: f383 8811 msr BASEPRI, r3 + 80040a6: f3bf 8f6f isb sy + 80040aa: f3bf 8f4f dsb sy + 80040ae: 60fb str r3, [r7, #12] } - 8004034: bf00 nop - 8004036: e7fe b.n 8004036 + 80040b0: bf00 nop + 80040b2: e7fe b.n 80040b2 ( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) ); - 8004038: 693b ldr r3, [r7, #16] - 800403a: 3318 adds r3, #24 - 800403c: 4618 mov r0, r3 - 800403e: f7fe fe49 bl 8002cd4 + 80040b4: 693b ldr r3, [r7, #16] + 80040b6: 3318 adds r3, #24 + 80040b8: 4618 mov r0, r3 + 80040ba: f7fe fe49 bl 8002d50 if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 8004042: 4b1e ldr r3, [pc, #120] ; (80040bc ) - 8004044: 681b ldr r3, [r3, #0] - 8004046: 2b00 cmp r3, #0 - 8004048: d11d bne.n 8004086 + 80040be: 4b1e ldr r3, [pc, #120] ; (8004138 ) + 80040c0: 681b ldr r3, [r3, #0] + 80040c2: 2b00 cmp r3, #0 + 80040c4: d11d bne.n 8004102 { ( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) ); - 800404a: 693b ldr r3, [r7, #16] - 800404c: 3304 adds r3, #4 - 800404e: 4618 mov r0, r3 - 8004050: f7fe fe40 bl 8002cd4 + 80040c6: 693b ldr r3, [r7, #16] + 80040c8: 3304 adds r3, #4 + 80040ca: 4618 mov r0, r3 + 80040cc: f7fe fe40 bl 8002d50 prvAddTaskToReadyList( pxUnblockedTCB ); - 8004054: 693b ldr r3, [r7, #16] - 8004056: 6ada ldr r2, [r3, #44] ; 0x2c - 8004058: 4b19 ldr r3, [pc, #100] ; (80040c0 ) - 800405a: 681b ldr r3, [r3, #0] - 800405c: 429a cmp r2, r3 - 800405e: d903 bls.n 8004068 - 8004060: 693b ldr r3, [r7, #16] - 8004062: 6adb ldr r3, [r3, #44] ; 0x2c - 8004064: 4a16 ldr r2, [pc, #88] ; (80040c0 ) - 8004066: 6013 str r3, [r2, #0] - 8004068: 693b ldr r3, [r7, #16] - 800406a: 6ada ldr r2, [r3, #44] ; 0x2c - 800406c: 4613 mov r3, r2 - 800406e: 009b lsls r3, r3, #2 - 8004070: 4413 add r3, r2 - 8004072: 009b lsls r3, r3, #2 - 8004074: 4a13 ldr r2, [pc, #76] ; (80040c4 ) - 8004076: 441a add r2, r3 - 8004078: 693b ldr r3, [r7, #16] - 800407a: 3304 adds r3, #4 - 800407c: 4619 mov r1, r3 - 800407e: 4610 mov r0, r2 - 8004080: f7fe fdcb bl 8002c1a - 8004084: e005 b.n 8004092 + 80040d0: 693b ldr r3, [r7, #16] + 80040d2: 6ada ldr r2, [r3, #44] ; 0x2c + 80040d4: 4b19 ldr r3, [pc, #100] ; (800413c ) + 80040d6: 681b ldr r3, [r3, #0] + 80040d8: 429a cmp r2, r3 + 80040da: d903 bls.n 80040e4 + 80040dc: 693b ldr r3, [r7, #16] + 80040de: 6adb ldr r3, [r3, #44] ; 0x2c + 80040e0: 4a16 ldr r2, [pc, #88] ; (800413c ) + 80040e2: 6013 str r3, [r2, #0] + 80040e4: 693b ldr r3, [r7, #16] + 80040e6: 6ada ldr r2, [r3, #44] ; 0x2c + 80040e8: 4613 mov r3, r2 + 80040ea: 009b lsls r3, r3, #2 + 80040ec: 4413 add r3, r2 + 80040ee: 009b lsls r3, r3, #2 + 80040f0: 4a13 ldr r2, [pc, #76] ; (8004140 ) + 80040f2: 441a add r2, r3 + 80040f4: 693b ldr r3, [r7, #16] + 80040f6: 3304 adds r3, #4 + 80040f8: 4619 mov r1, r3 + 80040fa: 4610 mov r0, r2 + 80040fc: f7fe fdcb bl 8002c96 + 8004100: e005 b.n 800410e } else { /* The delayed and ready lists cannot be accessed, so hold this task pending until the scheduler is resumed. */ vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) ); - 8004086: 693b ldr r3, [r7, #16] - 8004088: 3318 adds r3, #24 - 800408a: 4619 mov r1, r3 - 800408c: 480e ldr r0, [pc, #56] ; (80040c8 ) - 800408e: f7fe fdc4 bl 8002c1a + 8004102: 693b ldr r3, [r7, #16] + 8004104: 3318 adds r3, #24 + 8004106: 4619 mov r1, r3 + 8004108: 480e ldr r0, [pc, #56] ; (8004144 ) + 800410a: f7fe fdc4 bl 8002c96 } if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority ) - 8004092: 693b ldr r3, [r7, #16] - 8004094: 6ada ldr r2, [r3, #44] ; 0x2c - 8004096: 4b0d ldr r3, [pc, #52] ; (80040cc ) - 8004098: 681b ldr r3, [r3, #0] - 800409a: 6adb ldr r3, [r3, #44] ; 0x2c - 800409c: 429a cmp r2, r3 - 800409e: d905 bls.n 80040ac + 800410e: 693b ldr r3, [r7, #16] + 8004110: 6ada ldr r2, [r3, #44] ; 0x2c + 8004112: 4b0d ldr r3, [pc, #52] ; (8004148 ) + 8004114: 681b ldr r3, [r3, #0] + 8004116: 6adb ldr r3, [r3, #44] ; 0x2c + 8004118: 429a cmp r2, r3 + 800411a: d905 bls.n 8004128 { /* Return true if the task removed from the event list has a higher priority than the calling task. This allows the calling task to know if it should force a context switch now. */ xReturn = pdTRUE; - 80040a0: 2301 movs r3, #1 - 80040a2: 617b str r3, [r7, #20] + 800411c: 2301 movs r3, #1 + 800411e: 617b str r3, [r7, #20] /* Mark that a yield is pending in case the user is not using the "xHigherPriorityTaskWoken" parameter to an ISR safe FreeRTOS function. */ xYieldPending = pdTRUE; - 80040a4: 4b0a ldr r3, [pc, #40] ; (80040d0 ) - 80040a6: 2201 movs r2, #1 - 80040a8: 601a str r2, [r3, #0] - 80040aa: e001 b.n 80040b0 + 8004120: 4b0a ldr r3, [pc, #40] ; (800414c ) + 8004122: 2201 movs r2, #1 + 8004124: 601a str r2, [r3, #0] + 8004126: e001 b.n 800412c } else { xReturn = pdFALSE; - 80040ac: 2300 movs r3, #0 - 80040ae: 617b str r3, [r7, #20] + 8004128: 2300 movs r3, #0 + 800412a: 617b str r3, [r7, #20] } return xReturn; - 80040b0: 697b ldr r3, [r7, #20] + 800412c: 697b ldr r3, [r7, #20] } - 80040b2: 4618 mov r0, r3 - 80040b4: 3718 adds r7, #24 - 80040b6: 46bd mov sp, r7 - 80040b8: bd80 pop {r7, pc} - 80040ba: bf00 nop - 80040bc: 20000dbc .word 0x20000dbc - 80040c0: 20000d9c .word 0x20000d9c - 80040c4: 200008c4 .word 0x200008c4 - 80040c8: 20000d54 .word 0x20000d54 - 80040cc: 200008c0 .word 0x200008c0 - 80040d0: 20000da8 .word 0x20000da8 + 800412e: 4618 mov r0, r3 + 8004130: 3718 adds r7, #24 + 8004132: 46bd mov sp, r7 + 8004134: bd80 pop {r7, pc} + 8004136: bf00 nop + 8004138: 20000dbc .word 0x20000dbc + 800413c: 20000d9c .word 0x20000d9c + 8004140: 200008c4 .word 0x200008c4 + 8004144: 20000d54 .word 0x20000d54 + 8004148: 200008c0 .word 0x200008c0 + 800414c: 20000da8 .word 0x20000da8 -080040d4 : +08004150 : taskEXIT_CRITICAL(); } /*-----------------------------------------------------------*/ void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) { - 80040d4: b480 push {r7} - 80040d6: b083 sub sp, #12 - 80040d8: af00 add r7, sp, #0 - 80040da: 6078 str r0, [r7, #4] + 8004150: b480 push {r7} + 8004152: b083 sub sp, #12 + 8004154: af00 add r7, sp, #0 + 8004156: 6078 str r0, [r7, #4] /* For internal use only as it does not use a critical section. */ pxTimeOut->xOverflowCount = xNumOfOverflows; - 80040dc: 4b06 ldr r3, [pc, #24] ; (80040f8 ) - 80040de: 681a ldr r2, [r3, #0] - 80040e0: 687b ldr r3, [r7, #4] - 80040e2: 601a str r2, [r3, #0] + 8004158: 4b06 ldr r3, [pc, #24] ; (8004174 ) + 800415a: 681a ldr r2, [r3, #0] + 800415c: 687b ldr r3, [r7, #4] + 800415e: 601a str r2, [r3, #0] pxTimeOut->xTimeOnEntering = xTickCount; - 80040e4: 4b05 ldr r3, [pc, #20] ; (80040fc ) - 80040e6: 681a ldr r2, [r3, #0] - 80040e8: 687b ldr r3, [r7, #4] - 80040ea: 605a str r2, [r3, #4] + 8004160: 4b05 ldr r3, [pc, #20] ; (8004178 ) + 8004162: 681a ldr r2, [r3, #0] + 8004164: 687b ldr r3, [r7, #4] + 8004166: 605a str r2, [r3, #4] } - 80040ec: bf00 nop - 80040ee: 370c adds r7, #12 - 80040f0: 46bd mov sp, r7 - 80040f2: f85d 7b04 ldr.w r7, [sp], #4 - 80040f6: 4770 bx lr - 80040f8: 20000dac .word 0x20000dac - 80040fc: 20000d98 .word 0x20000d98 + 8004168: bf00 nop + 800416a: 370c adds r7, #12 + 800416c: 46bd mov sp, r7 + 800416e: f85d 7b04 ldr.w r7, [sp], #4 + 8004172: 4770 bx lr + 8004174: 20000dac .word 0x20000dac + 8004178: 20000d98 .word 0x20000d98 -08004100 : +0800417c : /*-----------------------------------------------------------*/ BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait ) { - 8004100: b580 push {r7, lr} - 8004102: b088 sub sp, #32 - 8004104: af00 add r7, sp, #0 - 8004106: 6078 str r0, [r7, #4] - 8004108: 6039 str r1, [r7, #0] + 800417c: b580 push {r7, lr} + 800417e: b088 sub sp, #32 + 8004180: af00 add r7, sp, #0 + 8004182: 6078 str r0, [r7, #4] + 8004184: 6039 str r1, [r7, #0] BaseType_t xReturn; configASSERT( pxTimeOut ); - 800410a: 687b ldr r3, [r7, #4] - 800410c: 2b00 cmp r3, #0 - 800410e: d10a bne.n 8004126 + 8004186: 687b ldr r3, [r7, #4] + 8004188: 2b00 cmp r3, #0 + 800418a: d10a bne.n 80041a2 __asm volatile - 8004110: f04f 0350 mov.w r3, #80 ; 0x50 - 8004114: f383 8811 msr BASEPRI, r3 - 8004118: f3bf 8f6f isb sy - 800411c: f3bf 8f4f dsb sy - 8004120: 613b str r3, [r7, #16] + 800418c: f04f 0350 mov.w r3, #80 ; 0x50 + 8004190: f383 8811 msr BASEPRI, r3 + 8004194: f3bf 8f6f isb sy + 8004198: f3bf 8f4f dsb sy + 800419c: 613b str r3, [r7, #16] } - 8004122: bf00 nop - 8004124: e7fe b.n 8004124 + 800419e: bf00 nop + 80041a0: e7fe b.n 80041a0 configASSERT( pxTicksToWait ); - 8004126: 683b ldr r3, [r7, #0] - 8004128: 2b00 cmp r3, #0 - 800412a: d10a bne.n 8004142 + 80041a2: 683b ldr r3, [r7, #0] + 80041a4: 2b00 cmp r3, #0 + 80041a6: d10a bne.n 80041be __asm volatile - 800412c: f04f 0350 mov.w r3, #80 ; 0x50 - 8004130: f383 8811 msr BASEPRI, r3 - 8004134: f3bf 8f6f isb sy - 8004138: f3bf 8f4f dsb sy - 800413c: 60fb str r3, [r7, #12] + 80041a8: f04f 0350 mov.w r3, #80 ; 0x50 + 80041ac: f383 8811 msr BASEPRI, r3 + 80041b0: f3bf 8f6f isb sy + 80041b4: f3bf 8f4f dsb sy + 80041b8: 60fb str r3, [r7, #12] } - 800413e: bf00 nop - 8004140: e7fe b.n 8004140 + 80041ba: bf00 nop + 80041bc: e7fe b.n 80041bc taskENTER_CRITICAL(); - 8004142: f000 fe7f bl 8004e44 + 80041be: f000 fe81 bl 8004ec4 { /* Minor optimisation. The tick count cannot change in this block. */ const TickType_t xConstTickCount = xTickCount; - 8004146: 4b1d ldr r3, [pc, #116] ; (80041bc ) - 8004148: 681b ldr r3, [r3, #0] - 800414a: 61bb str r3, [r7, #24] + 80041c2: 4b1d ldr r3, [pc, #116] ; (8004238 ) + 80041c4: 681b ldr r3, [r3, #0] + 80041c6: 61bb str r3, [r7, #24] const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; - 800414c: 687b ldr r3, [r7, #4] - 800414e: 685b ldr r3, [r3, #4] - 8004150: 69ba ldr r2, [r7, #24] - 8004152: 1ad3 subs r3, r2, r3 - 8004154: 617b str r3, [r7, #20] + 80041c8: 687b ldr r3, [r7, #4] + 80041ca: 685b ldr r3, [r3, #4] + 80041cc: 69ba ldr r2, [r7, #24] + 80041ce: 1ad3 subs r3, r2, r3 + 80041d0: 617b str r3, [r7, #20] } else #endif #if ( INCLUDE_vTaskSuspend == 1 ) if( *pxTicksToWait == portMAX_DELAY ) - 8004156: 683b ldr r3, [r7, #0] - 8004158: 681b ldr r3, [r3, #0] - 800415a: f1b3 3fff cmp.w r3, #4294967295 - 800415e: d102 bne.n 8004166 + 80041d2: 683b ldr r3, [r7, #0] + 80041d4: 681b ldr r3, [r3, #0] + 80041d6: f1b3 3fff cmp.w r3, #4294967295 + 80041da: d102 bne.n 80041e2 { /* If INCLUDE_vTaskSuspend is set to 1 and the block time specified is the maximum block time then the task should block indefinitely, and therefore never time out. */ xReturn = pdFALSE; - 8004160: 2300 movs r3, #0 - 8004162: 61fb str r3, [r7, #28] - 8004164: e023 b.n 80041ae + 80041dc: 2300 movs r3, #0 + 80041de: 61fb str r3, [r7, #28] + 80041e0: e023 b.n 800422a } else #endif if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) ) /*lint !e525 Indentation preferred as is to make code within pre-processor directives clearer. */ - 8004166: 687b ldr r3, [r7, #4] - 8004168: 681a ldr r2, [r3, #0] - 800416a: 4b15 ldr r3, [pc, #84] ; (80041c0 ) - 800416c: 681b ldr r3, [r3, #0] - 800416e: 429a cmp r2, r3 - 8004170: d007 beq.n 8004182 - 8004172: 687b ldr r3, [r7, #4] - 8004174: 685b ldr r3, [r3, #4] - 8004176: 69ba ldr r2, [r7, #24] - 8004178: 429a cmp r2, r3 - 800417a: d302 bcc.n 8004182 + 80041e2: 687b ldr r3, [r7, #4] + 80041e4: 681a ldr r2, [r3, #0] + 80041e6: 4b15 ldr r3, [pc, #84] ; (800423c ) + 80041e8: 681b ldr r3, [r3, #0] + 80041ea: 429a cmp r2, r3 + 80041ec: d007 beq.n 80041fe + 80041ee: 687b ldr r3, [r7, #4] + 80041f0: 685b ldr r3, [r3, #4] + 80041f2: 69ba ldr r2, [r7, #24] + 80041f4: 429a cmp r2, r3 + 80041f6: d302 bcc.n 80041fe /* The tick count is greater than the time at which vTaskSetTimeout() was called, but has also overflowed since vTaskSetTimeOut() was called. It must have wrapped all the way around and gone past again. This passed since vTaskSetTimeout() was called. */ xReturn = pdTRUE; - 800417c: 2301 movs r3, #1 - 800417e: 61fb str r3, [r7, #28] - 8004180: e015 b.n 80041ae + 80041f8: 2301 movs r3, #1 + 80041fa: 61fb str r3, [r7, #28] + 80041fc: e015 b.n 800422a } else if( xElapsedTime < *pxTicksToWait ) /*lint !e961 Explicit casting is only redundant with some compilers, whereas others require it to prevent integer conversion errors. */ - 8004182: 683b ldr r3, [r7, #0] - 8004184: 681b ldr r3, [r3, #0] - 8004186: 697a ldr r2, [r7, #20] - 8004188: 429a cmp r2, r3 - 800418a: d20b bcs.n 80041a4 + 80041fe: 683b ldr r3, [r7, #0] + 8004200: 681b ldr r3, [r3, #0] + 8004202: 697a ldr r2, [r7, #20] + 8004204: 429a cmp r2, r3 + 8004206: d20b bcs.n 8004220 { /* Not a genuine timeout. Adjust parameters for time remaining. */ *pxTicksToWait -= xElapsedTime; - 800418c: 683b ldr r3, [r7, #0] - 800418e: 681a ldr r2, [r3, #0] - 8004190: 697b ldr r3, [r7, #20] - 8004192: 1ad2 subs r2, r2, r3 - 8004194: 683b ldr r3, [r7, #0] - 8004196: 601a str r2, [r3, #0] + 8004208: 683b ldr r3, [r7, #0] + 800420a: 681a ldr r2, [r3, #0] + 800420c: 697b ldr r3, [r7, #20] + 800420e: 1ad2 subs r2, r2, r3 + 8004210: 683b ldr r3, [r7, #0] + 8004212: 601a str r2, [r3, #0] vTaskInternalSetTimeOutState( pxTimeOut ); - 8004198: 6878 ldr r0, [r7, #4] - 800419a: f7ff ff9b bl 80040d4 + 8004214: 6878 ldr r0, [r7, #4] + 8004216: f7ff ff9b bl 8004150 xReturn = pdFALSE; - 800419e: 2300 movs r3, #0 - 80041a0: 61fb str r3, [r7, #28] - 80041a2: e004 b.n 80041ae + 800421a: 2300 movs r3, #0 + 800421c: 61fb str r3, [r7, #28] + 800421e: e004 b.n 800422a } else { *pxTicksToWait = 0; - 80041a4: 683b ldr r3, [r7, #0] - 80041a6: 2200 movs r2, #0 - 80041a8: 601a str r2, [r3, #0] + 8004220: 683b ldr r3, [r7, #0] + 8004222: 2200 movs r2, #0 + 8004224: 601a str r2, [r3, #0] xReturn = pdTRUE; - 80041aa: 2301 movs r3, #1 - 80041ac: 61fb str r3, [r7, #28] + 8004226: 2301 movs r3, #1 + 8004228: 61fb str r3, [r7, #28] } } taskEXIT_CRITICAL(); - 80041ae: f000 fe79 bl 8004ea4 + 800422a: f000 fe7b bl 8004f24 return xReturn; - 80041b2: 69fb ldr r3, [r7, #28] + 800422e: 69fb ldr r3, [r7, #28] } - 80041b4: 4618 mov r0, r3 - 80041b6: 3720 adds r7, #32 - 80041b8: 46bd mov sp, r7 - 80041ba: bd80 pop {r7, pc} - 80041bc: 20000d98 .word 0x20000d98 - 80041c0: 20000dac .word 0x20000dac + 8004230: 4618 mov r0, r3 + 8004232: 3720 adds r7, #32 + 8004234: 46bd mov sp, r7 + 8004236: bd80 pop {r7, pc} + 8004238: 20000d98 .word 0x20000d98 + 800423c: 20000dac .word 0x20000dac -080041c4 : +08004240 : /*-----------------------------------------------------------*/ void vTaskMissedYield( void ) { - 80041c4: b480 push {r7} - 80041c6: af00 add r7, sp, #0 + 8004240: b480 push {r7} + 8004242: af00 add r7, sp, #0 xYieldPending = pdTRUE; - 80041c8: 4b03 ldr r3, [pc, #12] ; (80041d8 ) - 80041ca: 2201 movs r2, #1 - 80041cc: 601a str r2, [r3, #0] + 8004244: 4b03 ldr r3, [pc, #12] ; (8004254 ) + 8004246: 2201 movs r2, #1 + 8004248: 601a str r2, [r3, #0] } - 80041ce: bf00 nop - 80041d0: 46bd mov sp, r7 - 80041d2: f85d 7b04 ldr.w r7, [sp], #4 - 80041d6: 4770 bx lr - 80041d8: 20000da8 .word 0x20000da8 + 800424a: bf00 nop + 800424c: 46bd mov sp, r7 + 800424e: f85d 7b04 ldr.w r7, [sp], #4 + 8004252: 4770 bx lr + 8004254: 20000da8 .word 0x20000da8 -080041dc : +08004258 : * * void prvIdleTask( void *pvParameters ); * */ static portTASK_FUNCTION( prvIdleTask, pvParameters ) { - 80041dc: b580 push {r7, lr} - 80041de: b082 sub sp, #8 - 80041e0: af00 add r7, sp, #0 - 80041e2: 6078 str r0, [r7, #4] + 8004258: b580 push {r7, lr} + 800425a: b082 sub sp, #8 + 800425c: af00 add r7, sp, #0 + 800425e: 6078 str r0, [r7, #4] for( ;; ) { /* See if any tasks have deleted themselves - if so then the idle task is responsible for freeing the deleted task's TCB and stack. */ prvCheckTasksWaitingTermination(); - 80041e4: f000 f852 bl 800428c + 8004260: f000 f852 bl 8004308 A critical region is not required here as we are just reading from the list, and an occasional incorrect value will not matter. If the ready list at the idle priority contains more than one task then a task other than the idle task is ready to execute. */ if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 ) - 80041e8: 4b06 ldr r3, [pc, #24] ; (8004204 ) - 80041ea: 681b ldr r3, [r3, #0] - 80041ec: 2b01 cmp r3, #1 - 80041ee: d9f9 bls.n 80041e4 + 8004264: 4b06 ldr r3, [pc, #24] ; (8004280 ) + 8004266: 681b ldr r3, [r3, #0] + 8004268: 2b01 cmp r3, #1 + 800426a: d9f9 bls.n 8004260 { taskYIELD(); - 80041f0: 4b05 ldr r3, [pc, #20] ; (8004208 ) - 80041f2: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80041f6: 601a str r2, [r3, #0] - 80041f8: f3bf 8f4f dsb sy - 80041fc: f3bf 8f6f isb sy + 800426c: 4b05 ldr r3, [pc, #20] ; (8004284 ) + 800426e: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8004272: 601a str r2, [r3, #0] + 8004274: f3bf 8f4f dsb sy + 8004278: f3bf 8f6f isb sy prvCheckTasksWaitingTermination(); - 8004200: e7f0 b.n 80041e4 - 8004202: bf00 nop - 8004204: 200008c4 .word 0x200008c4 - 8004208: e000ed04 .word 0xe000ed04 + 800427c: e7f0 b.n 8004260 + 800427e: bf00 nop + 8004280: 200008c4 .word 0x200008c4 + 8004284: e000ed04 .word 0xe000ed04 -0800420c : +08004288 : #endif /* portUSING_MPU_WRAPPERS */ /*-----------------------------------------------------------*/ static void prvInitialiseTaskLists( void ) { - 800420c: b580 push {r7, lr} - 800420e: b082 sub sp, #8 - 8004210: af00 add r7, sp, #0 + 8004288: b580 push {r7, lr} + 800428a: b082 sub sp, #8 + 800428c: af00 add r7, sp, #0 UBaseType_t uxPriority; for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) - 8004212: 2300 movs r3, #0 - 8004214: 607b str r3, [r7, #4] - 8004216: e00c b.n 8004232 + 800428e: 2300 movs r3, #0 + 8004290: 607b str r3, [r7, #4] + 8004292: e00c b.n 80042ae { vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) ); - 8004218: 687a ldr r2, [r7, #4] - 800421a: 4613 mov r3, r2 - 800421c: 009b lsls r3, r3, #2 - 800421e: 4413 add r3, r2 - 8004220: 009b lsls r3, r3, #2 - 8004222: 4a12 ldr r2, [pc, #72] ; (800426c ) - 8004224: 4413 add r3, r2 - 8004226: 4618 mov r0, r3 - 8004228: f7fe fcca bl 8002bc0 + 8004294: 687a ldr r2, [r7, #4] + 8004296: 4613 mov r3, r2 + 8004298: 009b lsls r3, r3, #2 + 800429a: 4413 add r3, r2 + 800429c: 009b lsls r3, r3, #2 + 800429e: 4a12 ldr r2, [pc, #72] ; (80042e8 ) + 80042a0: 4413 add r3, r2 + 80042a2: 4618 mov r0, r3 + 80042a4: f7fe fcca bl 8002c3c for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ ) - 800422c: 687b ldr r3, [r7, #4] - 800422e: 3301 adds r3, #1 - 8004230: 607b str r3, [r7, #4] - 8004232: 687b ldr r3, [r7, #4] - 8004234: 2b37 cmp r3, #55 ; 0x37 - 8004236: d9ef bls.n 8004218 + 80042a8: 687b ldr r3, [r7, #4] + 80042aa: 3301 adds r3, #1 + 80042ac: 607b str r3, [r7, #4] + 80042ae: 687b ldr r3, [r7, #4] + 80042b0: 2b37 cmp r3, #55 ; 0x37 + 80042b2: d9ef bls.n 8004294 } vListInitialise( &xDelayedTaskList1 ); - 8004238: 480d ldr r0, [pc, #52] ; (8004270 ) - 800423a: f7fe fcc1 bl 8002bc0 + 80042b4: 480d ldr r0, [pc, #52] ; (80042ec ) + 80042b6: f7fe fcc1 bl 8002c3c vListInitialise( &xDelayedTaskList2 ); - 800423e: 480d ldr r0, [pc, #52] ; (8004274 ) - 8004240: f7fe fcbe bl 8002bc0 + 80042ba: 480d ldr r0, [pc, #52] ; (80042f0 ) + 80042bc: f7fe fcbe bl 8002c3c vListInitialise( &xPendingReadyList ); - 8004244: 480c ldr r0, [pc, #48] ; (8004278 ) - 8004246: f7fe fcbb bl 8002bc0 + 80042c0: 480c ldr r0, [pc, #48] ; (80042f4 ) + 80042c2: f7fe fcbb bl 8002c3c #if ( INCLUDE_vTaskDelete == 1 ) { vListInitialise( &xTasksWaitingTermination ); - 800424a: 480c ldr r0, [pc, #48] ; (800427c ) - 800424c: f7fe fcb8 bl 8002bc0 + 80042c6: 480c ldr r0, [pc, #48] ; (80042f8 ) + 80042c8: f7fe fcb8 bl 8002c3c } #endif /* INCLUDE_vTaskDelete */ #if ( INCLUDE_vTaskSuspend == 1 ) { vListInitialise( &xSuspendedTaskList ); - 8004250: 480b ldr r0, [pc, #44] ; (8004280 ) - 8004252: f7fe fcb5 bl 8002bc0 + 80042cc: 480b ldr r0, [pc, #44] ; (80042fc ) + 80042ce: f7fe fcb5 bl 8002c3c } #endif /* INCLUDE_vTaskSuspend */ /* Start with pxDelayedTaskList using list1 and the pxOverflowDelayedTaskList using list2. */ pxDelayedTaskList = &xDelayedTaskList1; - 8004256: 4b0b ldr r3, [pc, #44] ; (8004284 ) - 8004258: 4a05 ldr r2, [pc, #20] ; (8004270 ) - 800425a: 601a str r2, [r3, #0] + 80042d2: 4b0b ldr r3, [pc, #44] ; (8004300 ) + 80042d4: 4a05 ldr r2, [pc, #20] ; (80042ec ) + 80042d6: 601a str r2, [r3, #0] pxOverflowDelayedTaskList = &xDelayedTaskList2; - 800425c: 4b0a ldr r3, [pc, #40] ; (8004288 ) - 800425e: 4a05 ldr r2, [pc, #20] ; (8004274 ) - 8004260: 601a str r2, [r3, #0] + 80042d8: 4b0a ldr r3, [pc, #40] ; (8004304 ) + 80042da: 4a05 ldr r2, [pc, #20] ; (80042f0 ) + 80042dc: 601a str r2, [r3, #0] } - 8004262: bf00 nop - 8004264: 3708 adds r7, #8 - 8004266: 46bd mov sp, r7 - 8004268: bd80 pop {r7, pc} - 800426a: bf00 nop - 800426c: 200008c4 .word 0x200008c4 - 8004270: 20000d24 .word 0x20000d24 - 8004274: 20000d38 .word 0x20000d38 - 8004278: 20000d54 .word 0x20000d54 - 800427c: 20000d68 .word 0x20000d68 - 8004280: 20000d80 .word 0x20000d80 - 8004284: 20000d4c .word 0x20000d4c - 8004288: 20000d50 .word 0x20000d50 + 80042de: bf00 nop + 80042e0: 3708 adds r7, #8 + 80042e2: 46bd mov sp, r7 + 80042e4: bd80 pop {r7, pc} + 80042e6: bf00 nop + 80042e8: 200008c4 .word 0x200008c4 + 80042ec: 20000d24 .word 0x20000d24 + 80042f0: 20000d38 .word 0x20000d38 + 80042f4: 20000d54 .word 0x20000d54 + 80042f8: 20000d68 .word 0x20000d68 + 80042fc: 20000d80 .word 0x20000d80 + 8004300: 20000d4c .word 0x20000d4c + 8004304: 20000d50 .word 0x20000d50 -0800428c : +08004308 : /*-----------------------------------------------------------*/ static void prvCheckTasksWaitingTermination( void ) { - 800428c: b580 push {r7, lr} - 800428e: b082 sub sp, #8 - 8004290: af00 add r7, sp, #0 + 8004308: b580 push {r7, lr} + 800430a: b082 sub sp, #8 + 800430c: af00 add r7, sp, #0 { TCB_t *pxTCB; /* uxDeletedTasksWaitingCleanUp is used to prevent taskENTER_CRITICAL() being called too often in the idle task. */ while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) - 8004292: e019 b.n 80042c8 + 800430e: e019 b.n 8004344 { taskENTER_CRITICAL(); - 8004294: f000 fdd6 bl 8004e44 + 8004310: f000 fdd8 bl 8004ec4 { pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004298: 4b10 ldr r3, [pc, #64] ; (80042dc ) - 800429a: 68db ldr r3, [r3, #12] - 800429c: 68db ldr r3, [r3, #12] - 800429e: 607b str r3, [r7, #4] + 8004314: 4b10 ldr r3, [pc, #64] ; (8004358 ) + 8004316: 68db ldr r3, [r3, #12] + 8004318: 68db ldr r3, [r3, #12] + 800431a: 607b str r3, [r7, #4] ( void ) uxListRemove( &( pxTCB->xStateListItem ) ); - 80042a0: 687b ldr r3, [r7, #4] - 80042a2: 3304 adds r3, #4 - 80042a4: 4618 mov r0, r3 - 80042a6: f7fe fd15 bl 8002cd4 + 800431c: 687b ldr r3, [r7, #4] + 800431e: 3304 adds r3, #4 + 8004320: 4618 mov r0, r3 + 8004322: f7fe fd15 bl 8002d50 --uxCurrentNumberOfTasks; - 80042aa: 4b0d ldr r3, [pc, #52] ; (80042e0 ) - 80042ac: 681b ldr r3, [r3, #0] - 80042ae: 3b01 subs r3, #1 - 80042b0: 4a0b ldr r2, [pc, #44] ; (80042e0 ) - 80042b2: 6013 str r3, [r2, #0] + 8004326: 4b0d ldr r3, [pc, #52] ; (800435c ) + 8004328: 681b ldr r3, [r3, #0] + 800432a: 3b01 subs r3, #1 + 800432c: 4a0b ldr r2, [pc, #44] ; (800435c ) + 800432e: 6013 str r3, [r2, #0] --uxDeletedTasksWaitingCleanUp; - 80042b4: 4b0b ldr r3, [pc, #44] ; (80042e4 ) - 80042b6: 681b ldr r3, [r3, #0] - 80042b8: 3b01 subs r3, #1 - 80042ba: 4a0a ldr r2, [pc, #40] ; (80042e4 ) - 80042bc: 6013 str r3, [r2, #0] + 8004330: 4b0b ldr r3, [pc, #44] ; (8004360 ) + 8004332: 681b ldr r3, [r3, #0] + 8004334: 3b01 subs r3, #1 + 8004336: 4a0a ldr r2, [pc, #40] ; (8004360 ) + 8004338: 6013 str r3, [r2, #0] } taskEXIT_CRITICAL(); - 80042be: f000 fdf1 bl 8004ea4 + 800433a: f000 fdf3 bl 8004f24 prvDeleteTCB( pxTCB ); - 80042c2: 6878 ldr r0, [r7, #4] - 80042c4: f000 f810 bl 80042e8 + 800433e: 6878 ldr r0, [r7, #4] + 8004340: f000 f810 bl 8004364 while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U ) - 80042c8: 4b06 ldr r3, [pc, #24] ; (80042e4 ) - 80042ca: 681b ldr r3, [r3, #0] - 80042cc: 2b00 cmp r3, #0 - 80042ce: d1e1 bne.n 8004294 + 8004344: 4b06 ldr r3, [pc, #24] ; (8004360 ) + 8004346: 681b ldr r3, [r3, #0] + 8004348: 2b00 cmp r3, #0 + 800434a: d1e1 bne.n 8004310 } } #endif /* INCLUDE_vTaskDelete */ } - 80042d0: bf00 nop - 80042d2: bf00 nop - 80042d4: 3708 adds r7, #8 - 80042d6: 46bd mov sp, r7 - 80042d8: bd80 pop {r7, pc} - 80042da: bf00 nop - 80042dc: 20000d68 .word 0x20000d68 - 80042e0: 20000d94 .word 0x20000d94 - 80042e4: 20000d7c .word 0x20000d7c + 800434c: bf00 nop + 800434e: bf00 nop + 8004350: 3708 adds r7, #8 + 8004352: 46bd mov sp, r7 + 8004354: bd80 pop {r7, pc} + 8004356: bf00 nop + 8004358: 20000d68 .word 0x20000d68 + 800435c: 20000d94 .word 0x20000d94 + 8004360: 20000d7c .word 0x20000d7c -080042e8 : +08004364 : /*-----------------------------------------------------------*/ #if ( INCLUDE_vTaskDelete == 1 ) static void prvDeleteTCB( TCB_t *pxTCB ) { - 80042e8: b580 push {r7, lr} - 80042ea: b084 sub sp, #16 - 80042ec: af00 add r7, sp, #0 - 80042ee: 6078 str r0, [r7, #4] + 8004364: b580 push {r7, lr} + 8004366: b084 sub sp, #16 + 8004368: af00 add r7, sp, #0 + 800436a: 6078 str r0, [r7, #4] to the task to free any memory allocated at the application level. See the third party link http://www.nadler.com/embedded/newlibAndFreeRTOS.html for additional information. */ #if ( configUSE_NEWLIB_REENTRANT == 1 ) { _reclaim_reent( &( pxTCB->xNewLib_reent ) ); - 80042f0: 687b ldr r3, [r7, #4] - 80042f2: 3354 adds r3, #84 ; 0x54 - 80042f4: 4618 mov r0, r3 - 80042f6: f001 f8b9 bl 800546c <_reclaim_reent> + 800436c: 687b ldr r3, [r7, #4] + 800436e: 3354 adds r3, #84 ; 0x54 + 8004370: 4618 mov r0, r3 + 8004372: f001 f8bb bl 80054ec <_reclaim_reent> #elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 ) /*lint !e731 !e9029 Macro has been consolidated for readability reasons. */ { /* The task could have been allocated statically or dynamically, so check what was statically allocated before trying to free the memory. */ if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ) - 80042fa: 687b ldr r3, [r7, #4] - 80042fc: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 - 8004300: 2b00 cmp r3, #0 - 8004302: d108 bne.n 8004316 + 8004376: 687b ldr r3, [r7, #4] + 8004378: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 + 800437c: 2b00 cmp r3, #0 + 800437e: d108 bne.n 8004392 { /* Both the stack and TCB were allocated dynamically, so both must be freed. */ vPortFree( pxTCB->pxStack ); - 8004304: 687b ldr r3, [r7, #4] - 8004306: 6b1b ldr r3, [r3, #48] ; 0x30 - 8004308: 4618 mov r0, r3 - 800430a: f000 ff89 bl 8005220 + 8004380: 687b ldr r3, [r7, #4] + 8004382: 6b1b ldr r3, [r3, #48] ; 0x30 + 8004384: 4618 mov r0, r3 + 8004386: f000 ff8b bl 80052a0 vPortFree( pxTCB ); - 800430e: 6878 ldr r0, [r7, #4] - 8004310: f000 ff86 bl 8005220 + 800438a: 6878 ldr r0, [r7, #4] + 800438c: f000 ff88 bl 80052a0 configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); mtCOVERAGE_TEST_MARKER(); } } #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ } - 8004314: e018 b.n 8004348 + 8004390: e018 b.n 80043c4 else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY ) - 8004316: 687b ldr r3, [r7, #4] - 8004318: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 - 800431c: 2b01 cmp r3, #1 - 800431e: d103 bne.n 8004328 + 8004392: 687b ldr r3, [r7, #4] + 8004394: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 + 8004398: 2b01 cmp r3, #1 + 800439a: d103 bne.n 80043a4 vPortFree( pxTCB ); - 8004320: 6878 ldr r0, [r7, #4] - 8004322: f000 ff7d bl 8005220 + 800439c: 6878 ldr r0, [r7, #4] + 800439e: f000 ff7f bl 80052a0 } - 8004326: e00f b.n 8004348 + 80043a2: e00f b.n 80043c4 configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB ); - 8004328: 687b ldr r3, [r7, #4] - 800432a: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 - 800432e: 2b02 cmp r3, #2 - 8004330: d00a beq.n 8004348 + 80043a4: 687b ldr r3, [r7, #4] + 80043a6: f893 30a5 ldrb.w r3, [r3, #165] ; 0xa5 + 80043aa: 2b02 cmp r3, #2 + 80043ac: d00a beq.n 80043c4 __asm volatile - 8004332: f04f 0350 mov.w r3, #80 ; 0x50 - 8004336: f383 8811 msr BASEPRI, r3 - 800433a: f3bf 8f6f isb sy - 800433e: f3bf 8f4f dsb sy - 8004342: 60fb str r3, [r7, #12] + 80043ae: f04f 0350 mov.w r3, #80 ; 0x50 + 80043b2: f383 8811 msr BASEPRI, r3 + 80043b6: f3bf 8f6f isb sy + 80043ba: f3bf 8f4f dsb sy + 80043be: 60fb str r3, [r7, #12] } - 8004344: bf00 nop - 8004346: e7fe b.n 8004346 + 80043c0: bf00 nop + 80043c2: e7fe b.n 80043c2 } - 8004348: bf00 nop - 800434a: 3710 adds r7, #16 - 800434c: 46bd mov sp, r7 - 800434e: bd80 pop {r7, pc} + 80043c4: bf00 nop + 80043c6: 3710 adds r7, #16 + 80043c8: 46bd mov sp, r7 + 80043ca: bd80 pop {r7, pc} -08004350 : +080043cc : #endif /* INCLUDE_vTaskDelete */ /*-----------------------------------------------------------*/ static void prvResetNextTaskUnblockTime( void ) { - 8004350: b480 push {r7} - 8004352: b083 sub sp, #12 - 8004354: af00 add r7, sp, #0 + 80043cc: b480 push {r7} + 80043ce: b083 sub sp, #12 + 80043d0: af00 add r7, sp, #0 TCB_t *pxTCB; if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) - 8004356: 4b0c ldr r3, [pc, #48] ; (8004388 ) - 8004358: 681b ldr r3, [r3, #0] - 800435a: 681b ldr r3, [r3, #0] - 800435c: 2b00 cmp r3, #0 - 800435e: d104 bne.n 800436a + 80043d2: 4b0c ldr r3, [pc, #48] ; (8004404 ) + 80043d4: 681b ldr r3, [r3, #0] + 80043d6: 681b ldr r3, [r3, #0] + 80043d8: 2b00 cmp r3, #0 + 80043da: d104 bne.n 80043e6 { /* The new current delayed list is empty. Set xNextTaskUnblockTime to the maximum possible value so it is extremely unlikely that the if( xTickCount >= xNextTaskUnblockTime ) test will pass until there is an item in the delayed list. */ xNextTaskUnblockTime = portMAX_DELAY; - 8004360: 4b0a ldr r3, [pc, #40] ; (800438c ) - 8004362: f04f 32ff mov.w r2, #4294967295 - 8004366: 601a str r2, [r3, #0] + 80043dc: 4b0a ldr r3, [pc, #40] ; (8004408 ) + 80043de: f04f 32ff mov.w r2, #4294967295 + 80043e2: 601a str r2, [r3, #0] which the task at the head of the delayed list should be removed from the Blocked state. */ ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); } } - 8004368: e008 b.n 800437c + 80043e4: e008 b.n 80043f8 ( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList ); /*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 800436a: 4b07 ldr r3, [pc, #28] ; (8004388 ) - 800436c: 681b ldr r3, [r3, #0] - 800436e: 68db ldr r3, [r3, #12] - 8004370: 68db ldr r3, [r3, #12] - 8004372: 607b str r3, [r7, #4] + 80043e6: 4b07 ldr r3, [pc, #28] ; (8004404 ) + 80043e8: 681b ldr r3, [r3, #0] + 80043ea: 68db ldr r3, [r3, #12] + 80043ec: 68db ldr r3, [r3, #12] + 80043ee: 607b str r3, [r7, #4] xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) ); - 8004374: 687b ldr r3, [r7, #4] - 8004376: 685b ldr r3, [r3, #4] - 8004378: 4a04 ldr r2, [pc, #16] ; (800438c ) - 800437a: 6013 str r3, [r2, #0] + 80043f0: 687b ldr r3, [r7, #4] + 80043f2: 685b ldr r3, [r3, #4] + 80043f4: 4a04 ldr r2, [pc, #16] ; (8004408 ) + 80043f6: 6013 str r3, [r2, #0] } - 800437c: bf00 nop - 800437e: 370c adds r7, #12 - 8004380: 46bd mov sp, r7 - 8004382: f85d 7b04 ldr.w r7, [sp], #4 - 8004386: 4770 bx lr - 8004388: 20000d4c .word 0x20000d4c - 800438c: 20000db4 .word 0x20000db4 + 80043f8: bf00 nop + 80043fa: 370c adds r7, #12 + 80043fc: 46bd mov sp, r7 + 80043fe: f85d 7b04 ldr.w r7, [sp], #4 + 8004402: 4770 bx lr + 8004404: 20000d4c .word 0x20000d4c + 8004408: 20000db4 .word 0x20000db4 -08004390 : +0800440c : /*-----------------------------------------------------------*/ #if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) ) BaseType_t xTaskGetSchedulerState( void ) { - 8004390: b480 push {r7} - 8004392: b083 sub sp, #12 - 8004394: af00 add r7, sp, #0 + 800440c: b480 push {r7} + 800440e: b083 sub sp, #12 + 8004410: af00 add r7, sp, #0 BaseType_t xReturn; if( xSchedulerRunning == pdFALSE ) - 8004396: 4b0b ldr r3, [pc, #44] ; (80043c4 ) - 8004398: 681b ldr r3, [r3, #0] - 800439a: 2b00 cmp r3, #0 - 800439c: d102 bne.n 80043a4 + 8004412: 4b0b ldr r3, [pc, #44] ; (8004440 ) + 8004414: 681b ldr r3, [r3, #0] + 8004416: 2b00 cmp r3, #0 + 8004418: d102 bne.n 8004420 { xReturn = taskSCHEDULER_NOT_STARTED; - 800439e: 2301 movs r3, #1 - 80043a0: 607b str r3, [r7, #4] - 80043a2: e008 b.n 80043b6 + 800441a: 2301 movs r3, #1 + 800441c: 607b str r3, [r7, #4] + 800441e: e008 b.n 8004432 } else { if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE ) - 80043a4: 4b08 ldr r3, [pc, #32] ; (80043c8 ) - 80043a6: 681b ldr r3, [r3, #0] - 80043a8: 2b00 cmp r3, #0 - 80043aa: d102 bne.n 80043b2 + 8004420: 4b08 ldr r3, [pc, #32] ; (8004444 ) + 8004422: 681b ldr r3, [r3, #0] + 8004424: 2b00 cmp r3, #0 + 8004426: d102 bne.n 800442e { xReturn = taskSCHEDULER_RUNNING; - 80043ac: 2302 movs r3, #2 - 80043ae: 607b str r3, [r7, #4] - 80043b0: e001 b.n 80043b6 + 8004428: 2302 movs r3, #2 + 800442a: 607b str r3, [r7, #4] + 800442c: e001 b.n 8004432 } else { xReturn = taskSCHEDULER_SUSPENDED; - 80043b2: 2300 movs r3, #0 - 80043b4: 607b str r3, [r7, #4] + 800442e: 2300 movs r3, #0 + 8004430: 607b str r3, [r7, #4] } } return xReturn; - 80043b6: 687b ldr r3, [r7, #4] + 8004432: 687b ldr r3, [r7, #4] } - 80043b8: 4618 mov r0, r3 - 80043ba: 370c adds r7, #12 - 80043bc: 46bd mov sp, r7 - 80043be: f85d 7b04 ldr.w r7, [sp], #4 - 80043c2: 4770 bx lr - 80043c4: 20000da0 .word 0x20000da0 - 80043c8: 20000dbc .word 0x20000dbc + 8004434: 4618 mov r0, r3 + 8004436: 370c adds r7, #12 + 8004438: 46bd mov sp, r7 + 800443a: f85d 7b04 ldr.w r7, [sp], #4 + 800443e: 4770 bx lr + 8004440: 20000da0 .word 0x20000da0 + 8004444: 20000dbc .word 0x20000dbc -080043cc : +08004448 : /*-----------------------------------------------------------*/ #if ( configUSE_MUTEXES == 1 ) BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder ) { - 80043cc: b580 push {r7, lr} - 80043ce: b086 sub sp, #24 - 80043d0: af00 add r7, sp, #0 - 80043d2: 6078 str r0, [r7, #4] + 8004448: b580 push {r7, lr} + 800444a: b086 sub sp, #24 + 800444c: af00 add r7, sp, #0 + 800444e: 6078 str r0, [r7, #4] TCB_t * const pxTCB = pxMutexHolder; - 80043d4: 687b ldr r3, [r7, #4] - 80043d6: 613b str r3, [r7, #16] + 8004450: 687b ldr r3, [r7, #4] + 8004452: 613b str r3, [r7, #16] BaseType_t xReturn = pdFALSE; - 80043d8: 2300 movs r3, #0 - 80043da: 617b str r3, [r7, #20] + 8004454: 2300 movs r3, #0 + 8004456: 617b str r3, [r7, #20] if( pxMutexHolder != NULL ) - 80043dc: 687b ldr r3, [r7, #4] - 80043de: 2b00 cmp r3, #0 - 80043e0: d056 beq.n 8004490 + 8004458: 687b ldr r3, [r7, #4] + 800445a: 2b00 cmp r3, #0 + 800445c: d056 beq.n 800450c { /* A task can only have an inherited priority if it holds the mutex. If the mutex is held by a task then it cannot be given from an interrupt, and if a mutex is given by the holding task then it must be the running state task. */ configASSERT( pxTCB == pxCurrentTCB ); - 80043e2: 4b2e ldr r3, [pc, #184] ; (800449c ) - 80043e4: 681b ldr r3, [r3, #0] - 80043e6: 693a ldr r2, [r7, #16] - 80043e8: 429a cmp r2, r3 - 80043ea: d00a beq.n 8004402 + 800445e: 4b2e ldr r3, [pc, #184] ; (8004518 ) + 8004460: 681b ldr r3, [r3, #0] + 8004462: 693a ldr r2, [r7, #16] + 8004464: 429a cmp r2, r3 + 8004466: d00a beq.n 800447e __asm volatile - 80043ec: f04f 0350 mov.w r3, #80 ; 0x50 - 80043f0: f383 8811 msr BASEPRI, r3 - 80043f4: f3bf 8f6f isb sy - 80043f8: f3bf 8f4f dsb sy - 80043fc: 60fb str r3, [r7, #12] + 8004468: f04f 0350 mov.w r3, #80 ; 0x50 + 800446c: f383 8811 msr BASEPRI, r3 + 8004470: f3bf 8f6f isb sy + 8004474: f3bf 8f4f dsb sy + 8004478: 60fb str r3, [r7, #12] } - 80043fe: bf00 nop - 8004400: e7fe b.n 8004400 + 800447a: bf00 nop + 800447c: e7fe b.n 800447c configASSERT( pxTCB->uxMutexesHeld ); - 8004402: 693b ldr r3, [r7, #16] - 8004404: 6d1b ldr r3, [r3, #80] ; 0x50 - 8004406: 2b00 cmp r3, #0 - 8004408: d10a bne.n 8004420 + 800447e: 693b ldr r3, [r7, #16] + 8004480: 6d1b ldr r3, [r3, #80] ; 0x50 + 8004482: 2b00 cmp r3, #0 + 8004484: d10a bne.n 800449c __asm volatile - 800440a: f04f 0350 mov.w r3, #80 ; 0x50 - 800440e: f383 8811 msr BASEPRI, r3 - 8004412: f3bf 8f6f isb sy - 8004416: f3bf 8f4f dsb sy - 800441a: 60bb str r3, [r7, #8] + 8004486: f04f 0350 mov.w r3, #80 ; 0x50 + 800448a: f383 8811 msr BASEPRI, r3 + 800448e: f3bf 8f6f isb sy + 8004492: f3bf 8f4f dsb sy + 8004496: 60bb str r3, [r7, #8] } - 800441c: bf00 nop - 800441e: e7fe b.n 800441e + 8004498: bf00 nop + 800449a: e7fe b.n 800449a ( pxTCB->uxMutexesHeld )--; - 8004420: 693b ldr r3, [r7, #16] - 8004422: 6d1b ldr r3, [r3, #80] ; 0x50 - 8004424: 1e5a subs r2, r3, #1 - 8004426: 693b ldr r3, [r7, #16] - 8004428: 651a str r2, [r3, #80] ; 0x50 + 800449c: 693b ldr r3, [r7, #16] + 800449e: 6d1b ldr r3, [r3, #80] ; 0x50 + 80044a0: 1e5a subs r2, r3, #1 + 80044a2: 693b ldr r3, [r7, #16] + 80044a4: 651a str r2, [r3, #80] ; 0x50 /* Has the holder of the mutex inherited the priority of another task? */ if( pxTCB->uxPriority != pxTCB->uxBasePriority ) - 800442a: 693b ldr r3, [r7, #16] - 800442c: 6ada ldr r2, [r3, #44] ; 0x2c - 800442e: 693b ldr r3, [r7, #16] - 8004430: 6cdb ldr r3, [r3, #76] ; 0x4c - 8004432: 429a cmp r2, r3 - 8004434: d02c beq.n 8004490 + 80044a6: 693b ldr r3, [r7, #16] + 80044a8: 6ada ldr r2, [r3, #44] ; 0x2c + 80044aa: 693b ldr r3, [r7, #16] + 80044ac: 6cdb ldr r3, [r3, #76] ; 0x4c + 80044ae: 429a cmp r2, r3 + 80044b0: d02c beq.n 800450c { /* Only disinherit if no other mutexes are held. */ if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 ) - 8004436: 693b ldr r3, [r7, #16] - 8004438: 6d1b ldr r3, [r3, #80] ; 0x50 - 800443a: 2b00 cmp r3, #0 - 800443c: d128 bne.n 8004490 + 80044b2: 693b ldr r3, [r7, #16] + 80044b4: 6d1b ldr r3, [r3, #80] ; 0x50 + 80044b6: 2b00 cmp r3, #0 + 80044b8: d128 bne.n 800450c /* A task can only have an inherited priority if it holds the mutex. If the mutex is held by a task then it cannot be given from an interrupt, and if a mutex is given by the holding task then it must be the running state task. Remove the holding task from the ready/delayed list. */ if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - 800443e: 693b ldr r3, [r7, #16] - 8004440: 3304 adds r3, #4 - 8004442: 4618 mov r0, r3 - 8004444: f7fe fc46 bl 8002cd4 + 80044ba: 693b ldr r3, [r7, #16] + 80044bc: 3304 adds r3, #4 + 80044be: 4618 mov r0, r3 + 80044c0: f7fe fc46 bl 8002d50 } /* Disinherit the priority before adding the task into the new ready list. */ traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority ); pxTCB->uxPriority = pxTCB->uxBasePriority; - 8004448: 693b ldr r3, [r7, #16] - 800444a: 6cda ldr r2, [r3, #76] ; 0x4c - 800444c: 693b ldr r3, [r7, #16] - 800444e: 62da str r2, [r3, #44] ; 0x2c + 80044c4: 693b ldr r3, [r7, #16] + 80044c6: 6cda ldr r2, [r3, #76] ; 0x4c + 80044c8: 693b ldr r3, [r7, #16] + 80044ca: 62da str r2, [r3, #44] ; 0x2c /* Reset the event list item value. It cannot be in use for any other purpose if this task is running, and it must be running to give back the mutex. */ listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 8004450: 693b ldr r3, [r7, #16] - 8004452: 6adb ldr r3, [r3, #44] ; 0x2c - 8004454: f1c3 0238 rsb r2, r3, #56 ; 0x38 - 8004458: 693b ldr r3, [r7, #16] - 800445a: 619a str r2, [r3, #24] + 80044cc: 693b ldr r3, [r7, #16] + 80044ce: 6adb ldr r3, [r3, #44] ; 0x2c + 80044d0: f1c3 0238 rsb r2, r3, #56 ; 0x38 + 80044d4: 693b ldr r3, [r7, #16] + 80044d6: 619a str r2, [r3, #24] prvAddTaskToReadyList( pxTCB ); - 800445c: 693b ldr r3, [r7, #16] - 800445e: 6ada ldr r2, [r3, #44] ; 0x2c - 8004460: 4b0f ldr r3, [pc, #60] ; (80044a0 ) - 8004462: 681b ldr r3, [r3, #0] - 8004464: 429a cmp r2, r3 - 8004466: d903 bls.n 8004470 - 8004468: 693b ldr r3, [r7, #16] - 800446a: 6adb ldr r3, [r3, #44] ; 0x2c - 800446c: 4a0c ldr r2, [pc, #48] ; (80044a0 ) - 800446e: 6013 str r3, [r2, #0] - 8004470: 693b ldr r3, [r7, #16] - 8004472: 6ada ldr r2, [r3, #44] ; 0x2c - 8004474: 4613 mov r3, r2 - 8004476: 009b lsls r3, r3, #2 - 8004478: 4413 add r3, r2 - 800447a: 009b lsls r3, r3, #2 - 800447c: 4a09 ldr r2, [pc, #36] ; (80044a4 ) - 800447e: 441a add r2, r3 - 8004480: 693b ldr r3, [r7, #16] - 8004482: 3304 adds r3, #4 - 8004484: 4619 mov r1, r3 - 8004486: 4610 mov r0, r2 - 8004488: f7fe fbc7 bl 8002c1a + 80044d8: 693b ldr r3, [r7, #16] + 80044da: 6ada ldr r2, [r3, #44] ; 0x2c + 80044dc: 4b0f ldr r3, [pc, #60] ; (800451c ) + 80044de: 681b ldr r3, [r3, #0] + 80044e0: 429a cmp r2, r3 + 80044e2: d903 bls.n 80044ec + 80044e4: 693b ldr r3, [r7, #16] + 80044e6: 6adb ldr r3, [r3, #44] ; 0x2c + 80044e8: 4a0c ldr r2, [pc, #48] ; (800451c ) + 80044ea: 6013 str r3, [r2, #0] + 80044ec: 693b ldr r3, [r7, #16] + 80044ee: 6ada ldr r2, [r3, #44] ; 0x2c + 80044f0: 4613 mov r3, r2 + 80044f2: 009b lsls r3, r3, #2 + 80044f4: 4413 add r3, r2 + 80044f6: 009b lsls r3, r3, #2 + 80044f8: 4a09 ldr r2, [pc, #36] ; (8004520 ) + 80044fa: 441a add r2, r3 + 80044fc: 693b ldr r3, [r7, #16] + 80044fe: 3304 adds r3, #4 + 8004500: 4619 mov r1, r3 + 8004502: 4610 mov r0, r2 + 8004504: f7fe fbc7 bl 8002c96 in an order different to that in which they were taken. If a context switch did not occur when the first mutex was returned, even if a task was waiting on it, then a context switch should occur when the last mutex is returned whether a task is waiting on it or not. */ xReturn = pdTRUE; - 800448c: 2301 movs r3, #1 - 800448e: 617b str r3, [r7, #20] + 8004508: 2301 movs r3, #1 + 800450a: 617b str r3, [r7, #20] else { mtCOVERAGE_TEST_MARKER(); } return xReturn; - 8004490: 697b ldr r3, [r7, #20] + 800450c: 697b ldr r3, [r7, #20] } - 8004492: 4618 mov r0, r3 - 8004494: 3718 adds r7, #24 - 8004496: 46bd mov sp, r7 - 8004498: bd80 pop {r7, pc} - 800449a: bf00 nop - 800449c: 200008c0 .word 0x200008c0 - 80044a0: 20000d9c .word 0x20000d9c - 80044a4: 200008c4 .word 0x200008c4 + 800450e: 4618 mov r0, r3 + 8004510: 3718 adds r7, #24 + 8004512: 46bd mov sp, r7 + 8004514: bd80 pop {r7, pc} + 8004516: bf00 nop + 8004518: 200008c0 .word 0x200008c0 + 800451c: 20000d9c .word 0x20000d9c + 8004520: 200008c4 .word 0x200008c4 -080044a8 : +08004524 : #endif /*-----------------------------------------------------------*/ static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) { - 80044a8: b580 push {r7, lr} - 80044aa: b084 sub sp, #16 - 80044ac: af00 add r7, sp, #0 - 80044ae: 6078 str r0, [r7, #4] - 80044b0: 6039 str r1, [r7, #0] + 8004524: b580 push {r7, lr} + 8004526: b084 sub sp, #16 + 8004528: af00 add r7, sp, #0 + 800452a: 6078 str r0, [r7, #4] + 800452c: 6039 str r1, [r7, #0] TickType_t xTimeToWake; const TickType_t xConstTickCount = xTickCount; - 80044b2: 4b21 ldr r3, [pc, #132] ; (8004538 ) - 80044b4: 681b ldr r3, [r3, #0] - 80044b6: 60fb str r3, [r7, #12] + 800452e: 4b21 ldr r3, [pc, #132] ; (80045b4 ) + 8004530: 681b ldr r3, [r3, #0] + 8004532: 60fb str r3, [r7, #12] } #endif /* Remove the task from the ready list before adding it to the blocked list as the same list item is used for both lists. */ if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) - 80044b8: 4b20 ldr r3, [pc, #128] ; (800453c ) - 80044ba: 681b ldr r3, [r3, #0] - 80044bc: 3304 adds r3, #4 - 80044be: 4618 mov r0, r3 - 80044c0: f7fe fc08 bl 8002cd4 + 8004534: 4b20 ldr r3, [pc, #128] ; (80045b8 ) + 8004536: 681b ldr r3, [r3, #0] + 8004538: 3304 adds r3, #4 + 800453a: 4618 mov r0, r3 + 800453c: f7fe fc08 bl 8002d50 mtCOVERAGE_TEST_MARKER(); } #if ( INCLUDE_vTaskSuspend == 1 ) { if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) ) - 80044c4: 687b ldr r3, [r7, #4] - 80044c6: f1b3 3fff cmp.w r3, #4294967295 - 80044ca: d10a bne.n 80044e2 - 80044cc: 683b ldr r3, [r7, #0] - 80044ce: 2b00 cmp r3, #0 - 80044d0: d007 beq.n 80044e2 + 8004540: 687b ldr r3, [r7, #4] + 8004542: f1b3 3fff cmp.w r3, #4294967295 + 8004546: d10a bne.n 800455e + 8004548: 683b ldr r3, [r7, #0] + 800454a: 2b00 cmp r3, #0 + 800454c: d007 beq.n 800455e { /* Add the task to the suspended task list instead of a delayed task list to ensure it is not woken by a timing event. It will block indefinitely. */ vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) ); - 80044d2: 4b1a ldr r3, [pc, #104] ; (800453c ) - 80044d4: 681b ldr r3, [r3, #0] - 80044d6: 3304 adds r3, #4 - 80044d8: 4619 mov r1, r3 - 80044da: 4819 ldr r0, [pc, #100] ; (8004540 ) - 80044dc: f7fe fb9d bl 8002c1a + 800454e: 4b1a ldr r3, [pc, #104] ; (80045b8 ) + 8004550: 681b ldr r3, [r3, #0] + 8004552: 3304 adds r3, #4 + 8004554: 4619 mov r1, r3 + 8004556: 4819 ldr r0, [pc, #100] ; (80045bc ) + 8004558: f7fe fb9d bl 8002c96 /* Avoid compiler warning when INCLUDE_vTaskSuspend is not 1. */ ( void ) xCanBlockIndefinitely; } #endif /* INCLUDE_vTaskSuspend */ } - 80044e0: e026 b.n 8004530 + 800455c: e026 b.n 80045ac xTimeToWake = xConstTickCount + xTicksToWait; - 80044e2: 68fa ldr r2, [r7, #12] - 80044e4: 687b ldr r3, [r7, #4] - 80044e6: 4413 add r3, r2 - 80044e8: 60bb str r3, [r7, #8] + 800455e: 68fa ldr r2, [r7, #12] + 8004560: 687b ldr r3, [r7, #4] + 8004562: 4413 add r3, r2 + 8004564: 60bb str r3, [r7, #8] listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake ); - 80044ea: 4b14 ldr r3, [pc, #80] ; (800453c ) - 80044ec: 681b ldr r3, [r3, #0] - 80044ee: 68ba ldr r2, [r7, #8] - 80044f0: 605a str r2, [r3, #4] + 8004566: 4b14 ldr r3, [pc, #80] ; (80045b8 ) + 8004568: 681b ldr r3, [r3, #0] + 800456a: 68ba ldr r2, [r7, #8] + 800456c: 605a str r2, [r3, #4] if( xTimeToWake < xConstTickCount ) - 80044f2: 68ba ldr r2, [r7, #8] - 80044f4: 68fb ldr r3, [r7, #12] - 80044f6: 429a cmp r2, r3 - 80044f8: d209 bcs.n 800450e + 800456e: 68ba ldr r2, [r7, #8] + 8004570: 68fb ldr r3, [r7, #12] + 8004572: 429a cmp r2, r3 + 8004574: d209 bcs.n 800458a vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - 80044fa: 4b12 ldr r3, [pc, #72] ; (8004544 ) - 80044fc: 681a ldr r2, [r3, #0] - 80044fe: 4b0f ldr r3, [pc, #60] ; (800453c ) - 8004500: 681b ldr r3, [r3, #0] - 8004502: 3304 adds r3, #4 - 8004504: 4619 mov r1, r3 - 8004506: 4610 mov r0, r2 - 8004508: f7fe fbab bl 8002c62 + 8004576: 4b12 ldr r3, [pc, #72] ; (80045c0 ) + 8004578: 681a ldr r2, [r3, #0] + 800457a: 4b0f ldr r3, [pc, #60] ; (80045b8 ) + 800457c: 681b ldr r3, [r3, #0] + 800457e: 3304 adds r3, #4 + 8004580: 4619 mov r1, r3 + 8004582: 4610 mov r0, r2 + 8004584: f7fe fbab bl 8002cde } - 800450c: e010 b.n 8004530 + 8004588: e010 b.n 80045ac vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) ); - 800450e: 4b0e ldr r3, [pc, #56] ; (8004548 ) - 8004510: 681a ldr r2, [r3, #0] - 8004512: 4b0a ldr r3, [pc, #40] ; (800453c ) - 8004514: 681b ldr r3, [r3, #0] - 8004516: 3304 adds r3, #4 - 8004518: 4619 mov r1, r3 - 800451a: 4610 mov r0, r2 - 800451c: f7fe fba1 bl 8002c62 + 800458a: 4b0e ldr r3, [pc, #56] ; (80045c4 ) + 800458c: 681a ldr r2, [r3, #0] + 800458e: 4b0a ldr r3, [pc, #40] ; (80045b8 ) + 8004590: 681b ldr r3, [r3, #0] + 8004592: 3304 adds r3, #4 + 8004594: 4619 mov r1, r3 + 8004596: 4610 mov r0, r2 + 8004598: f7fe fba1 bl 8002cde if( xTimeToWake < xNextTaskUnblockTime ) - 8004520: 4b0a ldr r3, [pc, #40] ; (800454c ) - 8004522: 681b ldr r3, [r3, #0] - 8004524: 68ba ldr r2, [r7, #8] - 8004526: 429a cmp r2, r3 - 8004528: d202 bcs.n 8004530 + 800459c: 4b0a ldr r3, [pc, #40] ; (80045c8 ) + 800459e: 681b ldr r3, [r3, #0] + 80045a0: 68ba ldr r2, [r7, #8] + 80045a2: 429a cmp r2, r3 + 80045a4: d202 bcs.n 80045ac xNextTaskUnblockTime = xTimeToWake; - 800452a: 4a08 ldr r2, [pc, #32] ; (800454c ) - 800452c: 68bb ldr r3, [r7, #8] - 800452e: 6013 str r3, [r2, #0] + 80045a6: 4a08 ldr r2, [pc, #32] ; (80045c8 ) + 80045a8: 68bb ldr r3, [r7, #8] + 80045aa: 6013 str r3, [r2, #0] } - 8004530: bf00 nop - 8004532: 3710 adds r7, #16 - 8004534: 46bd mov sp, r7 - 8004536: bd80 pop {r7, pc} - 8004538: 20000d98 .word 0x20000d98 - 800453c: 200008c0 .word 0x200008c0 - 8004540: 20000d80 .word 0x20000d80 - 8004544: 20000d50 .word 0x20000d50 - 8004548: 20000d4c .word 0x20000d4c - 800454c: 20000db4 .word 0x20000db4 + 80045ac: bf00 nop + 80045ae: 3710 adds r7, #16 + 80045b0: 46bd mov sp, r7 + 80045b2: bd80 pop {r7, pc} + 80045b4: 20000d98 .word 0x20000d98 + 80045b8: 200008c0 .word 0x200008c0 + 80045bc: 20000d80 .word 0x20000d80 + 80045c0: 20000d50 .word 0x20000d50 + 80045c4: 20000d4c .word 0x20000d4c + 80045c8: 20000db4 .word 0x20000db4 -08004550 : +080045cc : TimerCallbackFunction_t pxCallbackFunction, Timer_t *pxNewTimer ) PRIVILEGED_FUNCTION; /*-----------------------------------------------------------*/ BaseType_t xTimerCreateTimerTask( void ) { - 8004550: b580 push {r7, lr} - 8004552: b08a sub sp, #40 ; 0x28 - 8004554: af04 add r7, sp, #16 + 80045cc: b580 push {r7, lr} + 80045ce: b08a sub sp, #40 ; 0x28 + 80045d0: af04 add r7, sp, #16 BaseType_t xReturn = pdFAIL; - 8004556: 2300 movs r3, #0 - 8004558: 617b str r3, [r7, #20] + 80045d2: 2300 movs r3, #0 + 80045d4: 617b str r3, [r7, #20] /* This function is called when the scheduler is started if configUSE_TIMERS is set to 1. Check that the infrastructure used by the timer service task has been created/initialised. If timers have already been created then the initialisation will already have been performed. */ prvCheckForValidListAndQueue(); - 800455a: f000 fb07 bl 8004b6c + 80045d6: f000 fb07 bl 8004be8 if( xTimerQueue != NULL ) - 800455e: 4b1c ldr r3, [pc, #112] ; (80045d0 ) - 8004560: 681b ldr r3, [r3, #0] - 8004562: 2b00 cmp r3, #0 - 8004564: d021 beq.n 80045aa + 80045da: 4b1c ldr r3, [pc, #112] ; (800464c ) + 80045dc: 681b ldr r3, [r3, #0] + 80045de: 2b00 cmp r3, #0 + 80045e0: d021 beq.n 8004626 { #if( configSUPPORT_STATIC_ALLOCATION == 1 ) { StaticTask_t *pxTimerTaskTCBBuffer = NULL; - 8004566: 2300 movs r3, #0 - 8004568: 60fb str r3, [r7, #12] + 80045e2: 2300 movs r3, #0 + 80045e4: 60fb str r3, [r7, #12] StackType_t *pxTimerTaskStackBuffer = NULL; - 800456a: 2300 movs r3, #0 - 800456c: 60bb str r3, [r7, #8] + 80045e6: 2300 movs r3, #0 + 80045e8: 60bb str r3, [r7, #8] uint32_t ulTimerTaskStackSize; vApplicationGetTimerTaskMemory( &pxTimerTaskTCBBuffer, &pxTimerTaskStackBuffer, &ulTimerTaskStackSize ); - 800456e: 1d3a adds r2, r7, #4 - 8004570: f107 0108 add.w r1, r7, #8 - 8004574: f107 030c add.w r3, r7, #12 - 8004578: 4618 mov r0, r3 - 800457a: f7fe fb07 bl 8002b8c + 80045ea: 1d3a adds r2, r7, #4 + 80045ec: f107 0108 add.w r1, r7, #8 + 80045f0: f107 030c add.w r3, r7, #12 + 80045f4: 4618 mov r0, r3 + 80045f6: f7fe fb07 bl 8002c08 xTimerTaskHandle = xTaskCreateStatic( prvTimerTask, - 800457e: 6879 ldr r1, [r7, #4] - 8004580: 68bb ldr r3, [r7, #8] - 8004582: 68fa ldr r2, [r7, #12] - 8004584: 9202 str r2, [sp, #8] - 8004586: 9301 str r3, [sp, #4] - 8004588: 2302 movs r3, #2 - 800458a: 9300 str r3, [sp, #0] - 800458c: 2300 movs r3, #0 - 800458e: 460a mov r2, r1 - 8004590: 4910 ldr r1, [pc, #64] ; (80045d4 ) - 8004592: 4811 ldr r0, [pc, #68] ; (80045d8 ) - 8004594: f7ff f8b4 bl 8003700 - 8004598: 4603 mov r3, r0 - 800459a: 4a10 ldr r2, [pc, #64] ; (80045dc ) - 800459c: 6013 str r3, [r2, #0] + 80045fa: 6879 ldr r1, [r7, #4] + 80045fc: 68bb ldr r3, [r7, #8] + 80045fe: 68fa ldr r2, [r7, #12] + 8004600: 9202 str r2, [sp, #8] + 8004602: 9301 str r3, [sp, #4] + 8004604: 2302 movs r3, #2 + 8004606: 9300 str r3, [sp, #0] + 8004608: 2300 movs r3, #0 + 800460a: 460a mov r2, r1 + 800460c: 4910 ldr r1, [pc, #64] ; (8004650 ) + 800460e: 4811 ldr r0, [pc, #68] ; (8004654 ) + 8004610: f7ff f8b4 bl 800377c + 8004614: 4603 mov r3, r0 + 8004616: 4a10 ldr r2, [pc, #64] ; (8004658 ) + 8004618: 6013 str r3, [r2, #0] NULL, ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, pxTimerTaskStackBuffer, pxTimerTaskTCBBuffer ); if( xTimerTaskHandle != NULL ) - 800459e: 4b0f ldr r3, [pc, #60] ; (80045dc ) - 80045a0: 681b ldr r3, [r3, #0] - 80045a2: 2b00 cmp r3, #0 - 80045a4: d001 beq.n 80045aa + 800461a: 4b0f ldr r3, [pc, #60] ; (8004658 ) + 800461c: 681b ldr r3, [r3, #0] + 800461e: 2b00 cmp r3, #0 + 8004620: d001 beq.n 8004626 { xReturn = pdPASS; - 80045a6: 2301 movs r3, #1 - 80045a8: 617b str r3, [r7, #20] + 8004622: 2301 movs r3, #1 + 8004624: 617b str r3, [r7, #20] else { mtCOVERAGE_TEST_MARKER(); } configASSERT( xReturn ); - 80045aa: 697b ldr r3, [r7, #20] - 80045ac: 2b00 cmp r3, #0 - 80045ae: d10a bne.n 80045c6 + 8004626: 697b ldr r3, [r7, #20] + 8004628: 2b00 cmp r3, #0 + 800462a: d10a bne.n 8004642 __asm volatile - 80045b0: f04f 0350 mov.w r3, #80 ; 0x50 - 80045b4: f383 8811 msr BASEPRI, r3 - 80045b8: f3bf 8f6f isb sy - 80045bc: f3bf 8f4f dsb sy - 80045c0: 613b str r3, [r7, #16] + 800462c: f04f 0350 mov.w r3, #80 ; 0x50 + 8004630: f383 8811 msr BASEPRI, r3 + 8004634: f3bf 8f6f isb sy + 8004638: f3bf 8f4f dsb sy + 800463c: 613b str r3, [r7, #16] } - 80045c2: bf00 nop - 80045c4: e7fe b.n 80045c4 + 800463e: bf00 nop + 8004640: e7fe b.n 8004640 return xReturn; - 80045c6: 697b ldr r3, [r7, #20] + 8004642: 697b ldr r3, [r7, #20] } - 80045c8: 4618 mov r0, r3 - 80045ca: 3718 adds r7, #24 - 80045cc: 46bd mov sp, r7 - 80045ce: bd80 pop {r7, pc} - 80045d0: 20000df0 .word 0x20000df0 - 80045d4: 08005668 .word 0x08005668 - 80045d8: 08004715 .word 0x08004715 - 80045dc: 20000df4 .word 0x20000df4 + 8004644: 4618 mov r0, r3 + 8004646: 3718 adds r7, #24 + 8004648: 46bd mov sp, r7 + 800464a: bd80 pop {r7, pc} + 800464c: 20000df0 .word 0x20000df0 + 8004650: 080056e8 .word 0x080056e8 + 8004654: 08004791 .word 0x08004791 + 8004658: 20000df4 .word 0x20000df4 -080045e0 : +0800465c : } } /*-----------------------------------------------------------*/ BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait ) { - 80045e0: b580 push {r7, lr} - 80045e2: b08a sub sp, #40 ; 0x28 - 80045e4: af00 add r7, sp, #0 - 80045e6: 60f8 str r0, [r7, #12] - 80045e8: 60b9 str r1, [r7, #8] - 80045ea: 607a str r2, [r7, #4] - 80045ec: 603b str r3, [r7, #0] + 800465c: b580 push {r7, lr} + 800465e: b08a sub sp, #40 ; 0x28 + 8004660: af00 add r7, sp, #0 + 8004662: 60f8 str r0, [r7, #12] + 8004664: 60b9 str r1, [r7, #8] + 8004666: 607a str r2, [r7, #4] + 8004668: 603b str r3, [r7, #0] BaseType_t xReturn = pdFAIL; - 80045ee: 2300 movs r3, #0 - 80045f0: 627b str r3, [r7, #36] ; 0x24 + 800466a: 2300 movs r3, #0 + 800466c: 627b str r3, [r7, #36] ; 0x24 DaemonTaskMessage_t xMessage; configASSERT( xTimer ); - 80045f2: 68fb ldr r3, [r7, #12] - 80045f4: 2b00 cmp r3, #0 - 80045f6: d10a bne.n 800460e + 800466e: 68fb ldr r3, [r7, #12] + 8004670: 2b00 cmp r3, #0 + 8004672: d10a bne.n 800468a __asm volatile - 80045f8: f04f 0350 mov.w r3, #80 ; 0x50 - 80045fc: f383 8811 msr BASEPRI, r3 - 8004600: f3bf 8f6f isb sy - 8004604: f3bf 8f4f dsb sy - 8004608: 623b str r3, [r7, #32] + 8004674: f04f 0350 mov.w r3, #80 ; 0x50 + 8004678: f383 8811 msr BASEPRI, r3 + 800467c: f3bf 8f6f isb sy + 8004680: f3bf 8f4f dsb sy + 8004684: 623b str r3, [r7, #32] } - 800460a: bf00 nop - 800460c: e7fe b.n 800460c + 8004686: bf00 nop + 8004688: e7fe b.n 8004688 /* Send a message to the timer service task to perform a particular action on a particular timer definition. */ if( xTimerQueue != NULL ) - 800460e: 4b1a ldr r3, [pc, #104] ; (8004678 ) - 8004610: 681b ldr r3, [r3, #0] - 8004612: 2b00 cmp r3, #0 - 8004614: d02a beq.n 800466c + 800468a: 4b1a ldr r3, [pc, #104] ; (80046f4 ) + 800468c: 681b ldr r3, [r3, #0] + 800468e: 2b00 cmp r3, #0 + 8004690: d02a beq.n 80046e8 { /* Send a command to the timer service task to start the xTimer timer. */ xMessage.xMessageID = xCommandID; - 8004616: 68bb ldr r3, [r7, #8] - 8004618: 613b str r3, [r7, #16] + 8004692: 68bb ldr r3, [r7, #8] + 8004694: 613b str r3, [r7, #16] xMessage.u.xTimerParameters.xMessageValue = xOptionalValue; - 800461a: 687b ldr r3, [r7, #4] - 800461c: 617b str r3, [r7, #20] + 8004696: 687b ldr r3, [r7, #4] + 8004698: 617b str r3, [r7, #20] xMessage.u.xTimerParameters.pxTimer = xTimer; - 800461e: 68fb ldr r3, [r7, #12] - 8004620: 61bb str r3, [r7, #24] + 800469a: 68fb ldr r3, [r7, #12] + 800469c: 61bb str r3, [r7, #24] if( xCommandID < tmrFIRST_FROM_ISR_COMMAND ) - 8004622: 68bb ldr r3, [r7, #8] - 8004624: 2b05 cmp r3, #5 - 8004626: dc18 bgt.n 800465a + 800469e: 68bb ldr r3, [r7, #8] + 80046a0: 2b05 cmp r3, #5 + 80046a2: dc18 bgt.n 80046d6 { if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) - 8004628: f7ff feb2 bl 8004390 - 800462c: 4603 mov r3, r0 - 800462e: 2b02 cmp r3, #2 - 8004630: d109 bne.n 8004646 + 80046a4: f7ff feb2 bl 800440c + 80046a8: 4603 mov r3, r0 + 80046aa: 2b02 cmp r3, #2 + 80046ac: d109 bne.n 80046c2 { xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); - 8004632: 4b11 ldr r3, [pc, #68] ; (8004678 ) - 8004634: 6818 ldr r0, [r3, #0] - 8004636: f107 0110 add.w r1, r7, #16 - 800463a: 2300 movs r3, #0 - 800463c: 6b3a ldr r2, [r7, #48] ; 0x30 - 800463e: f7fe fc77 bl 8002f30 - 8004642: 6278 str r0, [r7, #36] ; 0x24 - 8004644: e012 b.n 800466c + 80046ae: 4b11 ldr r3, [pc, #68] ; (80046f4 ) + 80046b0: 6818 ldr r0, [r3, #0] + 80046b2: f107 0110 add.w r1, r7, #16 + 80046b6: 2300 movs r3, #0 + 80046b8: 6b3a ldr r2, [r7, #48] ; 0x30 + 80046ba: f7fe fc77 bl 8002fac + 80046be: 6278 str r0, [r7, #36] ; 0x24 + 80046c0: e012 b.n 80046e8 } else { xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); - 8004646: 4b0c ldr r3, [pc, #48] ; (8004678 ) - 8004648: 6818 ldr r0, [r3, #0] - 800464a: f107 0110 add.w r1, r7, #16 - 800464e: 2300 movs r3, #0 - 8004650: 2200 movs r2, #0 - 8004652: f7fe fc6d bl 8002f30 - 8004656: 6278 str r0, [r7, #36] ; 0x24 - 8004658: e008 b.n 800466c + 80046c2: 4b0c ldr r3, [pc, #48] ; (80046f4 ) + 80046c4: 6818 ldr r0, [r3, #0] + 80046c6: f107 0110 add.w r1, r7, #16 + 80046ca: 2300 movs r3, #0 + 80046cc: 2200 movs r2, #0 + 80046ce: f7fe fc6d bl 8002fac + 80046d2: 6278 str r0, [r7, #36] ; 0x24 + 80046d4: e008 b.n 80046e8 } } else { xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); - 800465a: 4b07 ldr r3, [pc, #28] ; (8004678 ) - 800465c: 6818 ldr r0, [r3, #0] - 800465e: f107 0110 add.w r1, r7, #16 - 8004662: 2300 movs r3, #0 - 8004664: 683a ldr r2, [r7, #0] - 8004666: f7fe fd61 bl 800312c - 800466a: 6278 str r0, [r7, #36] ; 0x24 + 80046d6: 4b07 ldr r3, [pc, #28] ; (80046f4 ) + 80046d8: 6818 ldr r0, [r3, #0] + 80046da: f107 0110 add.w r1, r7, #16 + 80046de: 2300 movs r3, #0 + 80046e0: 683a ldr r2, [r7, #0] + 80046e2: f7fe fd61 bl 80031a8 + 80046e6: 6278 str r0, [r7, #36] ; 0x24 else { mtCOVERAGE_TEST_MARKER(); } return xReturn; - 800466c: 6a7b ldr r3, [r7, #36] ; 0x24 + 80046e8: 6a7b ldr r3, [r7, #36] ; 0x24 } - 800466e: 4618 mov r0, r3 - 8004670: 3728 adds r7, #40 ; 0x28 - 8004672: 46bd mov sp, r7 - 8004674: bd80 pop {r7, pc} - 8004676: bf00 nop - 8004678: 20000df0 .word 0x20000df0 + 80046ea: 4618 mov r0, r3 + 80046ec: 3728 adds r7, #40 ; 0x28 + 80046ee: 46bd mov sp, r7 + 80046f0: bd80 pop {r7, pc} + 80046f2: bf00 nop + 80046f4: 20000df0 .word 0x20000df0 -0800467c : +080046f8 : return pxTimer->pcTimerName; } /*-----------------------------------------------------------*/ static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) { - 800467c: b580 push {r7, lr} - 800467e: b088 sub sp, #32 - 8004680: af02 add r7, sp, #8 - 8004682: 6078 str r0, [r7, #4] - 8004684: 6039 str r1, [r7, #0] + 80046f8: b580 push {r7, lr} + 80046fa: b088 sub sp, #32 + 80046fc: af02 add r7, sp, #8 + 80046fe: 6078 str r0, [r7, #4] + 8004700: 6039 str r1, [r7, #0] BaseType_t xResult; Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004686: 4b22 ldr r3, [pc, #136] ; (8004710 ) - 8004688: 681b ldr r3, [r3, #0] - 800468a: 68db ldr r3, [r3, #12] - 800468c: 68db ldr r3, [r3, #12] - 800468e: 617b str r3, [r7, #20] + 8004702: 4b22 ldr r3, [pc, #136] ; (800478c ) + 8004704: 681b ldr r3, [r3, #0] + 8004706: 68db ldr r3, [r3, #12] + 8004708: 68db ldr r3, [r3, #12] + 800470a: 617b str r3, [r7, #20] /* Remove the timer from the list of active timers. A check has already been performed to ensure the list is not empty. */ ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - 8004690: 697b ldr r3, [r7, #20] - 8004692: 3304 adds r3, #4 - 8004694: 4618 mov r0, r3 - 8004696: f7fe fb1d bl 8002cd4 + 800470c: 697b ldr r3, [r7, #20] + 800470e: 3304 adds r3, #4 + 8004710: 4618 mov r0, r3 + 8004712: f7fe fb1d bl 8002d50 traceTIMER_EXPIRED( pxTimer ); /* If the timer is an auto-reload timer then calculate the next expiry time and re-insert the timer in the list of active timers. */ if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - 800469a: 697b ldr r3, [r7, #20] - 800469c: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80046a0: f003 0304 and.w r3, r3, #4 - 80046a4: 2b00 cmp r3, #0 - 80046a6: d022 beq.n 80046ee + 8004716: 697b ldr r3, [r7, #20] + 8004718: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 800471c: f003 0304 and.w r3, r3, #4 + 8004720: 2b00 cmp r3, #0 + 8004722: d022 beq.n 800476a { /* The timer is inserted into a list using a time relative to anything other than the current time. It will therefore be inserted into the correct list relative to the time this task thinks it is now. */ if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) - 80046a8: 697b ldr r3, [r7, #20] - 80046aa: 699a ldr r2, [r3, #24] - 80046ac: 687b ldr r3, [r7, #4] - 80046ae: 18d1 adds r1, r2, r3 - 80046b0: 687b ldr r3, [r7, #4] - 80046b2: 683a ldr r2, [r7, #0] - 80046b4: 6978 ldr r0, [r7, #20] - 80046b6: f000 f8d1 bl 800485c - 80046ba: 4603 mov r3, r0 - 80046bc: 2b00 cmp r3, #0 - 80046be: d01f beq.n 8004700 + 8004724: 697b ldr r3, [r7, #20] + 8004726: 699a ldr r2, [r3, #24] + 8004728: 687b ldr r3, [r7, #4] + 800472a: 18d1 adds r1, r2, r3 + 800472c: 687b ldr r3, [r7, #4] + 800472e: 683a ldr r2, [r7, #0] + 8004730: 6978 ldr r0, [r7, #20] + 8004732: f000 f8d1 bl 80048d8 + 8004736: 4603 mov r3, r0 + 8004738: 2b00 cmp r3, #0 + 800473a: d01f beq.n 800477c { /* The timer expired before it was added to the active timer list. Reload it now. */ xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); - 80046c0: 2300 movs r3, #0 - 80046c2: 9300 str r3, [sp, #0] - 80046c4: 2300 movs r3, #0 - 80046c6: 687a ldr r2, [r7, #4] - 80046c8: 2100 movs r1, #0 - 80046ca: 6978 ldr r0, [r7, #20] - 80046cc: f7ff ff88 bl 80045e0 - 80046d0: 6138 str r0, [r7, #16] + 800473c: 2300 movs r3, #0 + 800473e: 9300 str r3, [sp, #0] + 8004740: 2300 movs r3, #0 + 8004742: 687a ldr r2, [r7, #4] + 8004744: 2100 movs r1, #0 + 8004746: 6978 ldr r0, [r7, #20] + 8004748: f7ff ff88 bl 800465c + 800474c: 6138 str r0, [r7, #16] configASSERT( xResult ); - 80046d2: 693b ldr r3, [r7, #16] - 80046d4: 2b00 cmp r3, #0 - 80046d6: d113 bne.n 8004700 + 800474e: 693b ldr r3, [r7, #16] + 8004750: 2b00 cmp r3, #0 + 8004752: d113 bne.n 800477c __asm volatile - 80046d8: f04f 0350 mov.w r3, #80 ; 0x50 - 80046dc: f383 8811 msr BASEPRI, r3 - 80046e0: f3bf 8f6f isb sy - 80046e4: f3bf 8f4f dsb sy - 80046e8: 60fb str r3, [r7, #12] + 8004754: f04f 0350 mov.w r3, #80 ; 0x50 + 8004758: f383 8811 msr BASEPRI, r3 + 800475c: f3bf 8f6f isb sy + 8004760: f3bf 8f4f dsb sy + 8004764: 60fb str r3, [r7, #12] } - 80046ea: bf00 nop - 80046ec: e7fe b.n 80046ec + 8004766: bf00 nop + 8004768: e7fe b.n 8004768 mtCOVERAGE_TEST_MARKER(); } } else { pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - 80046ee: 697b ldr r3, [r7, #20] - 80046f0: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80046f4: f023 0301 bic.w r3, r3, #1 - 80046f8: b2da uxtb r2, r3 - 80046fa: 697b ldr r3, [r7, #20] - 80046fc: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 800476a: 697b ldr r3, [r7, #20] + 800476c: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004770: f023 0301 bic.w r3, r3, #1 + 8004774: b2da uxtb r2, r3 + 8004776: 697b ldr r3, [r7, #20] + 8004778: f883 2028 strb.w r2, [r3, #40] ; 0x28 mtCOVERAGE_TEST_MARKER(); } /* Call the timer callback. */ pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - 8004700: 697b ldr r3, [r7, #20] - 8004702: 6a1b ldr r3, [r3, #32] - 8004704: 6978 ldr r0, [r7, #20] - 8004706: 4798 blx r3 + 800477c: 697b ldr r3, [r7, #20] + 800477e: 6a1b ldr r3, [r3, #32] + 8004780: 6978 ldr r0, [r7, #20] + 8004782: 4798 blx r3 } - 8004708: bf00 nop - 800470a: 3718 adds r7, #24 - 800470c: 46bd mov sp, r7 - 800470e: bd80 pop {r7, pc} - 8004710: 20000de8 .word 0x20000de8 + 8004784: bf00 nop + 8004786: 3718 adds r7, #24 + 8004788: 46bd mov sp, r7 + 800478a: bd80 pop {r7, pc} + 800478c: 20000de8 .word 0x20000de8 -08004714 : +08004790 : /*-----------------------------------------------------------*/ static portTASK_FUNCTION( prvTimerTask, pvParameters ) { - 8004714: b580 push {r7, lr} - 8004716: b084 sub sp, #16 - 8004718: af00 add r7, sp, #0 - 800471a: 6078 str r0, [r7, #4] + 8004790: b580 push {r7, lr} + 8004792: b084 sub sp, #16 + 8004794: af00 add r7, sp, #0 + 8004796: 6078 str r0, [r7, #4] for( ;; ) { /* Query the timers list to see if it contains any timers, and if so, obtain the time at which the next timer will expire. */ xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); - 800471c: f107 0308 add.w r3, r7, #8 - 8004720: 4618 mov r0, r3 - 8004722: f000 f857 bl 80047d4 - 8004726: 60f8 str r0, [r7, #12] + 8004798: f107 0308 add.w r3, r7, #8 + 800479c: 4618 mov r0, r3 + 800479e: f000 f857 bl 8004850 + 80047a2: 60f8 str r0, [r7, #12] /* If a timer has expired, process it. Otherwise, block this task until either a timer does expire, or a command is received. */ prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty ); - 8004728: 68bb ldr r3, [r7, #8] - 800472a: 4619 mov r1, r3 - 800472c: 68f8 ldr r0, [r7, #12] - 800472e: f000 f803 bl 8004738 + 80047a4: 68bb ldr r3, [r7, #8] + 80047a6: 4619 mov r1, r3 + 80047a8: 68f8 ldr r0, [r7, #12] + 80047aa: f000 f803 bl 80047b4 /* Empty the command queue. */ prvProcessReceivedCommands(); - 8004732: f000 f8d5 bl 80048e0 + 80047ae: f000 f8d5 bl 800495c xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty ); - 8004736: e7f1 b.n 800471c + 80047b2: e7f1 b.n 8004798 -08004738 : +080047b4 : } } /*-----------------------------------------------------------*/ static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, BaseType_t xListWasEmpty ) { - 8004738: b580 push {r7, lr} - 800473a: b084 sub sp, #16 - 800473c: af00 add r7, sp, #0 - 800473e: 6078 str r0, [r7, #4] - 8004740: 6039 str r1, [r7, #0] + 80047b4: b580 push {r7, lr} + 80047b6: b084 sub sp, #16 + 80047b8: af00 add r7, sp, #0 + 80047ba: 6078 str r0, [r7, #4] + 80047bc: 6039 str r1, [r7, #0] TickType_t xTimeNow; BaseType_t xTimerListsWereSwitched; vTaskSuspendAll(); - 8004742: f7ff fa39 bl 8003bb8 + 80047be: f7ff fa39 bl 8003c34 /* Obtain the time now to make an assessment as to whether the timer has expired or not. If obtaining the time causes the lists to switch then don't process this timer as any timers that remained in the list when the lists were switched will have been processed within the prvSampleTimeNow() function. */ xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); - 8004746: f107 0308 add.w r3, r7, #8 - 800474a: 4618 mov r0, r3 - 800474c: f000 f866 bl 800481c - 8004750: 60f8 str r0, [r7, #12] + 80047c2: f107 0308 add.w r3, r7, #8 + 80047c6: 4618 mov r0, r3 + 80047c8: f000 f866 bl 8004898 + 80047cc: 60f8 str r0, [r7, #12] if( xTimerListsWereSwitched == pdFALSE ) - 8004752: 68bb ldr r3, [r7, #8] - 8004754: 2b00 cmp r3, #0 - 8004756: d130 bne.n 80047ba + 80047ce: 68bb ldr r3, [r7, #8] + 80047d0: 2b00 cmp r3, #0 + 80047d2: d130 bne.n 8004836 { /* The tick count has not overflowed, has the timer expired? */ if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) - 8004758: 683b ldr r3, [r7, #0] - 800475a: 2b00 cmp r3, #0 - 800475c: d10a bne.n 8004774 - 800475e: 687a ldr r2, [r7, #4] - 8004760: 68fb ldr r3, [r7, #12] - 8004762: 429a cmp r2, r3 - 8004764: d806 bhi.n 8004774 + 80047d4: 683b ldr r3, [r7, #0] + 80047d6: 2b00 cmp r3, #0 + 80047d8: d10a bne.n 80047f0 + 80047da: 687a ldr r2, [r7, #4] + 80047dc: 68fb ldr r3, [r7, #12] + 80047de: 429a cmp r2, r3 + 80047e0: d806 bhi.n 80047f0 { ( void ) xTaskResumeAll(); - 8004766: f7ff fa35 bl 8003bd4 + 80047e2: f7ff fa35 bl 8003c50 prvProcessExpiredTimer( xNextExpireTime, xTimeNow ); - 800476a: 68f9 ldr r1, [r7, #12] - 800476c: 6878 ldr r0, [r7, #4] - 800476e: f7ff ff85 bl 800467c + 80047e6: 68f9 ldr r1, [r7, #12] + 80047e8: 6878 ldr r0, [r7, #4] + 80047ea: f7ff ff85 bl 80046f8 else { ( void ) xTaskResumeAll(); } } } - 8004772: e024 b.n 80047be + 80047ee: e024 b.n 800483a if( xListWasEmpty != pdFALSE ) - 8004774: 683b ldr r3, [r7, #0] - 8004776: 2b00 cmp r3, #0 - 8004778: d008 beq.n 800478c + 80047f0: 683b ldr r3, [r7, #0] + 80047f2: 2b00 cmp r3, #0 + 80047f4: d008 beq.n 8004808 xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); - 800477a: 4b13 ldr r3, [pc, #76] ; (80047c8 ) - 800477c: 681b ldr r3, [r3, #0] - 800477e: 681b ldr r3, [r3, #0] - 8004780: 2b00 cmp r3, #0 - 8004782: d101 bne.n 8004788 - 8004784: 2301 movs r3, #1 - 8004786: e000 b.n 800478a - 8004788: 2300 movs r3, #0 - 800478a: 603b str r3, [r7, #0] + 80047f6: 4b13 ldr r3, [pc, #76] ; (8004844 ) + 80047f8: 681b ldr r3, [r3, #0] + 80047fa: 681b ldr r3, [r3, #0] + 80047fc: 2b00 cmp r3, #0 + 80047fe: d101 bne.n 8004804 + 8004800: 2301 movs r3, #1 + 8004802: e000 b.n 8004806 + 8004804: 2300 movs r3, #0 + 8004806: 603b str r3, [r7, #0] vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); - 800478c: 4b0f ldr r3, [pc, #60] ; (80047cc ) - 800478e: 6818 ldr r0, [r3, #0] - 8004790: 687a ldr r2, [r7, #4] - 8004792: 68fb ldr r3, [r7, #12] - 8004794: 1ad3 subs r3, r2, r3 - 8004796: 683a ldr r2, [r7, #0] - 8004798: 4619 mov r1, r3 - 800479a: f7fe ff7d bl 8003698 + 8004808: 4b0f ldr r3, [pc, #60] ; (8004848 ) + 800480a: 6818 ldr r0, [r3, #0] + 800480c: 687a ldr r2, [r7, #4] + 800480e: 68fb ldr r3, [r7, #12] + 8004810: 1ad3 subs r3, r2, r3 + 8004812: 683a ldr r2, [r7, #0] + 8004814: 4619 mov r1, r3 + 8004816: f7fe ff7d bl 8003714 if( xTaskResumeAll() == pdFALSE ) - 800479e: f7ff fa19 bl 8003bd4 - 80047a2: 4603 mov r3, r0 - 80047a4: 2b00 cmp r3, #0 - 80047a6: d10a bne.n 80047be + 800481a: f7ff fa19 bl 8003c50 + 800481e: 4603 mov r3, r0 + 8004820: 2b00 cmp r3, #0 + 8004822: d10a bne.n 800483a portYIELD_WITHIN_API(); - 80047a8: 4b09 ldr r3, [pc, #36] ; (80047d0 ) - 80047aa: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 80047ae: 601a str r2, [r3, #0] - 80047b0: f3bf 8f4f dsb sy - 80047b4: f3bf 8f6f isb sy + 8004824: 4b09 ldr r3, [pc, #36] ; (800484c ) + 8004826: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 800482a: 601a str r2, [r3, #0] + 800482c: f3bf 8f4f dsb sy + 8004830: f3bf 8f6f isb sy } - 80047b8: e001 b.n 80047be + 8004834: e001 b.n 800483a ( void ) xTaskResumeAll(); - 80047ba: f7ff fa0b bl 8003bd4 + 8004836: f7ff fa0b bl 8003c50 } - 80047be: bf00 nop - 80047c0: 3710 adds r7, #16 - 80047c2: 46bd mov sp, r7 - 80047c4: bd80 pop {r7, pc} - 80047c6: bf00 nop - 80047c8: 20000dec .word 0x20000dec - 80047cc: 20000df0 .word 0x20000df0 - 80047d0: e000ed04 .word 0xe000ed04 + 800483a: bf00 nop + 800483c: 3710 adds r7, #16 + 800483e: 46bd mov sp, r7 + 8004840: bd80 pop {r7, pc} + 8004842: bf00 nop + 8004844: 20000dec .word 0x20000dec + 8004848: 20000df0 .word 0x20000df0 + 800484c: e000ed04 .word 0xe000ed04 -080047d4 : +08004850 : /*-----------------------------------------------------------*/ static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) { - 80047d4: b480 push {r7} - 80047d6: b085 sub sp, #20 - 80047d8: af00 add r7, sp, #0 - 80047da: 6078 str r0, [r7, #4] + 8004850: b480 push {r7} + 8004852: b085 sub sp, #20 + 8004854: af00 add r7, sp, #0 + 8004856: 6078 str r0, [r7, #4] the timer with the nearest expiry time will expire. If there are no active timers then just set the next expire time to 0. That will cause this task to unblock when the tick count overflows, at which point the timer lists will be switched and the next expiry time can be re-assessed. */ *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); - 80047dc: 4b0e ldr r3, [pc, #56] ; (8004818 ) - 80047de: 681b ldr r3, [r3, #0] - 80047e0: 681b ldr r3, [r3, #0] - 80047e2: 2b00 cmp r3, #0 - 80047e4: d101 bne.n 80047ea - 80047e6: 2201 movs r2, #1 - 80047e8: e000 b.n 80047ec - 80047ea: 2200 movs r2, #0 - 80047ec: 687b ldr r3, [r7, #4] - 80047ee: 601a str r2, [r3, #0] + 8004858: 4b0e ldr r3, [pc, #56] ; (8004894 ) + 800485a: 681b ldr r3, [r3, #0] + 800485c: 681b ldr r3, [r3, #0] + 800485e: 2b00 cmp r3, #0 + 8004860: d101 bne.n 8004866 + 8004862: 2201 movs r2, #1 + 8004864: e000 b.n 8004868 + 8004866: 2200 movs r2, #0 + 8004868: 687b ldr r3, [r7, #4] + 800486a: 601a str r2, [r3, #0] if( *pxListWasEmpty == pdFALSE ) - 80047f0: 687b ldr r3, [r7, #4] - 80047f2: 681b ldr r3, [r3, #0] - 80047f4: 2b00 cmp r3, #0 - 80047f6: d105 bne.n 8004804 + 800486c: 687b ldr r3, [r7, #4] + 800486e: 681b ldr r3, [r3, #0] + 8004870: 2b00 cmp r3, #0 + 8004872: d105 bne.n 8004880 { xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); - 80047f8: 4b07 ldr r3, [pc, #28] ; (8004818 ) - 80047fa: 681b ldr r3, [r3, #0] - 80047fc: 68db ldr r3, [r3, #12] - 80047fe: 681b ldr r3, [r3, #0] - 8004800: 60fb str r3, [r7, #12] - 8004802: e001 b.n 8004808 + 8004874: 4b07 ldr r3, [pc, #28] ; (8004894 ) + 8004876: 681b ldr r3, [r3, #0] + 8004878: 68db ldr r3, [r3, #12] + 800487a: 681b ldr r3, [r3, #0] + 800487c: 60fb str r3, [r7, #12] + 800487e: e001 b.n 8004884 } else { /* Ensure the task unblocks when the tick count rolls over. */ xNextExpireTime = ( TickType_t ) 0U; - 8004804: 2300 movs r3, #0 - 8004806: 60fb str r3, [r7, #12] + 8004880: 2300 movs r3, #0 + 8004882: 60fb str r3, [r7, #12] } return xNextExpireTime; - 8004808: 68fb ldr r3, [r7, #12] + 8004884: 68fb ldr r3, [r7, #12] } - 800480a: 4618 mov r0, r3 - 800480c: 3714 adds r7, #20 - 800480e: 46bd mov sp, r7 - 8004810: f85d 7b04 ldr.w r7, [sp], #4 - 8004814: 4770 bx lr - 8004816: bf00 nop - 8004818: 20000de8 .word 0x20000de8 + 8004886: 4618 mov r0, r3 + 8004888: 3714 adds r7, #20 + 800488a: 46bd mov sp, r7 + 800488c: f85d 7b04 ldr.w r7, [sp], #4 + 8004890: 4770 bx lr + 8004892: bf00 nop + 8004894: 20000de8 .word 0x20000de8 -0800481c : +08004898 : /*-----------------------------------------------------------*/ static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) { - 800481c: b580 push {r7, lr} - 800481e: b084 sub sp, #16 - 8004820: af00 add r7, sp, #0 - 8004822: 6078 str r0, [r7, #4] + 8004898: b580 push {r7, lr} + 800489a: b084 sub sp, #16 + 800489c: af00 add r7, sp, #0 + 800489e: 6078 str r0, [r7, #4] TickType_t xTimeNow; PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */ xTimeNow = xTaskGetTickCount(); - 8004824: f7ff fa74 bl 8003d10 - 8004828: 60f8 str r0, [r7, #12] + 80048a0: f7ff fa74 bl 8003d8c + 80048a4: 60f8 str r0, [r7, #12] if( xTimeNow < xLastTime ) - 800482a: 4b0b ldr r3, [pc, #44] ; (8004858 ) - 800482c: 681b ldr r3, [r3, #0] - 800482e: 68fa ldr r2, [r7, #12] - 8004830: 429a cmp r2, r3 - 8004832: d205 bcs.n 8004840 + 80048a6: 4b0b ldr r3, [pc, #44] ; (80048d4 ) + 80048a8: 681b ldr r3, [r3, #0] + 80048aa: 68fa ldr r2, [r7, #12] + 80048ac: 429a cmp r2, r3 + 80048ae: d205 bcs.n 80048bc { prvSwitchTimerLists(); - 8004834: f000 f936 bl 8004aa4 + 80048b0: f000 f936 bl 8004b20 *pxTimerListsWereSwitched = pdTRUE; - 8004838: 687b ldr r3, [r7, #4] - 800483a: 2201 movs r2, #1 - 800483c: 601a str r2, [r3, #0] - 800483e: e002 b.n 8004846 + 80048b4: 687b ldr r3, [r7, #4] + 80048b6: 2201 movs r2, #1 + 80048b8: 601a str r2, [r3, #0] + 80048ba: e002 b.n 80048c2 } else { *pxTimerListsWereSwitched = pdFALSE; - 8004840: 687b ldr r3, [r7, #4] - 8004842: 2200 movs r2, #0 - 8004844: 601a str r2, [r3, #0] + 80048bc: 687b ldr r3, [r7, #4] + 80048be: 2200 movs r2, #0 + 80048c0: 601a str r2, [r3, #0] } xLastTime = xTimeNow; - 8004846: 4a04 ldr r2, [pc, #16] ; (8004858 ) - 8004848: 68fb ldr r3, [r7, #12] - 800484a: 6013 str r3, [r2, #0] + 80048c2: 4a04 ldr r2, [pc, #16] ; (80048d4 ) + 80048c4: 68fb ldr r3, [r7, #12] + 80048c6: 6013 str r3, [r2, #0] return xTimeNow; - 800484c: 68fb ldr r3, [r7, #12] + 80048c8: 68fb ldr r3, [r7, #12] } - 800484e: 4618 mov r0, r3 - 8004850: 3710 adds r7, #16 - 8004852: 46bd mov sp, r7 - 8004854: bd80 pop {r7, pc} - 8004856: bf00 nop - 8004858: 20000df8 .word 0x20000df8 + 80048ca: 4618 mov r0, r3 + 80048cc: 3710 adds r7, #16 + 80048ce: 46bd mov sp, r7 + 80048d0: bd80 pop {r7, pc} + 80048d2: bf00 nop + 80048d4: 20000df8 .word 0x20000df8 -0800485c : +080048d8 : /*-----------------------------------------------------------*/ static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) { - 800485c: b580 push {r7, lr} - 800485e: b086 sub sp, #24 - 8004860: af00 add r7, sp, #0 - 8004862: 60f8 str r0, [r7, #12] - 8004864: 60b9 str r1, [r7, #8] - 8004866: 607a str r2, [r7, #4] - 8004868: 603b str r3, [r7, #0] + 80048d8: b580 push {r7, lr} + 80048da: b086 sub sp, #24 + 80048dc: af00 add r7, sp, #0 + 80048de: 60f8 str r0, [r7, #12] + 80048e0: 60b9 str r1, [r7, #8] + 80048e2: 607a str r2, [r7, #4] + 80048e4: 603b str r3, [r7, #0] BaseType_t xProcessTimerNow = pdFALSE; - 800486a: 2300 movs r3, #0 - 800486c: 617b str r3, [r7, #20] + 80048e6: 2300 movs r3, #0 + 80048e8: 617b str r3, [r7, #20] listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime ); - 800486e: 68fb ldr r3, [r7, #12] - 8004870: 68ba ldr r2, [r7, #8] - 8004872: 605a str r2, [r3, #4] + 80048ea: 68fb ldr r3, [r7, #12] + 80048ec: 68ba ldr r2, [r7, #8] + 80048ee: 605a str r2, [r3, #4] listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); - 8004874: 68fb ldr r3, [r7, #12] - 8004876: 68fa ldr r2, [r7, #12] - 8004878: 611a str r2, [r3, #16] + 80048f0: 68fb ldr r3, [r7, #12] + 80048f2: 68fa ldr r2, [r7, #12] + 80048f4: 611a str r2, [r3, #16] if( xNextExpiryTime <= xTimeNow ) - 800487a: 68ba ldr r2, [r7, #8] - 800487c: 687b ldr r3, [r7, #4] - 800487e: 429a cmp r2, r3 - 8004880: d812 bhi.n 80048a8 + 80048f6: 68ba ldr r2, [r7, #8] + 80048f8: 687b ldr r3, [r7, #4] + 80048fa: 429a cmp r2, r3 + 80048fc: d812 bhi.n 8004924 { /* Has the expiry time elapsed between the command to start/reset a timer was issued, and the time the command was processed? */ if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 MISRA exception as the casts are only redundant for some ports. */ - 8004882: 687a ldr r2, [r7, #4] - 8004884: 683b ldr r3, [r7, #0] - 8004886: 1ad2 subs r2, r2, r3 - 8004888: 68fb ldr r3, [r7, #12] - 800488a: 699b ldr r3, [r3, #24] - 800488c: 429a cmp r2, r3 - 800488e: d302 bcc.n 8004896 + 80048fe: 687a ldr r2, [r7, #4] + 8004900: 683b ldr r3, [r7, #0] + 8004902: 1ad2 subs r2, r2, r3 + 8004904: 68fb ldr r3, [r7, #12] + 8004906: 699b ldr r3, [r3, #24] + 8004908: 429a cmp r2, r3 + 800490a: d302 bcc.n 8004912 { /* The time between a command being issued and the command being processed actually exceeds the timers period. */ xProcessTimerNow = pdTRUE; - 8004890: 2301 movs r3, #1 - 8004892: 617b str r3, [r7, #20] - 8004894: e01b b.n 80048ce + 800490c: 2301 movs r3, #1 + 800490e: 617b str r3, [r7, #20] + 8004910: e01b b.n 800494a } else { vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) ); - 8004896: 4b10 ldr r3, [pc, #64] ; (80048d8 ) - 8004898: 681a ldr r2, [r3, #0] - 800489a: 68fb ldr r3, [r7, #12] - 800489c: 3304 adds r3, #4 - 800489e: 4619 mov r1, r3 - 80048a0: 4610 mov r0, r2 - 80048a2: f7fe f9de bl 8002c62 - 80048a6: e012 b.n 80048ce + 8004912: 4b10 ldr r3, [pc, #64] ; (8004954 ) + 8004914: 681a ldr r2, [r3, #0] + 8004916: 68fb ldr r3, [r7, #12] + 8004918: 3304 adds r3, #4 + 800491a: 4619 mov r1, r3 + 800491c: 4610 mov r0, r2 + 800491e: f7fe f9de bl 8002cde + 8004922: e012 b.n 800494a } } else { if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) ) - 80048a8: 687a ldr r2, [r7, #4] - 80048aa: 683b ldr r3, [r7, #0] - 80048ac: 429a cmp r2, r3 - 80048ae: d206 bcs.n 80048be - 80048b0: 68ba ldr r2, [r7, #8] - 80048b2: 683b ldr r3, [r7, #0] - 80048b4: 429a cmp r2, r3 - 80048b6: d302 bcc.n 80048be + 8004924: 687a ldr r2, [r7, #4] + 8004926: 683b ldr r3, [r7, #0] + 8004928: 429a cmp r2, r3 + 800492a: d206 bcs.n 800493a + 800492c: 68ba ldr r2, [r7, #8] + 800492e: 683b ldr r3, [r7, #0] + 8004930: 429a cmp r2, r3 + 8004932: d302 bcc.n 800493a { /* If, since the command was issued, the tick count has overflowed but the expiry time has not, then the timer must have already passed its expiry time and should be processed immediately. */ xProcessTimerNow = pdTRUE; - 80048b8: 2301 movs r3, #1 - 80048ba: 617b str r3, [r7, #20] - 80048bc: e007 b.n 80048ce + 8004934: 2301 movs r3, #1 + 8004936: 617b str r3, [r7, #20] + 8004938: e007 b.n 800494a } else { vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); - 80048be: 4b07 ldr r3, [pc, #28] ; (80048dc ) - 80048c0: 681a ldr r2, [r3, #0] - 80048c2: 68fb ldr r3, [r7, #12] - 80048c4: 3304 adds r3, #4 - 80048c6: 4619 mov r1, r3 - 80048c8: 4610 mov r0, r2 - 80048ca: f7fe f9ca bl 8002c62 + 800493a: 4b07 ldr r3, [pc, #28] ; (8004958 ) + 800493c: 681a ldr r2, [r3, #0] + 800493e: 68fb ldr r3, [r7, #12] + 8004940: 3304 adds r3, #4 + 8004942: 4619 mov r1, r3 + 8004944: 4610 mov r0, r2 + 8004946: f7fe f9ca bl 8002cde } } return xProcessTimerNow; - 80048ce: 697b ldr r3, [r7, #20] + 800494a: 697b ldr r3, [r7, #20] } - 80048d0: 4618 mov r0, r3 - 80048d2: 3718 adds r7, #24 - 80048d4: 46bd mov sp, r7 - 80048d6: bd80 pop {r7, pc} - 80048d8: 20000dec .word 0x20000dec - 80048dc: 20000de8 .word 0x20000de8 + 800494c: 4618 mov r0, r3 + 800494e: 3718 adds r7, #24 + 8004950: 46bd mov sp, r7 + 8004952: bd80 pop {r7, pc} + 8004954: 20000dec .word 0x20000dec + 8004958: 20000de8 .word 0x20000de8 -080048e0 : +0800495c : /*-----------------------------------------------------------*/ static void prvProcessReceivedCommands( void ) { - 80048e0: b580 push {r7, lr} - 80048e2: b08e sub sp, #56 ; 0x38 - 80048e4: af02 add r7, sp, #8 + 800495c: b580 push {r7, lr} + 800495e: b08e sub sp, #56 ; 0x38 + 8004960: af02 add r7, sp, #8 DaemonTaskMessage_t xMessage; Timer_t *pxTimer; BaseType_t xTimerListsWereSwitched, xResult; TickType_t xTimeNow; while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ - 80048e6: e0ca b.n 8004a7e + 8004962: e0ca b.n 8004afa { #if ( INCLUDE_xTimerPendFunctionCall == 1 ) { /* Negative commands are pended function calls rather than timer commands. */ if( xMessage.xMessageID < ( BaseType_t ) 0 ) - 80048e8: 687b ldr r3, [r7, #4] - 80048ea: 2b00 cmp r3, #0 - 80048ec: da18 bge.n 8004920 + 8004964: 687b ldr r3, [r7, #4] + 8004966: 2b00 cmp r3, #0 + 8004968: da18 bge.n 800499c { const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters ); - 80048ee: 1d3b adds r3, r7, #4 - 80048f0: 3304 adds r3, #4 - 80048f2: 62fb str r3, [r7, #44] ; 0x2c + 800496a: 1d3b adds r3, r7, #4 + 800496c: 3304 adds r3, #4 + 800496e: 62fb str r3, [r7, #44] ; 0x2c /* The timer uses the xCallbackParameters member to request a callback be executed. Check the callback is not NULL. */ configASSERT( pxCallback ); - 80048f4: 6afb ldr r3, [r7, #44] ; 0x2c - 80048f6: 2b00 cmp r3, #0 - 80048f8: d10a bne.n 8004910 + 8004970: 6afb ldr r3, [r7, #44] ; 0x2c + 8004972: 2b00 cmp r3, #0 + 8004974: d10a bne.n 800498c __asm volatile - 80048fa: f04f 0350 mov.w r3, #80 ; 0x50 - 80048fe: f383 8811 msr BASEPRI, r3 - 8004902: f3bf 8f6f isb sy - 8004906: f3bf 8f4f dsb sy - 800490a: 61fb str r3, [r7, #28] + 8004976: f04f 0350 mov.w r3, #80 ; 0x50 + 800497a: f383 8811 msr BASEPRI, r3 + 800497e: f3bf 8f6f isb sy + 8004982: f3bf 8f4f dsb sy + 8004986: 61fb str r3, [r7, #28] } - 800490c: bf00 nop - 800490e: e7fe b.n 800490e + 8004988: bf00 nop + 800498a: e7fe b.n 800498a /* Call the function. */ pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 ); - 8004910: 6afb ldr r3, [r7, #44] ; 0x2c - 8004912: 681b ldr r3, [r3, #0] - 8004914: 6afa ldr r2, [r7, #44] ; 0x2c - 8004916: 6850 ldr r0, [r2, #4] - 8004918: 6afa ldr r2, [r7, #44] ; 0x2c - 800491a: 6892 ldr r2, [r2, #8] - 800491c: 4611 mov r1, r2 - 800491e: 4798 blx r3 + 800498c: 6afb ldr r3, [r7, #44] ; 0x2c + 800498e: 681b ldr r3, [r3, #0] + 8004990: 6afa ldr r2, [r7, #44] ; 0x2c + 8004992: 6850 ldr r0, [r2, #4] + 8004994: 6afa ldr r2, [r7, #44] ; 0x2c + 8004996: 6892 ldr r2, [r2, #8] + 8004998: 4611 mov r1, r2 + 800499a: 4798 blx r3 } #endif /* INCLUDE_xTimerPendFunctionCall */ /* Commands that are positive are timer commands rather than pended function calls. */ if( xMessage.xMessageID >= ( BaseType_t ) 0 ) - 8004920: 687b ldr r3, [r7, #4] - 8004922: 2b00 cmp r3, #0 - 8004924: f2c0 80ab blt.w 8004a7e + 800499c: 687b ldr r3, [r7, #4] + 800499e: 2b00 cmp r3, #0 + 80049a0: f2c0 80ab blt.w 8004afa { /* The messages uses the xTimerParameters member to work on a software timer. */ pxTimer = xMessage.u.xTimerParameters.pxTimer; - 8004928: 68fb ldr r3, [r7, #12] - 800492a: 62bb str r3, [r7, #40] ; 0x28 + 80049a4: 68fb ldr r3, [r7, #12] + 80049a6: 62bb str r3, [r7, #40] ; 0x28 if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE ) /*lint !e961. The cast is only redundant when NULL is passed into the macro. */ - 800492c: 6abb ldr r3, [r7, #40] ; 0x28 - 800492e: 695b ldr r3, [r3, #20] - 8004930: 2b00 cmp r3, #0 - 8004932: d004 beq.n 800493e + 80049a8: 6abb ldr r3, [r7, #40] ; 0x28 + 80049aa: 695b ldr r3, [r3, #20] + 80049ac: 2b00 cmp r3, #0 + 80049ae: d004 beq.n 80049ba { /* The timer is in a list, remove it. */ ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - 8004934: 6abb ldr r3, [r7, #40] ; 0x28 - 8004936: 3304 adds r3, #4 - 8004938: 4618 mov r0, r3 - 800493a: f7fe f9cb bl 8002cd4 + 80049b0: 6abb ldr r3, [r7, #40] ; 0x28 + 80049b2: 3304 adds r3, #4 + 80049b4: 4618 mov r0, r3 + 80049b6: f7fe f9cb bl 8002d50 it must be present in the function call. prvSampleTimeNow() must be called after the message is received from xTimerQueue so there is no possibility of a higher priority task adding a message to the message queue with a time that is ahead of the timer daemon task (because it pre-empted the timer daemon task after the xTimeNow value was set). */ xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched ); - 800493e: 463b mov r3, r7 - 8004940: 4618 mov r0, r3 - 8004942: f7ff ff6b bl 800481c - 8004946: 6278 str r0, [r7, #36] ; 0x24 + 80049ba: 463b mov r3, r7 + 80049bc: 4618 mov r0, r3 + 80049be: f7ff ff6b bl 8004898 + 80049c2: 6278 str r0, [r7, #36] ; 0x24 switch( xMessage.xMessageID ) - 8004948: 687b ldr r3, [r7, #4] - 800494a: 2b09 cmp r3, #9 - 800494c: f200 8096 bhi.w 8004a7c - 8004950: a201 add r2, pc, #4 ; (adr r2, 8004958 ) - 8004952: f852 f023 ldr.w pc, [r2, r3, lsl #2] - 8004956: bf00 nop - 8004958: 08004981 .word 0x08004981 - 800495c: 08004981 .word 0x08004981 - 8004960: 08004981 .word 0x08004981 - 8004964: 080049f5 .word 0x080049f5 - 8004968: 08004a09 .word 0x08004a09 - 800496c: 08004a53 .word 0x08004a53 - 8004970: 08004981 .word 0x08004981 - 8004974: 08004981 .word 0x08004981 - 8004978: 080049f5 .word 0x080049f5 - 800497c: 08004a09 .word 0x08004a09 + 80049c4: 687b ldr r3, [r7, #4] + 80049c6: 2b09 cmp r3, #9 + 80049c8: f200 8096 bhi.w 8004af8 + 80049cc: a201 add r2, pc, #4 ; (adr r2, 80049d4 ) + 80049ce: f852 f023 ldr.w pc, [r2, r3, lsl #2] + 80049d2: bf00 nop + 80049d4: 080049fd .word 0x080049fd + 80049d8: 080049fd .word 0x080049fd + 80049dc: 080049fd .word 0x080049fd + 80049e0: 08004a71 .word 0x08004a71 + 80049e4: 08004a85 .word 0x08004a85 + 80049e8: 08004acf .word 0x08004acf + 80049ec: 080049fd .word 0x080049fd + 80049f0: 080049fd .word 0x080049fd + 80049f4: 08004a71 .word 0x08004a71 + 80049f8: 08004a85 .word 0x08004a85 case tmrCOMMAND_START_FROM_ISR : case tmrCOMMAND_RESET : case tmrCOMMAND_RESET_FROM_ISR : case tmrCOMMAND_START_DONT_TRACE : /* Start or restart a timer. */ pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; - 8004980: 6abb ldr r3, [r7, #40] ; 0x28 - 8004982: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8004986: f043 0301 orr.w r3, r3, #1 - 800498a: b2da uxtb r2, r3 - 800498c: 6abb ldr r3, [r7, #40] ; 0x28 - 800498e: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 80049fc: 6abb ldr r3, [r7, #40] ; 0x28 + 80049fe: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004a02: f043 0301 orr.w r3, r3, #1 + 8004a06: b2da uxtb r2, r3 + 8004a08: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a0a: f883 2028 strb.w r2, [r3, #40] ; 0x28 if( prvInsertTimerInActiveList( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) != pdFALSE ) - 8004992: 68ba ldr r2, [r7, #8] - 8004994: 6abb ldr r3, [r7, #40] ; 0x28 - 8004996: 699b ldr r3, [r3, #24] - 8004998: 18d1 adds r1, r2, r3 - 800499a: 68bb ldr r3, [r7, #8] - 800499c: 6a7a ldr r2, [r7, #36] ; 0x24 - 800499e: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80049a0: f7ff ff5c bl 800485c - 80049a4: 4603 mov r3, r0 - 80049a6: 2b00 cmp r3, #0 - 80049a8: d069 beq.n 8004a7e + 8004a0e: 68ba ldr r2, [r7, #8] + 8004a10: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a12: 699b ldr r3, [r3, #24] + 8004a14: 18d1 adds r1, r2, r3 + 8004a16: 68bb ldr r3, [r7, #8] + 8004a18: 6a7a ldr r2, [r7, #36] ; 0x24 + 8004a1a: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004a1c: f7ff ff5c bl 80048d8 + 8004a20: 4603 mov r3, r0 + 8004a22: 2b00 cmp r3, #0 + 8004a24: d069 beq.n 8004afa { /* The timer expired before it was added to the active timer list. Process it now. */ pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - 80049aa: 6abb ldr r3, [r7, #40] ; 0x28 - 80049ac: 6a1b ldr r3, [r3, #32] - 80049ae: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80049b0: 4798 blx r3 + 8004a26: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a28: 6a1b ldr r3, [r3, #32] + 8004a2a: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004a2c: 4798 blx r3 traceTIMER_EXPIRED( pxTimer ); if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - 80049b2: 6abb ldr r3, [r7, #40] ; 0x28 - 80049b4: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80049b8: f003 0304 and.w r3, r3, #4 - 80049bc: 2b00 cmp r3, #0 - 80049be: d05e beq.n 8004a7e + 8004a2e: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a30: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004a34: f003 0304 and.w r3, r3, #4 + 8004a38: 2b00 cmp r3, #0 + 8004a3a: d05e beq.n 8004afa { xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY ); - 80049c0: 68ba ldr r2, [r7, #8] - 80049c2: 6abb ldr r3, [r7, #40] ; 0x28 - 80049c4: 699b ldr r3, [r3, #24] - 80049c6: 441a add r2, r3 - 80049c8: 2300 movs r3, #0 - 80049ca: 9300 str r3, [sp, #0] - 80049cc: 2300 movs r3, #0 - 80049ce: 2100 movs r1, #0 - 80049d0: 6ab8 ldr r0, [r7, #40] ; 0x28 - 80049d2: f7ff fe05 bl 80045e0 - 80049d6: 6238 str r0, [r7, #32] + 8004a3c: 68ba ldr r2, [r7, #8] + 8004a3e: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a40: 699b ldr r3, [r3, #24] + 8004a42: 441a add r2, r3 + 8004a44: 2300 movs r3, #0 + 8004a46: 9300 str r3, [sp, #0] + 8004a48: 2300 movs r3, #0 + 8004a4a: 2100 movs r1, #0 + 8004a4c: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004a4e: f7ff fe05 bl 800465c + 8004a52: 6238 str r0, [r7, #32] configASSERT( xResult ); - 80049d8: 6a3b ldr r3, [r7, #32] - 80049da: 2b00 cmp r3, #0 - 80049dc: d14f bne.n 8004a7e + 8004a54: 6a3b ldr r3, [r7, #32] + 8004a56: 2b00 cmp r3, #0 + 8004a58: d14f bne.n 8004afa __asm volatile - 80049de: f04f 0350 mov.w r3, #80 ; 0x50 - 80049e2: f383 8811 msr BASEPRI, r3 - 80049e6: f3bf 8f6f isb sy - 80049ea: f3bf 8f4f dsb sy - 80049ee: 61bb str r3, [r7, #24] + 8004a5a: f04f 0350 mov.w r3, #80 ; 0x50 + 8004a5e: f383 8811 msr BASEPRI, r3 + 8004a62: f3bf 8f6f isb sy + 8004a66: f3bf 8f4f dsb sy + 8004a6a: 61bb str r3, [r7, #24] } - 80049f0: bf00 nop - 80049f2: e7fe b.n 80049f2 + 8004a6c: bf00 nop + 8004a6e: e7fe b.n 8004a6e break; case tmrCOMMAND_STOP : case tmrCOMMAND_STOP_FROM_ISR : /* The timer has already been removed from the active list. */ pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - 80049f4: 6abb ldr r3, [r7, #40] ; 0x28 - 80049f6: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 80049fa: f023 0301 bic.w r3, r3, #1 - 80049fe: b2da uxtb r2, r3 - 8004a00: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a02: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 8004a70: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a72: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004a76: f023 0301 bic.w r3, r3, #1 + 8004a7a: b2da uxtb r2, r3 + 8004a7c: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a7e: f883 2028 strb.w r2, [r3, #40] ; 0x28 break; - 8004a06: e03a b.n 8004a7e + 8004a82: e03a b.n 8004afa case tmrCOMMAND_CHANGE_PERIOD : case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR : pxTimer->ucStatus |= tmrSTATUS_IS_ACTIVE; - 8004a08: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a0a: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8004a0e: f043 0301 orr.w r3, r3, #1 - 8004a12: b2da uxtb r2, r3 - 8004a14: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a16: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 8004a84: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a86: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004a8a: f043 0301 orr.w r3, r3, #1 + 8004a8e: b2da uxtb r2, r3 + 8004a90: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a92: f883 2028 strb.w r2, [r3, #40] ; 0x28 pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; - 8004a1a: 68ba ldr r2, [r7, #8] - 8004a1c: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a1e: 619a str r2, [r3, #24] + 8004a96: 68ba ldr r2, [r7, #8] + 8004a98: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a9a: 619a str r2, [r3, #24] configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); - 8004a20: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a22: 699b ldr r3, [r3, #24] - 8004a24: 2b00 cmp r3, #0 - 8004a26: d10a bne.n 8004a3e + 8004a9c: 6abb ldr r3, [r7, #40] ; 0x28 + 8004a9e: 699b ldr r3, [r3, #24] + 8004aa0: 2b00 cmp r3, #0 + 8004aa2: d10a bne.n 8004aba __asm volatile - 8004a28: f04f 0350 mov.w r3, #80 ; 0x50 - 8004a2c: f383 8811 msr BASEPRI, r3 - 8004a30: f3bf 8f6f isb sy - 8004a34: f3bf 8f4f dsb sy - 8004a38: 617b str r3, [r7, #20] + 8004aa4: f04f 0350 mov.w r3, #80 ; 0x50 + 8004aa8: f383 8811 msr BASEPRI, r3 + 8004aac: f3bf 8f6f isb sy + 8004ab0: f3bf 8f4f dsb sy + 8004ab4: 617b str r3, [r7, #20] } - 8004a3a: bf00 nop - 8004a3c: e7fe b.n 8004a3c + 8004ab6: bf00 nop + 8004ab8: e7fe b.n 8004ab8 be longer or shorter than the old one. The command time is therefore set to the current time, and as the period cannot be zero the next expiry time can only be in the future, meaning (unlike for the xTimerStart() case above) there is no fail case that needs to be handled here. */ ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow ); - 8004a3e: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a40: 699a ldr r2, [r3, #24] - 8004a42: 6a7b ldr r3, [r7, #36] ; 0x24 - 8004a44: 18d1 adds r1, r2, r3 - 8004a46: 6a7b ldr r3, [r7, #36] ; 0x24 - 8004a48: 6a7a ldr r2, [r7, #36] ; 0x24 - 8004a4a: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8004a4c: f7ff ff06 bl 800485c + 8004aba: 6abb ldr r3, [r7, #40] ; 0x28 + 8004abc: 699a ldr r2, [r3, #24] + 8004abe: 6a7b ldr r3, [r7, #36] ; 0x24 + 8004ac0: 18d1 adds r1, r2, r3 + 8004ac2: 6a7b ldr r3, [r7, #36] ; 0x24 + 8004ac4: 6a7a ldr r2, [r7, #36] ; 0x24 + 8004ac6: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004ac8: f7ff ff06 bl 80048d8 break; - 8004a50: e015 b.n 8004a7e + 8004acc: e015 b.n 8004afa #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) { /* The timer has already been removed from the active list, just free up the memory if the memory was dynamically allocated. */ if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) - 8004a52: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a54: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8004a58: f003 0302 and.w r3, r3, #2 - 8004a5c: 2b00 cmp r3, #0 - 8004a5e: d103 bne.n 8004a68 + 8004ace: 6abb ldr r3, [r7, #40] ; 0x28 + 8004ad0: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004ad4: f003 0302 and.w r3, r3, #2 + 8004ad8: 2b00 cmp r3, #0 + 8004ada: d103 bne.n 8004ae4 { vPortFree( pxTimer ); - 8004a60: 6ab8 ldr r0, [r7, #40] ; 0x28 - 8004a62: f000 fbdd bl 8005220 - 8004a66: e00a b.n 8004a7e + 8004adc: 6ab8 ldr r0, [r7, #40] ; 0x28 + 8004ade: f000 fbdf bl 80052a0 + 8004ae2: e00a b.n 8004afa } else { pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; - 8004a68: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a6a: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8004a6e: f023 0301 bic.w r3, r3, #1 - 8004a72: b2da uxtb r2, r3 - 8004a74: 6abb ldr r3, [r7, #40] ; 0x28 - 8004a76: f883 2028 strb.w r2, [r3, #40] ; 0x28 + 8004ae4: 6abb ldr r3, [r7, #40] ; 0x28 + 8004ae6: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004aea: f023 0301 bic.w r3, r3, #1 + 8004aee: b2da uxtb r2, r3 + 8004af0: 6abb ldr r3, [r7, #40] ; 0x28 + 8004af2: f883 2028 strb.w r2, [r3, #40] ; 0x28 no need to free the memory - just mark the timer as "not active". */ pxTimer->ucStatus &= ~tmrSTATUS_IS_ACTIVE; } #endif /* configSUPPORT_DYNAMIC_ALLOCATION */ break; - 8004a7a: e000 b.n 8004a7e + 8004af6: e000 b.n 8004afa default : /* Don't expect to get here. */ break; - 8004a7c: bf00 nop + 8004af8: bf00 nop while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */ - 8004a7e: 4b08 ldr r3, [pc, #32] ; (8004aa0 ) - 8004a80: 681b ldr r3, [r3, #0] - 8004a82: 1d39 adds r1, r7, #4 - 8004a84: 2200 movs r2, #0 - 8004a86: 4618 mov r0, r3 - 8004a88: f7fe fbec bl 8003264 - 8004a8c: 4603 mov r3, r0 - 8004a8e: 2b00 cmp r3, #0 - 8004a90: f47f af2a bne.w 80048e8 + 8004afa: 4b08 ldr r3, [pc, #32] ; (8004b1c ) + 8004afc: 681b ldr r3, [r3, #0] + 8004afe: 1d39 adds r1, r7, #4 + 8004b00: 2200 movs r2, #0 + 8004b02: 4618 mov r0, r3 + 8004b04: f7fe fbec bl 80032e0 + 8004b08: 4603 mov r3, r0 + 8004b0a: 2b00 cmp r3, #0 + 8004b0c: f47f af2a bne.w 8004964 } } } } - 8004a94: bf00 nop - 8004a96: bf00 nop - 8004a98: 3730 adds r7, #48 ; 0x30 - 8004a9a: 46bd mov sp, r7 - 8004a9c: bd80 pop {r7, pc} - 8004a9e: bf00 nop - 8004aa0: 20000df0 .word 0x20000df0 + 8004b10: bf00 nop + 8004b12: bf00 nop + 8004b14: 3730 adds r7, #48 ; 0x30 + 8004b16: 46bd mov sp, r7 + 8004b18: bd80 pop {r7, pc} + 8004b1a: bf00 nop + 8004b1c: 20000df0 .word 0x20000df0 -08004aa4 : +08004b20 : /*-----------------------------------------------------------*/ static void prvSwitchTimerLists( void ) { - 8004aa4: b580 push {r7, lr} - 8004aa6: b088 sub sp, #32 - 8004aa8: af02 add r7, sp, #8 + 8004b20: b580 push {r7, lr} + 8004b22: b088 sub sp, #32 + 8004b24: af02 add r7, sp, #8 /* The tick count has overflowed. The timer lists must be switched. If there are any timers still referenced from the current timer list then they must have expired and should be processed before the lists are switched. */ while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) - 8004aaa: e048 b.n 8004b3e + 8004b26: e048 b.n 8004bba { xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList ); - 8004aac: 4b2d ldr r3, [pc, #180] ; (8004b64 ) - 8004aae: 681b ldr r3, [r3, #0] - 8004ab0: 68db ldr r3, [r3, #12] - 8004ab2: 681b ldr r3, [r3, #0] - 8004ab4: 613b str r3, [r7, #16] + 8004b28: 4b2d ldr r3, [pc, #180] ; (8004be0 ) + 8004b2a: 681b ldr r3, [r3, #0] + 8004b2c: 68db ldr r3, [r3, #12] + 8004b2e: 681b ldr r3, [r3, #0] + 8004b30: 613b str r3, [r7, #16] /* Remove the timer from the list. */ pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList ); /*lint !e9087 !e9079 void * is used as this macro is used with tasks and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */ - 8004ab6: 4b2b ldr r3, [pc, #172] ; (8004b64 ) - 8004ab8: 681b ldr r3, [r3, #0] - 8004aba: 68db ldr r3, [r3, #12] - 8004abc: 68db ldr r3, [r3, #12] - 8004abe: 60fb str r3, [r7, #12] + 8004b32: 4b2b ldr r3, [pc, #172] ; (8004be0 ) + 8004b34: 681b ldr r3, [r3, #0] + 8004b36: 68db ldr r3, [r3, #12] + 8004b38: 68db ldr r3, [r3, #12] + 8004b3a: 60fb str r3, [r7, #12] ( void ) uxListRemove( &( pxTimer->xTimerListItem ) ); - 8004ac0: 68fb ldr r3, [r7, #12] - 8004ac2: 3304 adds r3, #4 - 8004ac4: 4618 mov r0, r3 - 8004ac6: f7fe f905 bl 8002cd4 + 8004b3c: 68fb ldr r3, [r7, #12] + 8004b3e: 3304 adds r3, #4 + 8004b40: 4618 mov r0, r3 + 8004b42: f7fe f905 bl 8002d50 traceTIMER_EXPIRED( pxTimer ); /* Execute its callback, then send a command to restart the timer if it is an auto-reload timer. It cannot be restarted here as the lists have not yet been switched. */ pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer ); - 8004aca: 68fb ldr r3, [r7, #12] - 8004acc: 6a1b ldr r3, [r3, #32] - 8004ace: 68f8 ldr r0, [r7, #12] - 8004ad0: 4798 blx r3 + 8004b46: 68fb ldr r3, [r7, #12] + 8004b48: 6a1b ldr r3, [r3, #32] + 8004b4a: 68f8 ldr r0, [r7, #12] + 8004b4c: 4798 blx r3 if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0 ) - 8004ad2: 68fb ldr r3, [r7, #12] - 8004ad4: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 - 8004ad8: f003 0304 and.w r3, r3, #4 - 8004adc: 2b00 cmp r3, #0 - 8004ade: d02e beq.n 8004b3e + 8004b4e: 68fb ldr r3, [r7, #12] + 8004b50: f893 3028 ldrb.w r3, [r3, #40] ; 0x28 + 8004b54: f003 0304 and.w r3, r3, #4 + 8004b58: 2b00 cmp r3, #0 + 8004b5a: d02e beq.n 8004bba the timer going into the same timer list then it has already expired and the timer should be re-inserted into the current list so it is processed again within this loop. Otherwise a command should be sent to restart the timer to ensure it is only inserted into a list after the lists have been swapped. */ xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ); - 8004ae0: 68fb ldr r3, [r7, #12] - 8004ae2: 699b ldr r3, [r3, #24] - 8004ae4: 693a ldr r2, [r7, #16] - 8004ae6: 4413 add r3, r2 - 8004ae8: 60bb str r3, [r7, #8] + 8004b5c: 68fb ldr r3, [r7, #12] + 8004b5e: 699b ldr r3, [r3, #24] + 8004b60: 693a ldr r2, [r7, #16] + 8004b62: 4413 add r3, r2 + 8004b64: 60bb str r3, [r7, #8] if( xReloadTime > xNextExpireTime ) - 8004aea: 68ba ldr r2, [r7, #8] - 8004aec: 693b ldr r3, [r7, #16] - 8004aee: 429a cmp r2, r3 - 8004af0: d90e bls.n 8004b10 + 8004b66: 68ba ldr r2, [r7, #8] + 8004b68: 693b ldr r3, [r7, #16] + 8004b6a: 429a cmp r2, r3 + 8004b6c: d90e bls.n 8004b8c { listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime ); - 8004af2: 68fb ldr r3, [r7, #12] - 8004af4: 68ba ldr r2, [r7, #8] - 8004af6: 605a str r2, [r3, #4] + 8004b6e: 68fb ldr r3, [r7, #12] + 8004b70: 68ba ldr r2, [r7, #8] + 8004b72: 605a str r2, [r3, #4] listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer ); - 8004af8: 68fb ldr r3, [r7, #12] - 8004afa: 68fa ldr r2, [r7, #12] - 8004afc: 611a str r2, [r3, #16] + 8004b74: 68fb ldr r3, [r7, #12] + 8004b76: 68fa ldr r2, [r7, #12] + 8004b78: 611a str r2, [r3, #16] vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) ); - 8004afe: 4b19 ldr r3, [pc, #100] ; (8004b64 ) - 8004b00: 681a ldr r2, [r3, #0] - 8004b02: 68fb ldr r3, [r7, #12] - 8004b04: 3304 adds r3, #4 - 8004b06: 4619 mov r1, r3 - 8004b08: 4610 mov r0, r2 - 8004b0a: f7fe f8aa bl 8002c62 - 8004b0e: e016 b.n 8004b3e + 8004b7a: 4b19 ldr r3, [pc, #100] ; (8004be0 ) + 8004b7c: 681a ldr r2, [r3, #0] + 8004b7e: 68fb ldr r3, [r7, #12] + 8004b80: 3304 adds r3, #4 + 8004b82: 4619 mov r1, r3 + 8004b84: 4610 mov r0, r2 + 8004b86: f7fe f8aa bl 8002cde + 8004b8a: e016 b.n 8004bba } else { xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY ); - 8004b10: 2300 movs r3, #0 - 8004b12: 9300 str r3, [sp, #0] - 8004b14: 2300 movs r3, #0 - 8004b16: 693a ldr r2, [r7, #16] - 8004b18: 2100 movs r1, #0 - 8004b1a: 68f8 ldr r0, [r7, #12] - 8004b1c: f7ff fd60 bl 80045e0 - 8004b20: 6078 str r0, [r7, #4] + 8004b8c: 2300 movs r3, #0 + 8004b8e: 9300 str r3, [sp, #0] + 8004b90: 2300 movs r3, #0 + 8004b92: 693a ldr r2, [r7, #16] + 8004b94: 2100 movs r1, #0 + 8004b96: 68f8 ldr r0, [r7, #12] + 8004b98: f7ff fd60 bl 800465c + 8004b9c: 6078 str r0, [r7, #4] configASSERT( xResult ); - 8004b22: 687b ldr r3, [r7, #4] - 8004b24: 2b00 cmp r3, #0 - 8004b26: d10a bne.n 8004b3e + 8004b9e: 687b ldr r3, [r7, #4] + 8004ba0: 2b00 cmp r3, #0 + 8004ba2: d10a bne.n 8004bba __asm volatile - 8004b28: f04f 0350 mov.w r3, #80 ; 0x50 - 8004b2c: f383 8811 msr BASEPRI, r3 - 8004b30: f3bf 8f6f isb sy - 8004b34: f3bf 8f4f dsb sy - 8004b38: 603b str r3, [r7, #0] + 8004ba4: f04f 0350 mov.w r3, #80 ; 0x50 + 8004ba8: f383 8811 msr BASEPRI, r3 + 8004bac: f3bf 8f6f isb sy + 8004bb0: f3bf 8f4f dsb sy + 8004bb4: 603b str r3, [r7, #0] } - 8004b3a: bf00 nop - 8004b3c: e7fe b.n 8004b3c + 8004bb6: bf00 nop + 8004bb8: e7fe b.n 8004bb8 while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) - 8004b3e: 4b09 ldr r3, [pc, #36] ; (8004b64 ) - 8004b40: 681b ldr r3, [r3, #0] - 8004b42: 681b ldr r3, [r3, #0] - 8004b44: 2b00 cmp r3, #0 - 8004b46: d1b1 bne.n 8004aac + 8004bba: 4b09 ldr r3, [pc, #36] ; (8004be0 ) + 8004bbc: 681b ldr r3, [r3, #0] + 8004bbe: 681b ldr r3, [r3, #0] + 8004bc0: 2b00 cmp r3, #0 + 8004bc2: d1b1 bne.n 8004b28 { mtCOVERAGE_TEST_MARKER(); } } pxTemp = pxCurrentTimerList; - 8004b48: 4b06 ldr r3, [pc, #24] ; (8004b64 ) - 8004b4a: 681b ldr r3, [r3, #0] - 8004b4c: 617b str r3, [r7, #20] + 8004bc4: 4b06 ldr r3, [pc, #24] ; (8004be0 ) + 8004bc6: 681b ldr r3, [r3, #0] + 8004bc8: 617b str r3, [r7, #20] pxCurrentTimerList = pxOverflowTimerList; - 8004b4e: 4b06 ldr r3, [pc, #24] ; (8004b68 ) - 8004b50: 681b ldr r3, [r3, #0] - 8004b52: 4a04 ldr r2, [pc, #16] ; (8004b64 ) - 8004b54: 6013 str r3, [r2, #0] + 8004bca: 4b06 ldr r3, [pc, #24] ; (8004be4 ) + 8004bcc: 681b ldr r3, [r3, #0] + 8004bce: 4a04 ldr r2, [pc, #16] ; (8004be0 ) + 8004bd0: 6013 str r3, [r2, #0] pxOverflowTimerList = pxTemp; - 8004b56: 4a04 ldr r2, [pc, #16] ; (8004b68 ) - 8004b58: 697b ldr r3, [r7, #20] - 8004b5a: 6013 str r3, [r2, #0] + 8004bd2: 4a04 ldr r2, [pc, #16] ; (8004be4 ) + 8004bd4: 697b ldr r3, [r7, #20] + 8004bd6: 6013 str r3, [r2, #0] } - 8004b5c: bf00 nop - 8004b5e: 3718 adds r7, #24 - 8004b60: 46bd mov sp, r7 - 8004b62: bd80 pop {r7, pc} - 8004b64: 20000de8 .word 0x20000de8 - 8004b68: 20000dec .word 0x20000dec + 8004bd8: bf00 nop + 8004bda: 3718 adds r7, #24 + 8004bdc: 46bd mov sp, r7 + 8004bde: bd80 pop {r7, pc} + 8004be0: 20000de8 .word 0x20000de8 + 8004be4: 20000dec .word 0x20000dec -08004b6c : +08004be8 : /*-----------------------------------------------------------*/ static void prvCheckForValidListAndQueue( void ) { - 8004b6c: b580 push {r7, lr} - 8004b6e: b082 sub sp, #8 - 8004b70: af02 add r7, sp, #8 + 8004be8: b580 push {r7, lr} + 8004bea: b082 sub sp, #8 + 8004bec: af02 add r7, sp, #8 /* Check that the list from which active timers are referenced, and the queue used to communicate with the timer service, have been initialised. */ taskENTER_CRITICAL(); - 8004b72: f000 f967 bl 8004e44 + 8004bee: f000 f969 bl 8004ec4 { if( xTimerQueue == NULL ) - 8004b76: 4b15 ldr r3, [pc, #84] ; (8004bcc ) - 8004b78: 681b ldr r3, [r3, #0] - 8004b7a: 2b00 cmp r3, #0 - 8004b7c: d120 bne.n 8004bc0 + 8004bf2: 4b15 ldr r3, [pc, #84] ; (8004c48 ) + 8004bf4: 681b ldr r3, [r3, #0] + 8004bf6: 2b00 cmp r3, #0 + 8004bf8: d120 bne.n 8004c3c { vListInitialise( &xActiveTimerList1 ); - 8004b7e: 4814 ldr r0, [pc, #80] ; (8004bd0 ) - 8004b80: f7fe f81e bl 8002bc0 + 8004bfa: 4814 ldr r0, [pc, #80] ; (8004c4c ) + 8004bfc: f7fe f81e bl 8002c3c vListInitialise( &xActiveTimerList2 ); - 8004b84: 4813 ldr r0, [pc, #76] ; (8004bd4 ) - 8004b86: f7fe f81b bl 8002bc0 + 8004c00: 4813 ldr r0, [pc, #76] ; (8004c50 ) + 8004c02: f7fe f81b bl 8002c3c pxCurrentTimerList = &xActiveTimerList1; - 8004b8a: 4b13 ldr r3, [pc, #76] ; (8004bd8 ) - 8004b8c: 4a10 ldr r2, [pc, #64] ; (8004bd0 ) - 8004b8e: 601a str r2, [r3, #0] + 8004c06: 4b13 ldr r3, [pc, #76] ; (8004c54 ) + 8004c08: 4a10 ldr r2, [pc, #64] ; (8004c4c ) + 8004c0a: 601a str r2, [r3, #0] pxOverflowTimerList = &xActiveTimerList2; - 8004b90: 4b12 ldr r3, [pc, #72] ; (8004bdc ) - 8004b92: 4a10 ldr r2, [pc, #64] ; (8004bd4 ) - 8004b94: 601a str r2, [r3, #0] + 8004c0c: 4b12 ldr r3, [pc, #72] ; (8004c58 ) + 8004c0e: 4a10 ldr r2, [pc, #64] ; (8004c50 ) + 8004c10: 601a str r2, [r3, #0] /* The timer queue is allocated statically in case configSUPPORT_DYNAMIC_ALLOCATION is 0. */ static StaticQueue_t xStaticTimerQueue; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ static uint8_t ucStaticTimerQueueStorage[ ( size_t ) configTIMER_QUEUE_LENGTH * sizeof( DaemonTaskMessage_t ) ]; /*lint !e956 Ok to declare in this manner to prevent additional conditional compilation guards in other locations. */ xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( DaemonTaskMessage_t ), &( ucStaticTimerQueueStorage[ 0 ] ), &xStaticTimerQueue ); - 8004b96: 2300 movs r3, #0 - 8004b98: 9300 str r3, [sp, #0] - 8004b9a: 4b11 ldr r3, [pc, #68] ; (8004be0 ) - 8004b9c: 4a11 ldr r2, [pc, #68] ; (8004be4 ) - 8004b9e: 2110 movs r1, #16 - 8004ba0: 200a movs r0, #10 - 8004ba2: f7fe f929 bl 8002df8 - 8004ba6: 4603 mov r3, r0 - 8004ba8: 4a08 ldr r2, [pc, #32] ; (8004bcc ) - 8004baa: 6013 str r3, [r2, #0] + 8004c12: 2300 movs r3, #0 + 8004c14: 9300 str r3, [sp, #0] + 8004c16: 4b11 ldr r3, [pc, #68] ; (8004c5c ) + 8004c18: 4a11 ldr r2, [pc, #68] ; (8004c60 ) + 8004c1a: 2110 movs r1, #16 + 8004c1c: 200a movs r0, #10 + 8004c1e: f7fe f929 bl 8002e74 + 8004c22: 4603 mov r3, r0 + 8004c24: 4a08 ldr r2, [pc, #32] ; (8004c48 ) + 8004c26: 6013 str r3, [r2, #0] } #endif #if ( configQUEUE_REGISTRY_SIZE > 0 ) { if( xTimerQueue != NULL ) - 8004bac: 4b07 ldr r3, [pc, #28] ; (8004bcc ) - 8004bae: 681b ldr r3, [r3, #0] - 8004bb0: 2b00 cmp r3, #0 - 8004bb2: d005 beq.n 8004bc0 + 8004c28: 4b07 ldr r3, [pc, #28] ; (8004c48 ) + 8004c2a: 681b ldr r3, [r3, #0] + 8004c2c: 2b00 cmp r3, #0 + 8004c2e: d005 beq.n 8004c3c { vQueueAddToRegistry( xTimerQueue, "TmrQ" ); - 8004bb4: 4b05 ldr r3, [pc, #20] ; (8004bcc ) - 8004bb6: 681b ldr r3, [r3, #0] - 8004bb8: 490b ldr r1, [pc, #44] ; (8004be8 ) - 8004bba: 4618 mov r0, r3 - 8004bbc: f7fe fd42 bl 8003644 + 8004c30: 4b05 ldr r3, [pc, #20] ; (8004c48 ) + 8004c32: 681b ldr r3, [r3, #0] + 8004c34: 490b ldr r1, [pc, #44] ; (8004c64 ) + 8004c36: 4618 mov r0, r3 + 8004c38: f7fe fd42 bl 80036c0 else { mtCOVERAGE_TEST_MARKER(); } } taskEXIT_CRITICAL(); - 8004bc0: f000 f970 bl 8004ea4 + 8004c3c: f000 f972 bl 8004f24 } - 8004bc4: bf00 nop - 8004bc6: 46bd mov sp, r7 - 8004bc8: bd80 pop {r7, pc} - 8004bca: bf00 nop - 8004bcc: 20000df0 .word 0x20000df0 - 8004bd0: 20000dc0 .word 0x20000dc0 - 8004bd4: 20000dd4 .word 0x20000dd4 - 8004bd8: 20000de8 .word 0x20000de8 - 8004bdc: 20000dec .word 0x20000dec - 8004be0: 20000e9c .word 0x20000e9c - 8004be4: 20000dfc .word 0x20000dfc - 8004be8: 08005670 .word 0x08005670 + 8004c40: bf00 nop + 8004c42: 46bd mov sp, r7 + 8004c44: bd80 pop {r7, pc} + 8004c46: bf00 nop + 8004c48: 20000df0 .word 0x20000df0 + 8004c4c: 20000dc0 .word 0x20000dc0 + 8004c50: 20000dd4 .word 0x20000dd4 + 8004c54: 20000de8 .word 0x20000de8 + 8004c58: 20000dec .word 0x20000dec + 8004c5c: 20000e9c .word 0x20000e9c + 8004c60: 20000dfc .word 0x20000dfc + 8004c64: 080056f0 .word 0x080056f0 -08004bec : +08004c68 : /* * See header file for description. */ StackType_t *pxPortInitialiseStack( StackType_t *pxTopOfStack, TaskFunction_t pxCode, void *pvParameters ) { - 8004bec: b480 push {r7} - 8004bee: b085 sub sp, #20 - 8004bf0: af00 add r7, sp, #0 - 8004bf2: 60f8 str r0, [r7, #12] - 8004bf4: 60b9 str r1, [r7, #8] - 8004bf6: 607a str r2, [r7, #4] + 8004c68: b480 push {r7} + 8004c6a: b085 sub sp, #20 + 8004c6c: af00 add r7, sp, #0 + 8004c6e: 60f8 str r0, [r7, #12] + 8004c70: 60b9 str r1, [r7, #8] + 8004c72: 607a str r2, [r7, #4] /* Simulate the stack frame as it would be created by a context switch interrupt. */ /* Offset added to account for the way the MCU uses the stack on entry/exit of interrupts, and to ensure alignment. */ pxTopOfStack--; - 8004bf8: 68fb ldr r3, [r7, #12] - 8004bfa: 3b04 subs r3, #4 - 8004bfc: 60fb str r3, [r7, #12] + 8004c74: 68fb ldr r3, [r7, #12] + 8004c76: 3b04 subs r3, #4 + 8004c78: 60fb str r3, [r7, #12] *pxTopOfStack = portINITIAL_XPSR; /* xPSR */ - 8004bfe: 68fb ldr r3, [r7, #12] - 8004c00: f04f 7280 mov.w r2, #16777216 ; 0x1000000 - 8004c04: 601a str r2, [r3, #0] + 8004c7a: 68fb ldr r3, [r7, #12] + 8004c7c: f04f 7280 mov.w r2, #16777216 ; 0x1000000 + 8004c80: 601a str r2, [r3, #0] pxTopOfStack--; - 8004c06: 68fb ldr r3, [r7, #12] - 8004c08: 3b04 subs r3, #4 - 8004c0a: 60fb str r3, [r7, #12] + 8004c82: 68fb ldr r3, [r7, #12] + 8004c84: 3b04 subs r3, #4 + 8004c86: 60fb str r3, [r7, #12] *pxTopOfStack = ( ( StackType_t ) pxCode ) & portSTART_ADDRESS_MASK; /* PC */ - 8004c0c: 68bb ldr r3, [r7, #8] - 8004c0e: f023 0201 bic.w r2, r3, #1 - 8004c12: 68fb ldr r3, [r7, #12] - 8004c14: 601a str r2, [r3, #0] + 8004c88: 68bb ldr r3, [r7, #8] + 8004c8a: f023 0201 bic.w r2, r3, #1 + 8004c8e: 68fb ldr r3, [r7, #12] + 8004c90: 601a str r2, [r3, #0] pxTopOfStack--; - 8004c16: 68fb ldr r3, [r7, #12] - 8004c18: 3b04 subs r3, #4 - 8004c1a: 60fb str r3, [r7, #12] + 8004c92: 68fb ldr r3, [r7, #12] + 8004c94: 3b04 subs r3, #4 + 8004c96: 60fb str r3, [r7, #12] *pxTopOfStack = ( StackType_t ) portTASK_RETURN_ADDRESS; /* LR */ - 8004c1c: 4a0c ldr r2, [pc, #48] ; (8004c50 ) - 8004c1e: 68fb ldr r3, [r7, #12] - 8004c20: 601a str r2, [r3, #0] + 8004c98: 4a0c ldr r2, [pc, #48] ; (8004ccc ) + 8004c9a: 68fb ldr r3, [r7, #12] + 8004c9c: 601a str r2, [r3, #0] /* Save code space by skipping register initialisation. */ pxTopOfStack -= 5; /* R12, R3, R2 and R1. */ - 8004c22: 68fb ldr r3, [r7, #12] - 8004c24: 3b14 subs r3, #20 - 8004c26: 60fb str r3, [r7, #12] + 8004c9e: 68fb ldr r3, [r7, #12] + 8004ca0: 3b14 subs r3, #20 + 8004ca2: 60fb str r3, [r7, #12] *pxTopOfStack = ( StackType_t ) pvParameters; /* R0 */ - 8004c28: 687a ldr r2, [r7, #4] - 8004c2a: 68fb ldr r3, [r7, #12] - 8004c2c: 601a str r2, [r3, #0] + 8004ca4: 687a ldr r2, [r7, #4] + 8004ca6: 68fb ldr r3, [r7, #12] + 8004ca8: 601a str r2, [r3, #0] /* A save method is being used that requires each task to maintain its own exec return value. */ pxTopOfStack--; - 8004c2e: 68fb ldr r3, [r7, #12] - 8004c30: 3b04 subs r3, #4 - 8004c32: 60fb str r3, [r7, #12] + 8004caa: 68fb ldr r3, [r7, #12] + 8004cac: 3b04 subs r3, #4 + 8004cae: 60fb str r3, [r7, #12] *pxTopOfStack = portINITIAL_EXC_RETURN; - 8004c34: 68fb ldr r3, [r7, #12] - 8004c36: f06f 0202 mvn.w r2, #2 - 8004c3a: 601a str r2, [r3, #0] + 8004cb0: 68fb ldr r3, [r7, #12] + 8004cb2: f06f 0202 mvn.w r2, #2 + 8004cb6: 601a str r2, [r3, #0] pxTopOfStack -= 8; /* R11, R10, R9, R8, R7, R6, R5 and R4. */ - 8004c3c: 68fb ldr r3, [r7, #12] - 8004c3e: 3b20 subs r3, #32 - 8004c40: 60fb str r3, [r7, #12] + 8004cb8: 68fb ldr r3, [r7, #12] + 8004cba: 3b20 subs r3, #32 + 8004cbc: 60fb str r3, [r7, #12] return pxTopOfStack; - 8004c42: 68fb ldr r3, [r7, #12] + 8004cbe: 68fb ldr r3, [r7, #12] } - 8004c44: 4618 mov r0, r3 - 8004c46: 3714 adds r7, #20 - 8004c48: 46bd mov sp, r7 - 8004c4a: f85d 7b04 ldr.w r7, [sp], #4 - 8004c4e: 4770 bx lr - 8004c50: 08004c55 .word 0x08004c55 + 8004cc0: 4618 mov r0, r3 + 8004cc2: 3714 adds r7, #20 + 8004cc4: 46bd mov sp, r7 + 8004cc6: f85d 7b04 ldr.w r7, [sp], #4 + 8004cca: 4770 bx lr + 8004ccc: 08004cd1 .word 0x08004cd1 -08004c54 : +08004cd0 : /*-----------------------------------------------------------*/ static void prvTaskExitError( void ) { - 8004c54: b480 push {r7} - 8004c56: b085 sub sp, #20 - 8004c58: af00 add r7, sp, #0 + 8004cd0: b480 push {r7} + 8004cd2: b085 sub sp, #20 + 8004cd4: af00 add r7, sp, #0 volatile uint32_t ulDummy = 0; - 8004c5a: 2300 movs r3, #0 - 8004c5c: 607b str r3, [r7, #4] + 8004cd6: 2300 movs r3, #0 + 8004cd8: 607b str r3, [r7, #4] its caller as there is nothing to return to. If a task wants to exit it should instead call vTaskDelete( NULL ). Artificially force an assert() to be triggered if configASSERT() is defined, then stop here so application writers can catch the error. */ configASSERT( uxCriticalNesting == ~0UL ); - 8004c5e: 4b12 ldr r3, [pc, #72] ; (8004ca8 ) - 8004c60: 681b ldr r3, [r3, #0] - 8004c62: f1b3 3fff cmp.w r3, #4294967295 - 8004c66: d00a beq.n 8004c7e + 8004cda: 4b12 ldr r3, [pc, #72] ; (8004d24 ) + 8004cdc: 681b ldr r3, [r3, #0] + 8004cde: f1b3 3fff cmp.w r3, #4294967295 + 8004ce2: d00a beq.n 8004cfa __asm volatile - 8004c68: f04f 0350 mov.w r3, #80 ; 0x50 - 8004c6c: f383 8811 msr BASEPRI, r3 - 8004c70: f3bf 8f6f isb sy - 8004c74: f3bf 8f4f dsb sy - 8004c78: 60fb str r3, [r7, #12] + 8004ce4: f04f 0350 mov.w r3, #80 ; 0x50 + 8004ce8: f383 8811 msr BASEPRI, r3 + 8004cec: f3bf 8f6f isb sy + 8004cf0: f3bf 8f4f dsb sy + 8004cf4: 60fb str r3, [r7, #12] } - 8004c7a: bf00 nop - 8004c7c: e7fe b.n 8004c7c + 8004cf6: bf00 nop + 8004cf8: e7fe b.n 8004cf8 __asm volatile - 8004c7e: f04f 0350 mov.w r3, #80 ; 0x50 - 8004c82: f383 8811 msr BASEPRI, r3 - 8004c86: f3bf 8f6f isb sy - 8004c8a: f3bf 8f4f dsb sy - 8004c8e: 60bb str r3, [r7, #8] + 8004cfa: f04f 0350 mov.w r3, #80 ; 0x50 + 8004cfe: f383 8811 msr BASEPRI, r3 + 8004d02: f3bf 8f6f isb sy + 8004d06: f3bf 8f4f dsb sy + 8004d0a: 60bb str r3, [r7, #8] } - 8004c90: bf00 nop + 8004d0c: bf00 nop portDISABLE_INTERRUPTS(); while( ulDummy == 0 ) - 8004c92: bf00 nop - 8004c94: 687b ldr r3, [r7, #4] - 8004c96: 2b00 cmp r3, #0 - 8004c98: d0fc beq.n 8004c94 + 8004d0e: bf00 nop + 8004d10: 687b ldr r3, [r7, #4] + 8004d12: 2b00 cmp r3, #0 + 8004d14: d0fc beq.n 8004d10 about code appearing after this function is called - making ulDummy volatile makes the compiler think the function could return and therefore not output an 'unreachable code' warning for code that appears after it. */ } } - 8004c9a: bf00 nop - 8004c9c: bf00 nop - 8004c9e: 3714 adds r7, #20 - 8004ca0: 46bd mov sp, r7 - 8004ca2: f85d 7b04 ldr.w r7, [sp], #4 - 8004ca6: 4770 bx lr - 8004ca8: 2000000c .word 0x2000000c - 8004cac: 00000000 .word 0x00000000 + 8004d16: bf00 nop + 8004d18: bf00 nop + 8004d1a: 3714 adds r7, #20 + 8004d1c: 46bd mov sp, r7 + 8004d1e: f85d 7b04 ldr.w r7, [sp], #4 + 8004d22: 4770 bx lr + 8004d24: 2000000c .word 0x2000000c + ... -08004cb0 : +08004d30 : /*-----------------------------------------------------------*/ void vPortSVCHandler( void ) { __asm volatile ( - 8004cb0: 4b07 ldr r3, [pc, #28] ; (8004cd0 ) - 8004cb2: 6819 ldr r1, [r3, #0] - 8004cb4: 6808 ldr r0, [r1, #0] - 8004cb6: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8004cba: f380 8809 msr PSP, r0 - 8004cbe: f3bf 8f6f isb sy - 8004cc2: f04f 0000 mov.w r0, #0 - 8004cc6: f380 8811 msr BASEPRI, r0 - 8004cca: 4770 bx lr - 8004ccc: f3af 8000 nop.w + 8004d30: 4b07 ldr r3, [pc, #28] ; (8004d50 ) + 8004d32: 6819 ldr r1, [r3, #0] + 8004d34: 6808 ldr r0, [r1, #0] + 8004d36: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8004d3a: f380 8809 msr PSP, r0 + 8004d3e: f3bf 8f6f isb sy + 8004d42: f04f 0000 mov.w r0, #0 + 8004d46: f380 8811 msr BASEPRI, r0 + 8004d4a: 4770 bx lr + 8004d4c: f3af 8000 nop.w -08004cd0 : - 8004cd0: 200008c0 .word 0x200008c0 +08004d50 : + 8004d50: 200008c0 .word 0x200008c0 " bx r14 \n" " \n" " .align 4 \n" "pxCurrentTCBConst2: .word pxCurrentTCB \n" ); } - 8004cd4: bf00 nop - 8004cd6: bf00 nop + 8004d54: bf00 nop + 8004d56: bf00 nop -08004cd8 : +08004d58 : { /* Start the first task. This also clears the bit that indicates the FPU is in use in case the FPU was used before the scheduler was started - which would otherwise result in the unnecessary leaving of space in the SVC stack for lazy saving of FPU registers. */ __asm volatile( - 8004cd8: 4808 ldr r0, [pc, #32] ; (8004cfc ) - 8004cda: 6800 ldr r0, [r0, #0] - 8004cdc: 6800 ldr r0, [r0, #0] - 8004cde: f380 8808 msr MSP, r0 - 8004ce2: f04f 0000 mov.w r0, #0 - 8004ce6: f380 8814 msr CONTROL, r0 - 8004cea: b662 cpsie i - 8004cec: b661 cpsie f - 8004cee: f3bf 8f4f dsb sy - 8004cf2: f3bf 8f6f isb sy - 8004cf6: df00 svc 0 - 8004cf8: bf00 nop + 8004d58: 4808 ldr r0, [pc, #32] ; (8004d7c ) + 8004d5a: 6800 ldr r0, [r0, #0] + 8004d5c: 6800 ldr r0, [r0, #0] + 8004d5e: f380 8808 msr MSP, r0 + 8004d62: f04f 0000 mov.w r0, #0 + 8004d66: f380 8814 msr CONTROL, r0 + 8004d6a: b662 cpsie i + 8004d6c: b661 cpsie f + 8004d6e: f3bf 8f4f dsb sy + 8004d72: f3bf 8f6f isb sy + 8004d76: df00 svc 0 + 8004d78: bf00 nop " dsb \n" " isb \n" " svc 0 \n" /* System call to start first task. */ " nop \n" ); } - 8004cfa: bf00 nop - 8004cfc: e000ed08 .word 0xe000ed08 + 8004d7a: bf00 nop + 8004d7c: e000ed08 .word 0xe000ed08 -08004d00 : +08004d80 : /* * See header file for description. */ BaseType_t xPortStartScheduler( void ) { - 8004d00: b580 push {r7, lr} - 8004d02: b086 sub sp, #24 - 8004d04: af00 add r7, sp, #0 + 8004d80: b580 push {r7, lr} + 8004d82: b086 sub sp, #24 + 8004d84: af00 add r7, sp, #0 configASSERT( configMAX_SYSCALL_INTERRUPT_PRIORITY ); /* This port can be used on all revisions of the Cortex-M7 core other than the r0p1 parts. r0p1 parts should use the port from the /source/portable/GCC/ARM_CM7/r0p1 directory. */ configASSERT( portCPUID != portCORTEX_M7_r0p1_ID ); - 8004d06: 4b46 ldr r3, [pc, #280] ; (8004e20 ) - 8004d08: 681b ldr r3, [r3, #0] - 8004d0a: 4a46 ldr r2, [pc, #280] ; (8004e24 ) - 8004d0c: 4293 cmp r3, r2 - 8004d0e: d10a bne.n 8004d26 + 8004d86: 4b46 ldr r3, [pc, #280] ; (8004ea0 ) + 8004d88: 681b ldr r3, [r3, #0] + 8004d8a: 4a46 ldr r2, [pc, #280] ; (8004ea4 ) + 8004d8c: 4293 cmp r3, r2 + 8004d8e: d10a bne.n 8004da6 __asm volatile - 8004d10: f04f 0350 mov.w r3, #80 ; 0x50 - 8004d14: f383 8811 msr BASEPRI, r3 - 8004d18: f3bf 8f6f isb sy - 8004d1c: f3bf 8f4f dsb sy - 8004d20: 613b str r3, [r7, #16] + 8004d90: f04f 0350 mov.w r3, #80 ; 0x50 + 8004d94: f383 8811 msr BASEPRI, r3 + 8004d98: f3bf 8f6f isb sy + 8004d9c: f3bf 8f4f dsb sy + 8004da0: 613b str r3, [r7, #16] } - 8004d22: bf00 nop - 8004d24: e7fe b.n 8004d24 + 8004da2: bf00 nop + 8004da4: e7fe b.n 8004da4 configASSERT( portCPUID != portCORTEX_M7_r0p0_ID ); - 8004d26: 4b3e ldr r3, [pc, #248] ; (8004e20 ) - 8004d28: 681b ldr r3, [r3, #0] - 8004d2a: 4a3f ldr r2, [pc, #252] ; (8004e28 ) - 8004d2c: 4293 cmp r3, r2 - 8004d2e: d10a bne.n 8004d46 + 8004da6: 4b3e ldr r3, [pc, #248] ; (8004ea0 ) + 8004da8: 681b ldr r3, [r3, #0] + 8004daa: 4a3f ldr r2, [pc, #252] ; (8004ea8 ) + 8004dac: 4293 cmp r3, r2 + 8004dae: d10a bne.n 8004dc6 __asm volatile - 8004d30: f04f 0350 mov.w r3, #80 ; 0x50 - 8004d34: f383 8811 msr BASEPRI, r3 - 8004d38: f3bf 8f6f isb sy - 8004d3c: f3bf 8f4f dsb sy - 8004d40: 60fb str r3, [r7, #12] + 8004db0: f04f 0350 mov.w r3, #80 ; 0x50 + 8004db4: f383 8811 msr BASEPRI, r3 + 8004db8: f3bf 8f6f isb sy + 8004dbc: f3bf 8f4f dsb sy + 8004dc0: 60fb str r3, [r7, #12] } - 8004d42: bf00 nop - 8004d44: e7fe b.n 8004d44 + 8004dc2: bf00 nop + 8004dc4: e7fe b.n 8004dc4 #if( configASSERT_DEFINED == 1 ) { volatile uint32_t ulOriginalPriority; volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER ); - 8004d46: 4b39 ldr r3, [pc, #228] ; (8004e2c ) - 8004d48: 617b str r3, [r7, #20] + 8004dc6: 4b39 ldr r3, [pc, #228] ; (8004eac ) + 8004dc8: 617b str r3, [r7, #20] functions can be called. ISR safe functions are those that end in "FromISR". FreeRTOS maintains separate thread and ISR API functions to ensure interrupt entry is as fast and simple as possible. Save the interrupt priority value that is about to be clobbered. */ ulOriginalPriority = *pucFirstUserPriorityRegister; - 8004d4a: 697b ldr r3, [r7, #20] - 8004d4c: 781b ldrb r3, [r3, #0] - 8004d4e: b2db uxtb r3, r3 - 8004d50: 607b str r3, [r7, #4] + 8004dca: 697b ldr r3, [r7, #20] + 8004dcc: 781b ldrb r3, [r3, #0] + 8004dce: b2db uxtb r3, r3 + 8004dd0: 607b str r3, [r7, #4] /* Determine the number of priority bits available. First write to all possible bits. */ *pucFirstUserPriorityRegister = portMAX_8_BIT_VALUE; - 8004d52: 697b ldr r3, [r7, #20] - 8004d54: 22ff movs r2, #255 ; 0xff - 8004d56: 701a strb r2, [r3, #0] + 8004dd2: 697b ldr r3, [r7, #20] + 8004dd4: 22ff movs r2, #255 ; 0xff + 8004dd6: 701a strb r2, [r3, #0] /* Read the value back to see how many bits stuck. */ ucMaxPriorityValue = *pucFirstUserPriorityRegister; - 8004d58: 697b ldr r3, [r7, #20] - 8004d5a: 781b ldrb r3, [r3, #0] - 8004d5c: b2db uxtb r3, r3 - 8004d5e: 70fb strb r3, [r7, #3] + 8004dd8: 697b ldr r3, [r7, #20] + 8004dda: 781b ldrb r3, [r3, #0] + 8004ddc: b2db uxtb r3, r3 + 8004dde: 70fb strb r3, [r7, #3] /* Use the same mask on the maximum system call priority. */ ucMaxSysCallPriority = configMAX_SYSCALL_INTERRUPT_PRIORITY & ucMaxPriorityValue; - 8004d60: 78fb ldrb r3, [r7, #3] - 8004d62: b2db uxtb r3, r3 - 8004d64: f003 0350 and.w r3, r3, #80 ; 0x50 - 8004d68: b2da uxtb r2, r3 - 8004d6a: 4b31 ldr r3, [pc, #196] ; (8004e30 ) - 8004d6c: 701a strb r2, [r3, #0] + 8004de0: 78fb ldrb r3, [r7, #3] + 8004de2: b2db uxtb r3, r3 + 8004de4: f003 0350 and.w r3, r3, #80 ; 0x50 + 8004de8: b2da uxtb r2, r3 + 8004dea: 4b31 ldr r3, [pc, #196] ; (8004eb0 ) + 8004dec: 701a strb r2, [r3, #0] /* Calculate the maximum acceptable priority group value for the number of bits read back. */ ulMaxPRIGROUPValue = portMAX_PRIGROUP_BITS; - 8004d6e: 4b31 ldr r3, [pc, #196] ; (8004e34 ) - 8004d70: 2207 movs r2, #7 - 8004d72: 601a str r2, [r3, #0] + 8004dee: 4b31 ldr r3, [pc, #196] ; (8004eb4 ) + 8004df0: 2207 movs r2, #7 + 8004df2: 601a str r2, [r3, #0] while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE ) - 8004d74: e009 b.n 8004d8a + 8004df4: e009 b.n 8004e0a { ulMaxPRIGROUPValue--; - 8004d76: 4b2f ldr r3, [pc, #188] ; (8004e34 ) - 8004d78: 681b ldr r3, [r3, #0] - 8004d7a: 3b01 subs r3, #1 - 8004d7c: 4a2d ldr r2, [pc, #180] ; (8004e34 ) - 8004d7e: 6013 str r3, [r2, #0] + 8004df6: 4b2f ldr r3, [pc, #188] ; (8004eb4 ) + 8004df8: 681b ldr r3, [r3, #0] + 8004dfa: 3b01 subs r3, #1 + 8004dfc: 4a2d ldr r2, [pc, #180] ; (8004eb4 ) + 8004dfe: 6013 str r3, [r2, #0] ucMaxPriorityValue <<= ( uint8_t ) 0x01; - 8004d80: 78fb ldrb r3, [r7, #3] - 8004d82: b2db uxtb r3, r3 - 8004d84: 005b lsls r3, r3, #1 - 8004d86: b2db uxtb r3, r3 - 8004d88: 70fb strb r3, [r7, #3] + 8004e00: 78fb ldrb r3, [r7, #3] + 8004e02: b2db uxtb r3, r3 + 8004e04: 005b lsls r3, r3, #1 + 8004e06: b2db uxtb r3, r3 + 8004e08: 70fb strb r3, [r7, #3] while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE ) - 8004d8a: 78fb ldrb r3, [r7, #3] - 8004d8c: b2db uxtb r3, r3 - 8004d8e: f003 0380 and.w r3, r3, #128 ; 0x80 - 8004d92: 2b80 cmp r3, #128 ; 0x80 - 8004d94: d0ef beq.n 8004d76 + 8004e0a: 78fb ldrb r3, [r7, #3] + 8004e0c: b2db uxtb r3, r3 + 8004e0e: f003 0380 and.w r3, r3, #128 ; 0x80 + 8004e12: 2b80 cmp r3, #128 ; 0x80 + 8004e14: d0ef beq.n 8004df6 #ifdef configPRIO_BITS { /* Check the FreeRTOS configuration that defines the number of priority bits matches the number of priority bits actually queried from the hardware. */ configASSERT( ( portMAX_PRIGROUP_BITS - ulMaxPRIGROUPValue ) == configPRIO_BITS ); - 8004d96: 4b27 ldr r3, [pc, #156] ; (8004e34 ) - 8004d98: 681b ldr r3, [r3, #0] - 8004d9a: f1c3 0307 rsb r3, r3, #7 - 8004d9e: 2b04 cmp r3, #4 - 8004da0: d00a beq.n 8004db8 + 8004e16: 4b27 ldr r3, [pc, #156] ; (8004eb4 ) + 8004e18: 681b ldr r3, [r3, #0] + 8004e1a: f1c3 0307 rsb r3, r3, #7 + 8004e1e: 2b04 cmp r3, #4 + 8004e20: d00a beq.n 8004e38 __asm volatile - 8004da2: f04f 0350 mov.w r3, #80 ; 0x50 - 8004da6: f383 8811 msr BASEPRI, r3 - 8004daa: f3bf 8f6f isb sy - 8004dae: f3bf 8f4f dsb sy - 8004db2: 60bb str r3, [r7, #8] + 8004e22: f04f 0350 mov.w r3, #80 ; 0x50 + 8004e26: f383 8811 msr BASEPRI, r3 + 8004e2a: f3bf 8f6f isb sy + 8004e2e: f3bf 8f4f dsb sy + 8004e32: 60bb str r3, [r7, #8] } - 8004db4: bf00 nop - 8004db6: e7fe b.n 8004db6 + 8004e34: bf00 nop + 8004e36: e7fe b.n 8004e36 } #endif /* Shift the priority group value back to its position within the AIRCR register. */ ulMaxPRIGROUPValue <<= portPRIGROUP_SHIFT; - 8004db8: 4b1e ldr r3, [pc, #120] ; (8004e34 ) - 8004dba: 681b ldr r3, [r3, #0] - 8004dbc: 021b lsls r3, r3, #8 - 8004dbe: 4a1d ldr r2, [pc, #116] ; (8004e34 ) - 8004dc0: 6013 str r3, [r2, #0] + 8004e38: 4b1e ldr r3, [pc, #120] ; (8004eb4 ) + 8004e3a: 681b ldr r3, [r3, #0] + 8004e3c: 021b lsls r3, r3, #8 + 8004e3e: 4a1d ldr r2, [pc, #116] ; (8004eb4 ) + 8004e40: 6013 str r3, [r2, #0] ulMaxPRIGROUPValue &= portPRIORITY_GROUP_MASK; - 8004dc2: 4b1c ldr r3, [pc, #112] ; (8004e34 ) - 8004dc4: 681b ldr r3, [r3, #0] - 8004dc6: f403 63e0 and.w r3, r3, #1792 ; 0x700 - 8004dca: 4a1a ldr r2, [pc, #104] ; (8004e34 ) - 8004dcc: 6013 str r3, [r2, #0] + 8004e42: 4b1c ldr r3, [pc, #112] ; (8004eb4 ) + 8004e44: 681b ldr r3, [r3, #0] + 8004e46: f403 63e0 and.w r3, r3, #1792 ; 0x700 + 8004e4a: 4a1a ldr r2, [pc, #104] ; (8004eb4 ) + 8004e4c: 6013 str r3, [r2, #0] /* Restore the clobbered interrupt priority register to its original value. */ *pucFirstUserPriorityRegister = ulOriginalPriority; - 8004dce: 687b ldr r3, [r7, #4] - 8004dd0: b2da uxtb r2, r3 - 8004dd2: 697b ldr r3, [r7, #20] - 8004dd4: 701a strb r2, [r3, #0] + 8004e4e: 687b ldr r3, [r7, #4] + 8004e50: b2da uxtb r2, r3 + 8004e52: 697b ldr r3, [r7, #20] + 8004e54: 701a strb r2, [r3, #0] } #endif /* conifgASSERT_DEFINED */ /* Make PendSV and SysTick the lowest priority interrupts. */ portNVIC_SYSPRI2_REG |= portNVIC_PENDSV_PRI; - 8004dd6: 4b18 ldr r3, [pc, #96] ; (8004e38 ) - 8004dd8: 681b ldr r3, [r3, #0] - 8004dda: 4a17 ldr r2, [pc, #92] ; (8004e38 ) - 8004ddc: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 - 8004de0: 6013 str r3, [r2, #0] + 8004e56: 4b18 ldr r3, [pc, #96] ; (8004eb8 ) + 8004e58: 681b ldr r3, [r3, #0] + 8004e5a: 4a17 ldr r2, [pc, #92] ; (8004eb8 ) + 8004e5c: f443 0370 orr.w r3, r3, #15728640 ; 0xf00000 + 8004e60: 6013 str r3, [r2, #0] portNVIC_SYSPRI2_REG |= portNVIC_SYSTICK_PRI; - 8004de2: 4b15 ldr r3, [pc, #84] ; (8004e38 ) - 8004de4: 681b ldr r3, [r3, #0] - 8004de6: 4a14 ldr r2, [pc, #80] ; (8004e38 ) - 8004de8: f043 4370 orr.w r3, r3, #4026531840 ; 0xf0000000 - 8004dec: 6013 str r3, [r2, #0] + 8004e62: 4b15 ldr r3, [pc, #84] ; (8004eb8 ) + 8004e64: 681b ldr r3, [r3, #0] + 8004e66: 4a14 ldr r2, [pc, #80] ; (8004eb8 ) + 8004e68: f043 4370 orr.w r3, r3, #4026531840 ; 0xf0000000 + 8004e6c: 6013 str r3, [r2, #0] /* Start the timer that generates the tick ISR. Interrupts are disabled here already. */ vPortSetupTimerInterrupt(); - 8004dee: f000 f8dd bl 8004fac + 8004e6e: f000 f8dd bl 800502c /* Initialise the critical nesting count ready for the first task. */ uxCriticalNesting = 0; - 8004df2: 4b12 ldr r3, [pc, #72] ; (8004e3c ) - 8004df4: 2200 movs r2, #0 - 8004df6: 601a str r2, [r3, #0] + 8004e72: 4b12 ldr r3, [pc, #72] ; (8004ebc ) + 8004e74: 2200 movs r2, #0 + 8004e76: 601a str r2, [r3, #0] /* Ensure the VFP is enabled - it should be anyway. */ vPortEnableVFP(); - 8004df8: f000 f8fc bl 8004ff4 + 8004e78: f000 f8fc bl 8005074 /* Lazy save always. */ *( portFPCCR ) |= portASPEN_AND_LSPEN_BITS; - 8004dfc: 4b10 ldr r3, [pc, #64] ; (8004e40 ) - 8004dfe: 681b ldr r3, [r3, #0] - 8004e00: 4a0f ldr r2, [pc, #60] ; (8004e40 ) - 8004e02: f043 4340 orr.w r3, r3, #3221225472 ; 0xc0000000 - 8004e06: 6013 str r3, [r2, #0] + 8004e7c: 4b10 ldr r3, [pc, #64] ; (8004ec0 ) + 8004e7e: 681b ldr r3, [r3, #0] + 8004e80: 4a0f ldr r2, [pc, #60] ; (8004ec0 ) + 8004e82: f043 4340 orr.w r3, r3, #3221225472 ; 0xc0000000 + 8004e86: 6013 str r3, [r2, #0] /* Start the first task. */ prvPortStartFirstTask(); - 8004e08: f7ff ff66 bl 8004cd8 + 8004e88: f7ff ff66 bl 8004d58 exit error function to prevent compiler warnings about a static function not being called in the case that the application writer overrides this functionality by defining configTASK_RETURN_ADDRESS. Call vTaskSwitchContext() so link time optimisation does not remove the symbol. */ vTaskSwitchContext(); - 8004e0c: f7ff f84a bl 8003ea4 + 8004e8c: f7ff f848 bl 8003f20 prvTaskExitError(); - 8004e10: f7ff ff20 bl 8004c54 + 8004e90: f7ff ff1e bl 8004cd0 /* Should not get here! */ return 0; - 8004e14: 2300 movs r3, #0 + 8004e94: 2300 movs r3, #0 } - 8004e16: 4618 mov r0, r3 - 8004e18: 3718 adds r7, #24 - 8004e1a: 46bd mov sp, r7 - 8004e1c: bd80 pop {r7, pc} - 8004e1e: bf00 nop - 8004e20: e000ed00 .word 0xe000ed00 - 8004e24: 410fc271 .word 0x410fc271 - 8004e28: 410fc270 .word 0x410fc270 - 8004e2c: e000e400 .word 0xe000e400 - 8004e30: 20000eec .word 0x20000eec - 8004e34: 20000ef0 .word 0x20000ef0 - 8004e38: e000ed20 .word 0xe000ed20 - 8004e3c: 2000000c .word 0x2000000c - 8004e40: e000ef34 .word 0xe000ef34 + 8004e96: 4618 mov r0, r3 + 8004e98: 3718 adds r7, #24 + 8004e9a: 46bd mov sp, r7 + 8004e9c: bd80 pop {r7, pc} + 8004e9e: bf00 nop + 8004ea0: e000ed00 .word 0xe000ed00 + 8004ea4: 410fc271 .word 0x410fc271 + 8004ea8: 410fc270 .word 0x410fc270 + 8004eac: e000e400 .word 0xe000e400 + 8004eb0: 20000eec .word 0x20000eec + 8004eb4: 20000ef0 .word 0x20000ef0 + 8004eb8: e000ed20 .word 0xe000ed20 + 8004ebc: 2000000c .word 0x2000000c + 8004ec0: e000ef34 .word 0xe000ef34 -08004e44 : +08004ec4 : configASSERT( uxCriticalNesting == 1000UL ); } /*-----------------------------------------------------------*/ void vPortEnterCritical( void ) { - 8004e44: b480 push {r7} - 8004e46: b083 sub sp, #12 - 8004e48: af00 add r7, sp, #0 + 8004ec4: b480 push {r7} + 8004ec6: b083 sub sp, #12 + 8004ec8: af00 add r7, sp, #0 __asm volatile - 8004e4a: f04f 0350 mov.w r3, #80 ; 0x50 - 8004e4e: f383 8811 msr BASEPRI, r3 - 8004e52: f3bf 8f6f isb sy - 8004e56: f3bf 8f4f dsb sy - 8004e5a: 607b str r3, [r7, #4] + 8004eca: f04f 0350 mov.w r3, #80 ; 0x50 + 8004ece: f383 8811 msr BASEPRI, r3 + 8004ed2: f3bf 8f6f isb sy + 8004ed6: f3bf 8f4f dsb sy + 8004eda: 607b str r3, [r7, #4] } - 8004e5c: bf00 nop + 8004edc: bf00 nop portDISABLE_INTERRUPTS(); uxCriticalNesting++; - 8004e5e: 4b0f ldr r3, [pc, #60] ; (8004e9c ) - 8004e60: 681b ldr r3, [r3, #0] - 8004e62: 3301 adds r3, #1 - 8004e64: 4a0d ldr r2, [pc, #52] ; (8004e9c ) - 8004e66: 6013 str r3, [r2, #0] + 8004ede: 4b0f ldr r3, [pc, #60] ; (8004f1c ) + 8004ee0: 681b ldr r3, [r3, #0] + 8004ee2: 3301 adds r3, #1 + 8004ee4: 4a0d ldr r2, [pc, #52] ; (8004f1c ) + 8004ee6: 6013 str r3, [r2, #0] /* This is not the interrupt safe version of the enter critical function so assert() if it is being called from an interrupt context. Only API functions that end in "FromISR" can be used in an interrupt. Only assert if the critical nesting count is 1 to protect against recursive calls if the assert function also uses a critical section. */ if( uxCriticalNesting == 1 ) - 8004e68: 4b0c ldr r3, [pc, #48] ; (8004e9c ) - 8004e6a: 681b ldr r3, [r3, #0] - 8004e6c: 2b01 cmp r3, #1 - 8004e6e: d10f bne.n 8004e90 + 8004ee8: 4b0c ldr r3, [pc, #48] ; (8004f1c ) + 8004eea: 681b ldr r3, [r3, #0] + 8004eec: 2b01 cmp r3, #1 + 8004eee: d10f bne.n 8004f10 { configASSERT( ( portNVIC_INT_CTRL_REG & portVECTACTIVE_MASK ) == 0 ); - 8004e70: 4b0b ldr r3, [pc, #44] ; (8004ea0 ) - 8004e72: 681b ldr r3, [r3, #0] - 8004e74: b2db uxtb r3, r3 - 8004e76: 2b00 cmp r3, #0 - 8004e78: d00a beq.n 8004e90 + 8004ef0: 4b0b ldr r3, [pc, #44] ; (8004f20 ) + 8004ef2: 681b ldr r3, [r3, #0] + 8004ef4: b2db uxtb r3, r3 + 8004ef6: 2b00 cmp r3, #0 + 8004ef8: d00a beq.n 8004f10 __asm volatile - 8004e7a: f04f 0350 mov.w r3, #80 ; 0x50 - 8004e7e: f383 8811 msr BASEPRI, r3 - 8004e82: f3bf 8f6f isb sy - 8004e86: f3bf 8f4f dsb sy - 8004e8a: 603b str r3, [r7, #0] + 8004efa: f04f 0350 mov.w r3, #80 ; 0x50 + 8004efe: f383 8811 msr BASEPRI, r3 + 8004f02: f3bf 8f6f isb sy + 8004f06: f3bf 8f4f dsb sy + 8004f0a: 603b str r3, [r7, #0] } - 8004e8c: bf00 nop - 8004e8e: e7fe b.n 8004e8e + 8004f0c: bf00 nop + 8004f0e: e7fe b.n 8004f0e } } - 8004e90: bf00 nop - 8004e92: 370c adds r7, #12 - 8004e94: 46bd mov sp, r7 - 8004e96: f85d 7b04 ldr.w r7, [sp], #4 - 8004e9a: 4770 bx lr - 8004e9c: 2000000c .word 0x2000000c - 8004ea0: e000ed04 .word 0xe000ed04 + 8004f10: bf00 nop + 8004f12: 370c adds r7, #12 + 8004f14: 46bd mov sp, r7 + 8004f16: f85d 7b04 ldr.w r7, [sp], #4 + 8004f1a: 4770 bx lr + 8004f1c: 2000000c .word 0x2000000c + 8004f20: e000ed04 .word 0xe000ed04 -08004ea4 : +08004f24 : /*-----------------------------------------------------------*/ void vPortExitCritical( void ) { - 8004ea4: b480 push {r7} - 8004ea6: b083 sub sp, #12 - 8004ea8: af00 add r7, sp, #0 + 8004f24: b480 push {r7} + 8004f26: b083 sub sp, #12 + 8004f28: af00 add r7, sp, #0 configASSERT( uxCriticalNesting ); - 8004eaa: 4b12 ldr r3, [pc, #72] ; (8004ef4 ) - 8004eac: 681b ldr r3, [r3, #0] - 8004eae: 2b00 cmp r3, #0 - 8004eb0: d10a bne.n 8004ec8 + 8004f2a: 4b12 ldr r3, [pc, #72] ; (8004f74 ) + 8004f2c: 681b ldr r3, [r3, #0] + 8004f2e: 2b00 cmp r3, #0 + 8004f30: d10a bne.n 8004f48 __asm volatile - 8004eb2: f04f 0350 mov.w r3, #80 ; 0x50 - 8004eb6: f383 8811 msr BASEPRI, r3 - 8004eba: f3bf 8f6f isb sy - 8004ebe: f3bf 8f4f dsb sy - 8004ec2: 607b str r3, [r7, #4] + 8004f32: f04f 0350 mov.w r3, #80 ; 0x50 + 8004f36: f383 8811 msr BASEPRI, r3 + 8004f3a: f3bf 8f6f isb sy + 8004f3e: f3bf 8f4f dsb sy + 8004f42: 607b str r3, [r7, #4] } - 8004ec4: bf00 nop - 8004ec6: e7fe b.n 8004ec6 + 8004f44: bf00 nop + 8004f46: e7fe b.n 8004f46 uxCriticalNesting--; - 8004ec8: 4b0a ldr r3, [pc, #40] ; (8004ef4 ) - 8004eca: 681b ldr r3, [r3, #0] - 8004ecc: 3b01 subs r3, #1 - 8004ece: 4a09 ldr r2, [pc, #36] ; (8004ef4 ) - 8004ed0: 6013 str r3, [r2, #0] + 8004f48: 4b0a ldr r3, [pc, #40] ; (8004f74 ) + 8004f4a: 681b ldr r3, [r3, #0] + 8004f4c: 3b01 subs r3, #1 + 8004f4e: 4a09 ldr r2, [pc, #36] ; (8004f74 ) + 8004f50: 6013 str r3, [r2, #0] if( uxCriticalNesting == 0 ) - 8004ed2: 4b08 ldr r3, [pc, #32] ; (8004ef4 ) - 8004ed4: 681b ldr r3, [r3, #0] - 8004ed6: 2b00 cmp r3, #0 - 8004ed8: d105 bne.n 8004ee6 - 8004eda: 2300 movs r3, #0 - 8004edc: 603b str r3, [r7, #0] + 8004f52: 4b08 ldr r3, [pc, #32] ; (8004f74 ) + 8004f54: 681b ldr r3, [r3, #0] + 8004f56: 2b00 cmp r3, #0 + 8004f58: d105 bne.n 8004f66 + 8004f5a: 2300 movs r3, #0 + 8004f5c: 603b str r3, [r7, #0] __asm volatile - 8004ede: 683b ldr r3, [r7, #0] - 8004ee0: f383 8811 msr BASEPRI, r3 + 8004f5e: 683b ldr r3, [r7, #0] + 8004f60: f383 8811 msr BASEPRI, r3 } - 8004ee4: bf00 nop + 8004f64: bf00 nop { portENABLE_INTERRUPTS(); } } - 8004ee6: bf00 nop - 8004ee8: 370c adds r7, #12 - 8004eea: 46bd mov sp, r7 - 8004eec: f85d 7b04 ldr.w r7, [sp], #4 - 8004ef0: 4770 bx lr - 8004ef2: bf00 nop - 8004ef4: 2000000c .word 0x2000000c + 8004f66: bf00 nop + 8004f68: 370c adds r7, #12 + 8004f6a: 46bd mov sp, r7 + 8004f6c: f85d 7b04 ldr.w r7, [sp], #4 + 8004f70: 4770 bx lr + 8004f72: bf00 nop + 8004f74: 2000000c .word 0x2000000c ... -08004f00 : +08004f80 : void xPortPendSVHandler( void ) { /* This is a naked function. */ __asm volatile - 8004f00: f3ef 8009 mrs r0, PSP - 8004f04: f3bf 8f6f isb sy - 8004f08: 4b15 ldr r3, [pc, #84] ; (8004f60 ) - 8004f0a: 681a ldr r2, [r3, #0] - 8004f0c: f01e 0f10 tst.w lr, #16 - 8004f10: bf08 it eq - 8004f12: ed20 8a10 vstmdbeq r0!, {s16-s31} - 8004f16: e920 4ff0 stmdb r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8004f1a: 6010 str r0, [r2, #0] - 8004f1c: e92d 0009 stmdb sp!, {r0, r3} - 8004f20: f04f 0050 mov.w r0, #80 ; 0x50 - 8004f24: f380 8811 msr BASEPRI, r0 - 8004f28: f3bf 8f4f dsb sy - 8004f2c: f3bf 8f6f isb sy - 8004f30: f7fe ffb8 bl 8003ea4 - 8004f34: f04f 0000 mov.w r0, #0 - 8004f38: f380 8811 msr BASEPRI, r0 - 8004f3c: bc09 pop {r0, r3} - 8004f3e: 6819 ldr r1, [r3, #0] - 8004f40: 6808 ldr r0, [r1, #0] - 8004f42: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} - 8004f46: f01e 0f10 tst.w lr, #16 - 8004f4a: bf08 it eq - 8004f4c: ecb0 8a10 vldmiaeq r0!, {s16-s31} - 8004f50: f380 8809 msr PSP, r0 - 8004f54: f3bf 8f6f isb sy - 8004f58: 4770 bx lr - 8004f5a: bf00 nop - 8004f5c: f3af 8000 nop.w + 8004f80: f3ef 8009 mrs r0, PSP + 8004f84: f3bf 8f6f isb sy + 8004f88: 4b15 ldr r3, [pc, #84] ; (8004fe0 ) + 8004f8a: 681a ldr r2, [r3, #0] + 8004f8c: f01e 0f10 tst.w lr, #16 + 8004f90: bf08 it eq + 8004f92: ed20 8a10 vstmdbeq r0!, {s16-s31} + 8004f96: e920 4ff0 stmdb r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8004f9a: 6010 str r0, [r2, #0] + 8004f9c: e92d 0009 stmdb sp!, {r0, r3} + 8004fa0: f04f 0050 mov.w r0, #80 ; 0x50 + 8004fa4: f380 8811 msr BASEPRI, r0 + 8004fa8: f3bf 8f4f dsb sy + 8004fac: f3bf 8f6f isb sy + 8004fb0: f7fe ffb6 bl 8003f20 + 8004fb4: f04f 0000 mov.w r0, #0 + 8004fb8: f380 8811 msr BASEPRI, r0 + 8004fbc: bc09 pop {r0, r3} + 8004fbe: 6819 ldr r1, [r3, #0] + 8004fc0: 6808 ldr r0, [r1, #0] + 8004fc2: e8b0 4ff0 ldmia.w r0!, {r4, r5, r6, r7, r8, r9, sl, fp, lr} + 8004fc6: f01e 0f10 tst.w lr, #16 + 8004fca: bf08 it eq + 8004fcc: ecb0 8a10 vldmiaeq r0!, {s16-s31} + 8004fd0: f380 8809 msr PSP, r0 + 8004fd4: f3bf 8f6f isb sy + 8004fd8: 4770 bx lr + 8004fda: bf00 nop + 8004fdc: f3af 8000 nop.w -08004f60 : - 8004f60: 200008c0 .word 0x200008c0 +08004fe0 : + 8004fe0: 200008c0 .word 0x200008c0 " \n" " .align 4 \n" "pxCurrentTCBConst: .word pxCurrentTCB \n" ::"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY) ); } - 8004f64: bf00 nop - 8004f66: bf00 nop + 8004fe4: bf00 nop + 8004fe6: bf00 nop -08004f68 : +08004fe8 : /*-----------------------------------------------------------*/ void xPortSysTickHandler( void ) { - 8004f68: b580 push {r7, lr} - 8004f6a: b082 sub sp, #8 - 8004f6c: af00 add r7, sp, #0 + 8004fe8: b580 push {r7, lr} + 8004fea: b082 sub sp, #8 + 8004fec: af00 add r7, sp, #0 __asm volatile - 8004f6e: f04f 0350 mov.w r3, #80 ; 0x50 - 8004f72: f383 8811 msr BASEPRI, r3 - 8004f76: f3bf 8f6f isb sy - 8004f7a: f3bf 8f4f dsb sy - 8004f7e: 607b str r3, [r7, #4] + 8004fee: f04f 0350 mov.w r3, #80 ; 0x50 + 8004ff2: f383 8811 msr BASEPRI, r3 + 8004ff6: f3bf 8f6f isb sy + 8004ffa: f3bf 8f4f dsb sy + 8004ffe: 607b str r3, [r7, #4] } - 8004f80: bf00 nop + 8005000: bf00 nop save and then restore the interrupt mask value as its value is already known. */ portDISABLE_INTERRUPTS(); { /* Increment the RTOS tick. */ if( xTaskIncrementTick() != pdFALSE ) - 8004f82: f7fe fed5 bl 8003d30 - 8004f86: 4603 mov r3, r0 - 8004f88: 2b00 cmp r3, #0 - 8004f8a: d003 beq.n 8004f94 + 8005002: f7fe fed3 bl 8003dac + 8005006: 4603 mov r3, r0 + 8005008: 2b00 cmp r3, #0 + 800500a: d003 beq.n 8005014 { /* A context switch is required. Context switching is performed in the PendSV interrupt. Pend the PendSV interrupt. */ portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT; - 8004f8c: 4b06 ldr r3, [pc, #24] ; (8004fa8 ) - 8004f8e: f04f 5280 mov.w r2, #268435456 ; 0x10000000 - 8004f92: 601a str r2, [r3, #0] - 8004f94: 2300 movs r3, #0 - 8004f96: 603b str r3, [r7, #0] + 800500c: 4b06 ldr r3, [pc, #24] ; (8005028 ) + 800500e: f04f 5280 mov.w r2, #268435456 ; 0x10000000 + 8005012: 601a str r2, [r3, #0] + 8005014: 2300 movs r3, #0 + 8005016: 603b str r3, [r7, #0] __asm volatile - 8004f98: 683b ldr r3, [r7, #0] - 8004f9a: f383 8811 msr BASEPRI, r3 + 8005018: 683b ldr r3, [r7, #0] + 800501a: f383 8811 msr BASEPRI, r3 } - 8004f9e: bf00 nop + 800501e: bf00 nop } } portENABLE_INTERRUPTS(); } - 8004fa0: bf00 nop - 8004fa2: 3708 adds r7, #8 - 8004fa4: 46bd mov sp, r7 - 8004fa6: bd80 pop {r7, pc} - 8004fa8: e000ed04 .word 0xe000ed04 + 8005020: bf00 nop + 8005022: 3708 adds r7, #8 + 8005024: 46bd mov sp, r7 + 8005026: bd80 pop {r7, pc} + 8005028: e000ed04 .word 0xe000ed04 -08004fac : +0800502c : /* * Setup the systick timer to generate the tick interrupts at the required * frequency. */ __attribute__(( weak )) void vPortSetupTimerInterrupt( void ) { - 8004fac: b480 push {r7} - 8004fae: af00 add r7, sp, #0 + 800502c: b480 push {r7} + 800502e: af00 add r7, sp, #0 ulStoppedTimerCompensation = portMISSED_COUNTS_FACTOR / ( configCPU_CLOCK_HZ / configSYSTICK_CLOCK_HZ ); } #endif /* configUSE_TICKLESS_IDLE */ /* Stop and clear the SysTick. */ portNVIC_SYSTICK_CTRL_REG = 0UL; - 8004fb0: 4b0b ldr r3, [pc, #44] ; (8004fe0 ) - 8004fb2: 2200 movs r2, #0 - 8004fb4: 601a str r2, [r3, #0] + 8005030: 4b0b ldr r3, [pc, #44] ; (8005060 ) + 8005032: 2200 movs r2, #0 + 8005034: 601a str r2, [r3, #0] portNVIC_SYSTICK_CURRENT_VALUE_REG = 0UL; - 8004fb6: 4b0b ldr r3, [pc, #44] ; (8004fe4 ) - 8004fb8: 2200 movs r2, #0 - 8004fba: 601a str r2, [r3, #0] + 8005036: 4b0b ldr r3, [pc, #44] ; (8005064 ) + 8005038: 2200 movs r2, #0 + 800503a: 601a str r2, [r3, #0] /* Configure SysTick to interrupt at the requested rate. */ portNVIC_SYSTICK_LOAD_REG = ( configSYSTICK_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL; - 8004fbc: 4b0a ldr r3, [pc, #40] ; (8004fe8 ) - 8004fbe: 681b ldr r3, [r3, #0] - 8004fc0: 4a0a ldr r2, [pc, #40] ; (8004fec ) - 8004fc2: fba2 2303 umull r2, r3, r2, r3 - 8004fc6: 099b lsrs r3, r3, #6 - 8004fc8: 4a09 ldr r2, [pc, #36] ; (8004ff0 ) - 8004fca: 3b01 subs r3, #1 - 8004fcc: 6013 str r3, [r2, #0] + 800503c: 4b0a ldr r3, [pc, #40] ; (8005068 ) + 800503e: 681b ldr r3, [r3, #0] + 8005040: 4a0a ldr r2, [pc, #40] ; (800506c ) + 8005042: fba2 2303 umull r2, r3, r2, r3 + 8005046: 099b lsrs r3, r3, #6 + 8005048: 4a09 ldr r2, [pc, #36] ; (8005070 ) + 800504a: 3b01 subs r3, #1 + 800504c: 6013 str r3, [r2, #0] portNVIC_SYSTICK_CTRL_REG = ( portNVIC_SYSTICK_CLK_BIT | portNVIC_SYSTICK_INT_BIT | portNVIC_SYSTICK_ENABLE_BIT ); - 8004fce: 4b04 ldr r3, [pc, #16] ; (8004fe0 ) - 8004fd0: 2207 movs r2, #7 - 8004fd2: 601a str r2, [r3, #0] + 800504e: 4b04 ldr r3, [pc, #16] ; (8005060 ) + 8005050: 2207 movs r2, #7 + 8005052: 601a str r2, [r3, #0] } - 8004fd4: bf00 nop - 8004fd6: 46bd mov sp, r7 - 8004fd8: f85d 7b04 ldr.w r7, [sp], #4 - 8004fdc: 4770 bx lr - 8004fde: bf00 nop - 8004fe0: e000e010 .word 0xe000e010 - 8004fe4: e000e018 .word 0xe000e018 - 8004fe8: 20000000 .word 0x20000000 - 8004fec: 10624dd3 .word 0x10624dd3 - 8004ff0: e000e014 .word 0xe000e014 + 8005054: bf00 nop + 8005056: 46bd mov sp, r7 + 8005058: f85d 7b04 ldr.w r7, [sp], #4 + 800505c: 4770 bx lr + 800505e: bf00 nop + 8005060: e000e010 .word 0xe000e010 + 8005064: e000e018 .word 0xe000e018 + 8005068: 20000000 .word 0x20000000 + 800506c: 10624dd3 .word 0x10624dd3 + 8005070: e000e014 .word 0xe000e014 -08004ff4 : +08005074 : /*-----------------------------------------------------------*/ /* This is a naked function. */ static void vPortEnableVFP( void ) { __asm volatile - 8004ff4: f8df 000c ldr.w r0, [pc, #12] ; 8005004 - 8004ff8: 6801 ldr r1, [r0, #0] - 8004ffa: f441 0170 orr.w r1, r1, #15728640 ; 0xf00000 - 8004ffe: 6001 str r1, [r0, #0] - 8005000: 4770 bx lr + 8005074: f8df 000c ldr.w r0, [pc, #12] ; 8005084 + 8005078: 6801 ldr r1, [r0, #0] + 800507a: f441 0170 orr.w r1, r1, #15728640 ; 0xf00000 + 800507e: 6001 str r1, [r0, #0] + 8005080: 4770 bx lr " \n" " orr r1, r1, #( 0xf << 20 ) \n" /* Enable CP10 and CP11 coprocessors, then save back. */ " str r1, [r0] \n" " bx r14 " ); } - 8005002: bf00 nop - 8005004: e000ed88 .word 0xe000ed88 + 8005082: bf00 nop + 8005084: e000ed88 .word 0xe000ed88 -08005008 : +08005088 : /*-----------------------------------------------------------*/ #if( configASSERT_DEFINED == 1 ) void vPortValidateInterruptPriority( void ) { - 8005008: b480 push {r7} - 800500a: b085 sub sp, #20 - 800500c: af00 add r7, sp, #0 + 8005088: b480 push {r7} + 800508a: b085 sub sp, #20 + 800508c: af00 add r7, sp, #0 uint32_t ulCurrentInterrupt; uint8_t ucCurrentPriority; /* Obtain the number of the currently executing interrupt. */ __asm volatile( "mrs %0, ipsr" : "=r"( ulCurrentInterrupt ) :: "memory" ); - 800500e: f3ef 8305 mrs r3, IPSR - 8005012: 60fb str r3, [r7, #12] + 800508e: f3ef 8305 mrs r3, IPSR + 8005092: 60fb str r3, [r7, #12] /* Is the interrupt number a user defined interrupt? */ if( ulCurrentInterrupt >= portFIRST_USER_INTERRUPT_NUMBER ) - 8005014: 68fb ldr r3, [r7, #12] - 8005016: 2b0f cmp r3, #15 - 8005018: d914 bls.n 8005044 + 8005094: 68fb ldr r3, [r7, #12] + 8005096: 2b0f cmp r3, #15 + 8005098: d914 bls.n 80050c4 { /* Look up the interrupt's priority. */ ucCurrentPriority = pcInterruptPriorityRegisters[ ulCurrentInterrupt ]; - 800501a: 4a17 ldr r2, [pc, #92] ; (8005078 ) - 800501c: 68fb ldr r3, [r7, #12] - 800501e: 4413 add r3, r2 - 8005020: 781b ldrb r3, [r3, #0] - 8005022: 72fb strb r3, [r7, #11] + 800509a: 4a17 ldr r2, [pc, #92] ; (80050f8 ) + 800509c: 68fb ldr r3, [r7, #12] + 800509e: 4413 add r3, r2 + 80050a0: 781b ldrb r3, [r3, #0] + 80050a2: 72fb strb r3, [r7, #11] interrupt entry is as fast and simple as possible. The following links provide detailed information: http://www.freertos.org/RTOS-Cortex-M3-M4.html http://www.freertos.org/FAQHelp.html */ configASSERT( ucCurrentPriority >= ucMaxSysCallPriority ); - 8005024: 4b15 ldr r3, [pc, #84] ; (800507c ) - 8005026: 781b ldrb r3, [r3, #0] - 8005028: 7afa ldrb r2, [r7, #11] - 800502a: 429a cmp r2, r3 - 800502c: d20a bcs.n 8005044 + 80050a4: 4b15 ldr r3, [pc, #84] ; (80050fc ) + 80050a6: 781b ldrb r3, [r3, #0] + 80050a8: 7afa ldrb r2, [r7, #11] + 80050aa: 429a cmp r2, r3 + 80050ac: d20a bcs.n 80050c4 __asm volatile - 800502e: f04f 0350 mov.w r3, #80 ; 0x50 - 8005032: f383 8811 msr BASEPRI, r3 - 8005036: f3bf 8f6f isb sy - 800503a: f3bf 8f4f dsb sy - 800503e: 607b str r3, [r7, #4] + 80050ae: f04f 0350 mov.w r3, #80 ; 0x50 + 80050b2: f383 8811 msr BASEPRI, r3 + 80050b6: f3bf 8f6f isb sy + 80050ba: f3bf 8f4f dsb sy + 80050be: 607b str r3, [r7, #4] } - 8005040: bf00 nop - 8005042: e7fe b.n 8005042 + 80050c0: bf00 nop + 80050c2: e7fe b.n 80050c2 configuration then the correct setting can be achieved on all Cortex-M devices by calling NVIC_SetPriorityGrouping( 0 ); before starting the scheduler. Note however that some vendor specific peripheral libraries assume a non-zero priority group setting, in which cases using a value of zero will result in unpredictable behaviour. */ configASSERT( ( portAIRCR_REG & portPRIORITY_GROUP_MASK ) <= ulMaxPRIGROUPValue ); - 8005044: 4b0e ldr r3, [pc, #56] ; (8005080 ) - 8005046: 681b ldr r3, [r3, #0] - 8005048: f403 62e0 and.w r2, r3, #1792 ; 0x700 - 800504c: 4b0d ldr r3, [pc, #52] ; (8005084 ) - 800504e: 681b ldr r3, [r3, #0] - 8005050: 429a cmp r2, r3 - 8005052: d90a bls.n 800506a + 80050c4: 4b0e ldr r3, [pc, #56] ; (8005100 ) + 80050c6: 681b ldr r3, [r3, #0] + 80050c8: f403 62e0 and.w r2, r3, #1792 ; 0x700 + 80050cc: 4b0d ldr r3, [pc, #52] ; (8005104 ) + 80050ce: 681b ldr r3, [r3, #0] + 80050d0: 429a cmp r2, r3 + 80050d2: d90a bls.n 80050ea __asm volatile - 8005054: f04f 0350 mov.w r3, #80 ; 0x50 - 8005058: f383 8811 msr BASEPRI, r3 - 800505c: f3bf 8f6f isb sy - 8005060: f3bf 8f4f dsb sy - 8005064: 603b str r3, [r7, #0] + 80050d4: f04f 0350 mov.w r3, #80 ; 0x50 + 80050d8: f383 8811 msr BASEPRI, r3 + 80050dc: f3bf 8f6f isb sy + 80050e0: f3bf 8f4f dsb sy + 80050e4: 603b str r3, [r7, #0] } - 8005066: bf00 nop - 8005068: e7fe b.n 8005068 + 80050e6: bf00 nop + 80050e8: e7fe b.n 80050e8 } - 800506a: bf00 nop - 800506c: 3714 adds r7, #20 - 800506e: 46bd mov sp, r7 - 8005070: f85d 7b04 ldr.w r7, [sp], #4 - 8005074: 4770 bx lr - 8005076: bf00 nop - 8005078: e000e3f0 .word 0xe000e3f0 - 800507c: 20000eec .word 0x20000eec - 8005080: e000ed0c .word 0xe000ed0c - 8005084: 20000ef0 .word 0x20000ef0 + 80050ea: bf00 nop + 80050ec: 3714 adds r7, #20 + 80050ee: 46bd mov sp, r7 + 80050f0: f85d 7b04 ldr.w r7, [sp], #4 + 80050f4: 4770 bx lr + 80050f6: bf00 nop + 80050f8: e000e3f0 .word 0xe000e3f0 + 80050fc: 20000eec .word 0x20000eec + 8005100: e000ed0c .word 0xe000ed0c + 8005104: 20000ef0 .word 0x20000ef0 -08005088 : +08005108 : static size_t xBlockAllocatedBit = 0; /*-----------------------------------------------------------*/ void *pvPortMalloc( size_t xWantedSize ) { - 8005088: b580 push {r7, lr} - 800508a: b08a sub sp, #40 ; 0x28 - 800508c: af00 add r7, sp, #0 - 800508e: 6078 str r0, [r7, #4] + 8005108: b580 push {r7, lr} + 800510a: b08a sub sp, #40 ; 0x28 + 800510c: af00 add r7, sp, #0 + 800510e: 6078 str r0, [r7, #4] BlockLink_t *pxBlock, *pxPreviousBlock, *pxNewBlockLink; void *pvReturn = NULL; - 8005090: 2300 movs r3, #0 - 8005092: 61fb str r3, [r7, #28] + 8005110: 2300 movs r3, #0 + 8005112: 61fb str r3, [r7, #28] vTaskSuspendAll(); - 8005094: f7fe fd90 bl 8003bb8 + 8005114: f7fe fd8e bl 8003c34 { /* If this is the first call to malloc then the heap will require initialisation to setup the list of free blocks. */ if( pxEnd == NULL ) - 8005098: 4b5b ldr r3, [pc, #364] ; (8005208 ) - 800509a: 681b ldr r3, [r3, #0] - 800509c: 2b00 cmp r3, #0 - 800509e: d101 bne.n 80050a4 + 8005118: 4b5b ldr r3, [pc, #364] ; (8005288 ) + 800511a: 681b ldr r3, [r3, #0] + 800511c: 2b00 cmp r3, #0 + 800511e: d101 bne.n 8005124 { prvHeapInit(); - 80050a0: f000 f920 bl 80052e4 + 8005120: f000 f920 bl 8005364 /* Check the requested block size is not so large that the top bit is set. The top bit of the block size member of the BlockLink_t structure is used to determine who owns the block - the application or the kernel, so it must be free. */ if( ( xWantedSize & xBlockAllocatedBit ) == 0 ) - 80050a4: 4b59 ldr r3, [pc, #356] ; (800520c ) - 80050a6: 681a ldr r2, [r3, #0] - 80050a8: 687b ldr r3, [r7, #4] - 80050aa: 4013 ands r3, r2 - 80050ac: 2b00 cmp r3, #0 - 80050ae: f040 8093 bne.w 80051d8 + 8005124: 4b59 ldr r3, [pc, #356] ; (800528c ) + 8005126: 681a ldr r2, [r3, #0] + 8005128: 687b ldr r3, [r7, #4] + 800512a: 4013 ands r3, r2 + 800512c: 2b00 cmp r3, #0 + 800512e: f040 8093 bne.w 8005258 { /* The wanted size is increased so it can contain a BlockLink_t structure in addition to the requested amount of bytes. */ if( xWantedSize > 0 ) - 80050b2: 687b ldr r3, [r7, #4] - 80050b4: 2b00 cmp r3, #0 - 80050b6: d01d beq.n 80050f4 + 8005132: 687b ldr r3, [r7, #4] + 8005134: 2b00 cmp r3, #0 + 8005136: d01d beq.n 8005174 { xWantedSize += xHeapStructSize; - 80050b8: 2208 movs r2, #8 - 80050ba: 687b ldr r3, [r7, #4] - 80050bc: 4413 add r3, r2 - 80050be: 607b str r3, [r7, #4] + 8005138: 2208 movs r2, #8 + 800513a: 687b ldr r3, [r7, #4] + 800513c: 4413 add r3, r2 + 800513e: 607b str r3, [r7, #4] /* Ensure that blocks are always aligned to the required number of bytes. */ if( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) != 0x00 ) - 80050c0: 687b ldr r3, [r7, #4] - 80050c2: f003 0307 and.w r3, r3, #7 - 80050c6: 2b00 cmp r3, #0 - 80050c8: d014 beq.n 80050f4 + 8005140: 687b ldr r3, [r7, #4] + 8005142: f003 0307 and.w r3, r3, #7 + 8005146: 2b00 cmp r3, #0 + 8005148: d014 beq.n 8005174 { /* Byte alignment required. */ xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) ); - 80050ca: 687b ldr r3, [r7, #4] - 80050cc: f023 0307 bic.w r3, r3, #7 - 80050d0: 3308 adds r3, #8 - 80050d2: 607b str r3, [r7, #4] + 800514a: 687b ldr r3, [r7, #4] + 800514c: f023 0307 bic.w r3, r3, #7 + 8005150: 3308 adds r3, #8 + 8005152: 607b str r3, [r7, #4] configASSERT( ( xWantedSize & portBYTE_ALIGNMENT_MASK ) == 0 ); - 80050d4: 687b ldr r3, [r7, #4] - 80050d6: f003 0307 and.w r3, r3, #7 - 80050da: 2b00 cmp r3, #0 - 80050dc: d00a beq.n 80050f4 + 8005154: 687b ldr r3, [r7, #4] + 8005156: f003 0307 and.w r3, r3, #7 + 800515a: 2b00 cmp r3, #0 + 800515c: d00a beq.n 8005174 __asm volatile - 80050de: f04f 0350 mov.w r3, #80 ; 0x50 - 80050e2: f383 8811 msr BASEPRI, r3 - 80050e6: f3bf 8f6f isb sy - 80050ea: f3bf 8f4f dsb sy - 80050ee: 617b str r3, [r7, #20] + 800515e: f04f 0350 mov.w r3, #80 ; 0x50 + 8005162: f383 8811 msr BASEPRI, r3 + 8005166: f3bf 8f6f isb sy + 800516a: f3bf 8f4f dsb sy + 800516e: 617b str r3, [r7, #20] } - 80050f0: bf00 nop - 80050f2: e7fe b.n 80050f2 + 8005170: bf00 nop + 8005172: e7fe b.n 8005172 else { mtCOVERAGE_TEST_MARKER(); } if( ( xWantedSize > 0 ) && ( xWantedSize <= xFreeBytesRemaining ) ) - 80050f4: 687b ldr r3, [r7, #4] - 80050f6: 2b00 cmp r3, #0 - 80050f8: d06e beq.n 80051d8 - 80050fa: 4b45 ldr r3, [pc, #276] ; (8005210 ) - 80050fc: 681b ldr r3, [r3, #0] - 80050fe: 687a ldr r2, [r7, #4] - 8005100: 429a cmp r2, r3 - 8005102: d869 bhi.n 80051d8 + 8005174: 687b ldr r3, [r7, #4] + 8005176: 2b00 cmp r3, #0 + 8005178: d06e beq.n 8005258 + 800517a: 4b45 ldr r3, [pc, #276] ; (8005290 ) + 800517c: 681b ldr r3, [r3, #0] + 800517e: 687a ldr r2, [r7, #4] + 8005180: 429a cmp r2, r3 + 8005182: d869 bhi.n 8005258 { /* Traverse the list from the start (lowest address) block until one of adequate size is found. */ pxPreviousBlock = &xStart; - 8005104: 4b43 ldr r3, [pc, #268] ; (8005214 ) - 8005106: 623b str r3, [r7, #32] + 8005184: 4b43 ldr r3, [pc, #268] ; (8005294 ) + 8005186: 623b str r3, [r7, #32] pxBlock = xStart.pxNextFreeBlock; - 8005108: 4b42 ldr r3, [pc, #264] ; (8005214 ) - 800510a: 681b ldr r3, [r3, #0] - 800510c: 627b str r3, [r7, #36] ; 0x24 + 8005188: 4b42 ldr r3, [pc, #264] ; (8005294 ) + 800518a: 681b ldr r3, [r3, #0] + 800518c: 627b str r3, [r7, #36] ; 0x24 while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) - 800510e: e004 b.n 800511a + 800518e: e004 b.n 800519a { pxPreviousBlock = pxBlock; - 8005110: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005112: 623b str r3, [r7, #32] + 8005190: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005192: 623b str r3, [r7, #32] pxBlock = pxBlock->pxNextFreeBlock; - 8005114: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005116: 681b ldr r3, [r3, #0] - 8005118: 627b str r3, [r7, #36] ; 0x24 + 8005194: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005196: 681b ldr r3, [r3, #0] + 8005198: 627b str r3, [r7, #36] ; 0x24 while( ( pxBlock->xBlockSize < xWantedSize ) && ( pxBlock->pxNextFreeBlock != NULL ) ) - 800511a: 6a7b ldr r3, [r7, #36] ; 0x24 - 800511c: 685b ldr r3, [r3, #4] - 800511e: 687a ldr r2, [r7, #4] - 8005120: 429a cmp r2, r3 - 8005122: d903 bls.n 800512c - 8005124: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005126: 681b ldr r3, [r3, #0] - 8005128: 2b00 cmp r3, #0 - 800512a: d1f1 bne.n 8005110 + 800519a: 6a7b ldr r3, [r7, #36] ; 0x24 + 800519c: 685b ldr r3, [r3, #4] + 800519e: 687a ldr r2, [r7, #4] + 80051a0: 429a cmp r2, r3 + 80051a2: d903 bls.n 80051ac + 80051a4: 6a7b ldr r3, [r7, #36] ; 0x24 + 80051a6: 681b ldr r3, [r3, #0] + 80051a8: 2b00 cmp r3, #0 + 80051aa: d1f1 bne.n 8005190 } /* If the end marker was reached then a block of adequate size was not found. */ if( pxBlock != pxEnd ) - 800512c: 4b36 ldr r3, [pc, #216] ; (8005208 ) - 800512e: 681b ldr r3, [r3, #0] - 8005130: 6a7a ldr r2, [r7, #36] ; 0x24 - 8005132: 429a cmp r2, r3 - 8005134: d050 beq.n 80051d8 + 80051ac: 4b36 ldr r3, [pc, #216] ; (8005288 ) + 80051ae: 681b ldr r3, [r3, #0] + 80051b0: 6a7a ldr r2, [r7, #36] ; 0x24 + 80051b2: 429a cmp r2, r3 + 80051b4: d050 beq.n 8005258 { /* Return the memory space pointed to - jumping over the BlockLink_t structure at its start. */ pvReturn = ( void * ) ( ( ( uint8_t * ) pxPreviousBlock->pxNextFreeBlock ) + xHeapStructSize ); - 8005136: 6a3b ldr r3, [r7, #32] - 8005138: 681b ldr r3, [r3, #0] - 800513a: 2208 movs r2, #8 - 800513c: 4413 add r3, r2 - 800513e: 61fb str r3, [r7, #28] + 80051b6: 6a3b ldr r3, [r7, #32] + 80051b8: 681b ldr r3, [r3, #0] + 80051ba: 2208 movs r2, #8 + 80051bc: 4413 add r3, r2 + 80051be: 61fb str r3, [r7, #28] /* This block is being returned for use so must be taken out of the list of free blocks. */ pxPreviousBlock->pxNextFreeBlock = pxBlock->pxNextFreeBlock; - 8005140: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005142: 681a ldr r2, [r3, #0] - 8005144: 6a3b ldr r3, [r7, #32] - 8005146: 601a str r2, [r3, #0] + 80051c0: 6a7b ldr r3, [r7, #36] ; 0x24 + 80051c2: 681a ldr r2, [r3, #0] + 80051c4: 6a3b ldr r3, [r7, #32] + 80051c6: 601a str r2, [r3, #0] /* If the block is larger than required it can be split into two. */ if( ( pxBlock->xBlockSize - xWantedSize ) > heapMINIMUM_BLOCK_SIZE ) - 8005148: 6a7b ldr r3, [r7, #36] ; 0x24 - 800514a: 685a ldr r2, [r3, #4] - 800514c: 687b ldr r3, [r7, #4] - 800514e: 1ad2 subs r2, r2, r3 - 8005150: 2308 movs r3, #8 - 8005152: 005b lsls r3, r3, #1 - 8005154: 429a cmp r2, r3 - 8005156: d91f bls.n 8005198 + 80051c8: 6a7b ldr r3, [r7, #36] ; 0x24 + 80051ca: 685a ldr r2, [r3, #4] + 80051cc: 687b ldr r3, [r7, #4] + 80051ce: 1ad2 subs r2, r2, r3 + 80051d0: 2308 movs r3, #8 + 80051d2: 005b lsls r3, r3, #1 + 80051d4: 429a cmp r2, r3 + 80051d6: d91f bls.n 8005218 { /* This block is to be split into two. Create a new block following the number of bytes requested. The void cast is used to prevent byte alignment warnings from the compiler. */ pxNewBlockLink = ( void * ) ( ( ( uint8_t * ) pxBlock ) + xWantedSize ); - 8005158: 6a7a ldr r2, [r7, #36] ; 0x24 - 800515a: 687b ldr r3, [r7, #4] - 800515c: 4413 add r3, r2 - 800515e: 61bb str r3, [r7, #24] + 80051d8: 6a7a ldr r2, [r7, #36] ; 0x24 + 80051da: 687b ldr r3, [r7, #4] + 80051dc: 4413 add r3, r2 + 80051de: 61bb str r3, [r7, #24] configASSERT( ( ( ( size_t ) pxNewBlockLink ) & portBYTE_ALIGNMENT_MASK ) == 0 ); - 8005160: 69bb ldr r3, [r7, #24] - 8005162: f003 0307 and.w r3, r3, #7 - 8005166: 2b00 cmp r3, #0 - 8005168: d00a beq.n 8005180 + 80051e0: 69bb ldr r3, [r7, #24] + 80051e2: f003 0307 and.w r3, r3, #7 + 80051e6: 2b00 cmp r3, #0 + 80051e8: d00a beq.n 8005200 __asm volatile - 800516a: f04f 0350 mov.w r3, #80 ; 0x50 - 800516e: f383 8811 msr BASEPRI, r3 - 8005172: f3bf 8f6f isb sy - 8005176: f3bf 8f4f dsb sy - 800517a: 613b str r3, [r7, #16] + 80051ea: f04f 0350 mov.w r3, #80 ; 0x50 + 80051ee: f383 8811 msr BASEPRI, r3 + 80051f2: f3bf 8f6f isb sy + 80051f6: f3bf 8f4f dsb sy + 80051fa: 613b str r3, [r7, #16] } - 800517c: bf00 nop - 800517e: e7fe b.n 800517e + 80051fc: bf00 nop + 80051fe: e7fe b.n 80051fe /* Calculate the sizes of two blocks split from the single block. */ pxNewBlockLink->xBlockSize = pxBlock->xBlockSize - xWantedSize; - 8005180: 6a7b ldr r3, [r7, #36] ; 0x24 - 8005182: 685a ldr r2, [r3, #4] - 8005184: 687b ldr r3, [r7, #4] - 8005186: 1ad2 subs r2, r2, r3 - 8005188: 69bb ldr r3, [r7, #24] - 800518a: 605a str r2, [r3, #4] + 8005200: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005202: 685a ldr r2, [r3, #4] + 8005204: 687b ldr r3, [r7, #4] + 8005206: 1ad2 subs r2, r2, r3 + 8005208: 69bb ldr r3, [r7, #24] + 800520a: 605a str r2, [r3, #4] pxBlock->xBlockSize = xWantedSize; - 800518c: 6a7b ldr r3, [r7, #36] ; 0x24 - 800518e: 687a ldr r2, [r7, #4] - 8005190: 605a str r2, [r3, #4] + 800520c: 6a7b ldr r3, [r7, #36] ; 0x24 + 800520e: 687a ldr r2, [r7, #4] + 8005210: 605a str r2, [r3, #4] /* Insert the new block into the list of free blocks. */ prvInsertBlockIntoFreeList( pxNewBlockLink ); - 8005192: 69b8 ldr r0, [r7, #24] - 8005194: f000 f908 bl 80053a8 + 8005212: 69b8 ldr r0, [r7, #24] + 8005214: f000 f908 bl 8005428 else { mtCOVERAGE_TEST_MARKER(); } xFreeBytesRemaining -= pxBlock->xBlockSize; - 8005198: 4b1d ldr r3, [pc, #116] ; (8005210 ) - 800519a: 681a ldr r2, [r3, #0] - 800519c: 6a7b ldr r3, [r7, #36] ; 0x24 - 800519e: 685b ldr r3, [r3, #4] - 80051a0: 1ad3 subs r3, r2, r3 - 80051a2: 4a1b ldr r2, [pc, #108] ; (8005210 ) - 80051a4: 6013 str r3, [r2, #0] + 8005218: 4b1d ldr r3, [pc, #116] ; (8005290 ) + 800521a: 681a ldr r2, [r3, #0] + 800521c: 6a7b ldr r3, [r7, #36] ; 0x24 + 800521e: 685b ldr r3, [r3, #4] + 8005220: 1ad3 subs r3, r2, r3 + 8005222: 4a1b ldr r2, [pc, #108] ; (8005290 ) + 8005224: 6013 str r3, [r2, #0] if( xFreeBytesRemaining < xMinimumEverFreeBytesRemaining ) - 80051a6: 4b1a ldr r3, [pc, #104] ; (8005210 ) - 80051a8: 681a ldr r2, [r3, #0] - 80051aa: 4b1b ldr r3, [pc, #108] ; (8005218 ) - 80051ac: 681b ldr r3, [r3, #0] - 80051ae: 429a cmp r2, r3 - 80051b0: d203 bcs.n 80051ba + 8005226: 4b1a ldr r3, [pc, #104] ; (8005290 ) + 8005228: 681a ldr r2, [r3, #0] + 800522a: 4b1b ldr r3, [pc, #108] ; (8005298 ) + 800522c: 681b ldr r3, [r3, #0] + 800522e: 429a cmp r2, r3 + 8005230: d203 bcs.n 800523a { xMinimumEverFreeBytesRemaining = xFreeBytesRemaining; - 80051b2: 4b17 ldr r3, [pc, #92] ; (8005210 ) - 80051b4: 681b ldr r3, [r3, #0] - 80051b6: 4a18 ldr r2, [pc, #96] ; (8005218 ) - 80051b8: 6013 str r3, [r2, #0] + 8005232: 4b17 ldr r3, [pc, #92] ; (8005290 ) + 8005234: 681b ldr r3, [r3, #0] + 8005236: 4a18 ldr r2, [pc, #96] ; (8005298 ) + 8005238: 6013 str r3, [r2, #0] mtCOVERAGE_TEST_MARKER(); } /* The block is being returned - it is allocated and owned by the application and has no "next" block. */ pxBlock->xBlockSize |= xBlockAllocatedBit; - 80051ba: 6a7b ldr r3, [r7, #36] ; 0x24 - 80051bc: 685a ldr r2, [r3, #4] - 80051be: 4b13 ldr r3, [pc, #76] ; (800520c ) - 80051c0: 681b ldr r3, [r3, #0] - 80051c2: 431a orrs r2, r3 - 80051c4: 6a7b ldr r3, [r7, #36] ; 0x24 - 80051c6: 605a str r2, [r3, #4] + 800523a: 6a7b ldr r3, [r7, #36] ; 0x24 + 800523c: 685a ldr r2, [r3, #4] + 800523e: 4b13 ldr r3, [pc, #76] ; (800528c ) + 8005240: 681b ldr r3, [r3, #0] + 8005242: 431a orrs r2, r3 + 8005244: 6a7b ldr r3, [r7, #36] ; 0x24 + 8005246: 605a str r2, [r3, #4] pxBlock->pxNextFreeBlock = NULL; - 80051c8: 6a7b ldr r3, [r7, #36] ; 0x24 - 80051ca: 2200 movs r2, #0 - 80051cc: 601a str r2, [r3, #0] + 8005248: 6a7b ldr r3, [r7, #36] ; 0x24 + 800524a: 2200 movs r2, #0 + 800524c: 601a str r2, [r3, #0] xNumberOfSuccessfulAllocations++; - 80051ce: 4b13 ldr r3, [pc, #76] ; (800521c ) - 80051d0: 681b ldr r3, [r3, #0] - 80051d2: 3301 adds r3, #1 - 80051d4: 4a11 ldr r2, [pc, #68] ; (800521c ) - 80051d6: 6013 str r3, [r2, #0] + 800524e: 4b13 ldr r3, [pc, #76] ; (800529c ) + 8005250: 681b ldr r3, [r3, #0] + 8005252: 3301 adds r3, #1 + 8005254: 4a11 ldr r2, [pc, #68] ; (800529c ) + 8005256: 6013 str r3, [r2, #0] mtCOVERAGE_TEST_MARKER(); } traceMALLOC( pvReturn, xWantedSize ); } ( void ) xTaskResumeAll(); - 80051d8: f7fe fcfc bl 8003bd4 + 8005258: f7fe fcfa bl 8003c50 mtCOVERAGE_TEST_MARKER(); } } #endif configASSERT( ( ( ( size_t ) pvReturn ) & ( size_t ) portBYTE_ALIGNMENT_MASK ) == 0 ); - 80051dc: 69fb ldr r3, [r7, #28] - 80051de: f003 0307 and.w r3, r3, #7 - 80051e2: 2b00 cmp r3, #0 - 80051e4: d00a beq.n 80051fc + 800525c: 69fb ldr r3, [r7, #28] + 800525e: f003 0307 and.w r3, r3, #7 + 8005262: 2b00 cmp r3, #0 + 8005264: d00a beq.n 800527c __asm volatile - 80051e6: f04f 0350 mov.w r3, #80 ; 0x50 - 80051ea: f383 8811 msr BASEPRI, r3 - 80051ee: f3bf 8f6f isb sy - 80051f2: f3bf 8f4f dsb sy - 80051f6: 60fb str r3, [r7, #12] + 8005266: f04f 0350 mov.w r3, #80 ; 0x50 + 800526a: f383 8811 msr BASEPRI, r3 + 800526e: f3bf 8f6f isb sy + 8005272: f3bf 8f4f dsb sy + 8005276: 60fb str r3, [r7, #12] } - 80051f8: bf00 nop - 80051fa: e7fe b.n 80051fa + 8005278: bf00 nop + 800527a: e7fe b.n 800527a return pvReturn; - 80051fc: 69fb ldr r3, [r7, #28] + 800527c: 69fb ldr r3, [r7, #28] } - 80051fe: 4618 mov r0, r3 - 8005200: 3728 adds r7, #40 ; 0x28 - 8005202: 46bd mov sp, r7 - 8005204: bd80 pop {r7, pc} - 8005206: bf00 nop - 8005208: 20004afc .word 0x20004afc - 800520c: 20004b10 .word 0x20004b10 - 8005210: 20004b00 .word 0x20004b00 - 8005214: 20004af4 .word 0x20004af4 - 8005218: 20004b04 .word 0x20004b04 - 800521c: 20004b08 .word 0x20004b08 + 800527e: 4618 mov r0, r3 + 8005280: 3728 adds r7, #40 ; 0x28 + 8005282: 46bd mov sp, r7 + 8005284: bd80 pop {r7, pc} + 8005286: bf00 nop + 8005288: 20004afc .word 0x20004afc + 800528c: 20004b10 .word 0x20004b10 + 8005290: 20004b00 .word 0x20004b00 + 8005294: 20004af4 .word 0x20004af4 + 8005298: 20004b04 .word 0x20004b04 + 800529c: 20004b08 .word 0x20004b08 -08005220 : +080052a0 : /*-----------------------------------------------------------*/ void vPortFree( void *pv ) { - 8005220: b580 push {r7, lr} - 8005222: b086 sub sp, #24 - 8005224: af00 add r7, sp, #0 - 8005226: 6078 str r0, [r7, #4] + 80052a0: b580 push {r7, lr} + 80052a2: b086 sub sp, #24 + 80052a4: af00 add r7, sp, #0 + 80052a6: 6078 str r0, [r7, #4] uint8_t *puc = ( uint8_t * ) pv; - 8005228: 687b ldr r3, [r7, #4] - 800522a: 617b str r3, [r7, #20] + 80052a8: 687b ldr r3, [r7, #4] + 80052aa: 617b str r3, [r7, #20] BlockLink_t *pxLink; if( pv != NULL ) - 800522c: 687b ldr r3, [r7, #4] - 800522e: 2b00 cmp r3, #0 - 8005230: d04d beq.n 80052ce + 80052ac: 687b ldr r3, [r7, #4] + 80052ae: 2b00 cmp r3, #0 + 80052b0: d04d beq.n 800534e { /* The memory being freed will have an BlockLink_t structure immediately before it. */ puc -= xHeapStructSize; - 8005232: 2308 movs r3, #8 - 8005234: 425b negs r3, r3 - 8005236: 697a ldr r2, [r7, #20] - 8005238: 4413 add r3, r2 - 800523a: 617b str r3, [r7, #20] + 80052b2: 2308 movs r3, #8 + 80052b4: 425b negs r3, r3 + 80052b6: 697a ldr r2, [r7, #20] + 80052b8: 4413 add r3, r2 + 80052ba: 617b str r3, [r7, #20] /* This casting is to keep the compiler from issuing warnings. */ pxLink = ( void * ) puc; - 800523c: 697b ldr r3, [r7, #20] - 800523e: 613b str r3, [r7, #16] + 80052bc: 697b ldr r3, [r7, #20] + 80052be: 613b str r3, [r7, #16] /* Check the block is actually allocated. */ configASSERT( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ); - 8005240: 693b ldr r3, [r7, #16] - 8005242: 685a ldr r2, [r3, #4] - 8005244: 4b24 ldr r3, [pc, #144] ; (80052d8 ) - 8005246: 681b ldr r3, [r3, #0] - 8005248: 4013 ands r3, r2 - 800524a: 2b00 cmp r3, #0 - 800524c: d10a bne.n 8005264 + 80052c0: 693b ldr r3, [r7, #16] + 80052c2: 685a ldr r2, [r3, #4] + 80052c4: 4b24 ldr r3, [pc, #144] ; (8005358 ) + 80052c6: 681b ldr r3, [r3, #0] + 80052c8: 4013 ands r3, r2 + 80052ca: 2b00 cmp r3, #0 + 80052cc: d10a bne.n 80052e4 __asm volatile - 800524e: f04f 0350 mov.w r3, #80 ; 0x50 - 8005252: f383 8811 msr BASEPRI, r3 - 8005256: f3bf 8f6f isb sy - 800525a: f3bf 8f4f dsb sy - 800525e: 60fb str r3, [r7, #12] + 80052ce: f04f 0350 mov.w r3, #80 ; 0x50 + 80052d2: f383 8811 msr BASEPRI, r3 + 80052d6: f3bf 8f6f isb sy + 80052da: f3bf 8f4f dsb sy + 80052de: 60fb str r3, [r7, #12] } - 8005260: bf00 nop - 8005262: e7fe b.n 8005262 + 80052e0: bf00 nop + 80052e2: e7fe b.n 80052e2 configASSERT( pxLink->pxNextFreeBlock == NULL ); - 8005264: 693b ldr r3, [r7, #16] - 8005266: 681b ldr r3, [r3, #0] - 8005268: 2b00 cmp r3, #0 - 800526a: d00a beq.n 8005282 + 80052e4: 693b ldr r3, [r7, #16] + 80052e6: 681b ldr r3, [r3, #0] + 80052e8: 2b00 cmp r3, #0 + 80052ea: d00a beq.n 8005302 __asm volatile - 800526c: f04f 0350 mov.w r3, #80 ; 0x50 - 8005270: f383 8811 msr BASEPRI, r3 - 8005274: f3bf 8f6f isb sy - 8005278: f3bf 8f4f dsb sy - 800527c: 60bb str r3, [r7, #8] + 80052ec: f04f 0350 mov.w r3, #80 ; 0x50 + 80052f0: f383 8811 msr BASEPRI, r3 + 80052f4: f3bf 8f6f isb sy + 80052f8: f3bf 8f4f dsb sy + 80052fc: 60bb str r3, [r7, #8] } - 800527e: bf00 nop - 8005280: e7fe b.n 8005280 + 80052fe: bf00 nop + 8005300: e7fe b.n 8005300 if( ( pxLink->xBlockSize & xBlockAllocatedBit ) != 0 ) - 8005282: 693b ldr r3, [r7, #16] - 8005284: 685a ldr r2, [r3, #4] - 8005286: 4b14 ldr r3, [pc, #80] ; (80052d8 ) - 8005288: 681b ldr r3, [r3, #0] - 800528a: 4013 ands r3, r2 - 800528c: 2b00 cmp r3, #0 - 800528e: d01e beq.n 80052ce + 8005302: 693b ldr r3, [r7, #16] + 8005304: 685a ldr r2, [r3, #4] + 8005306: 4b14 ldr r3, [pc, #80] ; (8005358 ) + 8005308: 681b ldr r3, [r3, #0] + 800530a: 4013 ands r3, r2 + 800530c: 2b00 cmp r3, #0 + 800530e: d01e beq.n 800534e { if( pxLink->pxNextFreeBlock == NULL ) - 8005290: 693b ldr r3, [r7, #16] - 8005292: 681b ldr r3, [r3, #0] - 8005294: 2b00 cmp r3, #0 - 8005296: d11a bne.n 80052ce + 8005310: 693b ldr r3, [r7, #16] + 8005312: 681b ldr r3, [r3, #0] + 8005314: 2b00 cmp r3, #0 + 8005316: d11a bne.n 800534e { /* The block is being returned to the heap - it is no longer allocated. */ pxLink->xBlockSize &= ~xBlockAllocatedBit; - 8005298: 693b ldr r3, [r7, #16] - 800529a: 685a ldr r2, [r3, #4] - 800529c: 4b0e ldr r3, [pc, #56] ; (80052d8 ) - 800529e: 681b ldr r3, [r3, #0] - 80052a0: 43db mvns r3, r3 - 80052a2: 401a ands r2, r3 - 80052a4: 693b ldr r3, [r7, #16] - 80052a6: 605a str r2, [r3, #4] + 8005318: 693b ldr r3, [r7, #16] + 800531a: 685a ldr r2, [r3, #4] + 800531c: 4b0e ldr r3, [pc, #56] ; (8005358 ) + 800531e: 681b ldr r3, [r3, #0] + 8005320: 43db mvns r3, r3 + 8005322: 401a ands r2, r3 + 8005324: 693b ldr r3, [r7, #16] + 8005326: 605a str r2, [r3, #4] vTaskSuspendAll(); - 80052a8: f7fe fc86 bl 8003bb8 + 8005328: f7fe fc84 bl 8003c34 { /* Add this block to the list of free blocks. */ xFreeBytesRemaining += pxLink->xBlockSize; - 80052ac: 693b ldr r3, [r7, #16] - 80052ae: 685a ldr r2, [r3, #4] - 80052b0: 4b0a ldr r3, [pc, #40] ; (80052dc ) - 80052b2: 681b ldr r3, [r3, #0] - 80052b4: 4413 add r3, r2 - 80052b6: 4a09 ldr r2, [pc, #36] ; (80052dc ) - 80052b8: 6013 str r3, [r2, #0] + 800532c: 693b ldr r3, [r7, #16] + 800532e: 685a ldr r2, [r3, #4] + 8005330: 4b0a ldr r3, [pc, #40] ; (800535c ) + 8005332: 681b ldr r3, [r3, #0] + 8005334: 4413 add r3, r2 + 8005336: 4a09 ldr r2, [pc, #36] ; (800535c ) + 8005338: 6013 str r3, [r2, #0] traceFREE( pv, pxLink->xBlockSize ); prvInsertBlockIntoFreeList( ( ( BlockLink_t * ) pxLink ) ); - 80052ba: 6938 ldr r0, [r7, #16] - 80052bc: f000 f874 bl 80053a8 + 800533a: 6938 ldr r0, [r7, #16] + 800533c: f000 f874 bl 8005428 xNumberOfSuccessfulFrees++; - 80052c0: 4b07 ldr r3, [pc, #28] ; (80052e0 ) - 80052c2: 681b ldr r3, [r3, #0] - 80052c4: 3301 adds r3, #1 - 80052c6: 4a06 ldr r2, [pc, #24] ; (80052e0 ) - 80052c8: 6013 str r3, [r2, #0] + 8005340: 4b07 ldr r3, [pc, #28] ; (8005360 ) + 8005342: 681b ldr r3, [r3, #0] + 8005344: 3301 adds r3, #1 + 8005346: 4a06 ldr r2, [pc, #24] ; (8005360 ) + 8005348: 6013 str r3, [r2, #0] } ( void ) xTaskResumeAll(); - 80052ca: f7fe fc83 bl 8003bd4 + 800534a: f7fe fc81 bl 8003c50 else { mtCOVERAGE_TEST_MARKER(); } } } - 80052ce: bf00 nop - 80052d0: 3718 adds r7, #24 - 80052d2: 46bd mov sp, r7 - 80052d4: bd80 pop {r7, pc} - 80052d6: bf00 nop - 80052d8: 20004b10 .word 0x20004b10 - 80052dc: 20004b00 .word 0x20004b00 - 80052e0: 20004b0c .word 0x20004b0c + 800534e: bf00 nop + 8005350: 3718 adds r7, #24 + 8005352: 46bd mov sp, r7 + 8005354: bd80 pop {r7, pc} + 8005356: bf00 nop + 8005358: 20004b10 .word 0x20004b10 + 800535c: 20004b00 .word 0x20004b00 + 8005360: 20004b0c .word 0x20004b0c -080052e4 : +08005364 : /* This just exists to keep the linker quiet. */ } /*-----------------------------------------------------------*/ static void prvHeapInit( void ) { - 80052e4: b480 push {r7} - 80052e6: b085 sub sp, #20 - 80052e8: af00 add r7, sp, #0 + 8005364: b480 push {r7} + 8005366: b085 sub sp, #20 + 8005368: af00 add r7, sp, #0 BlockLink_t *pxFirstFreeBlock; uint8_t *pucAlignedHeap; size_t uxAddress; size_t xTotalHeapSize = configTOTAL_HEAP_SIZE; - 80052ea: f44f 5370 mov.w r3, #15360 ; 0x3c00 - 80052ee: 60bb str r3, [r7, #8] + 800536a: f44f 5370 mov.w r3, #15360 ; 0x3c00 + 800536e: 60bb str r3, [r7, #8] /* Ensure the heap starts on a correctly aligned boundary. */ uxAddress = ( size_t ) ucHeap; - 80052f0: 4b27 ldr r3, [pc, #156] ; (8005390 ) - 80052f2: 60fb str r3, [r7, #12] + 8005370: 4b27 ldr r3, [pc, #156] ; (8005410 ) + 8005372: 60fb str r3, [r7, #12] if( ( uxAddress & portBYTE_ALIGNMENT_MASK ) != 0 ) - 80052f4: 68fb ldr r3, [r7, #12] - 80052f6: f003 0307 and.w r3, r3, #7 - 80052fa: 2b00 cmp r3, #0 - 80052fc: d00c beq.n 8005318 + 8005374: 68fb ldr r3, [r7, #12] + 8005376: f003 0307 and.w r3, r3, #7 + 800537a: 2b00 cmp r3, #0 + 800537c: d00c beq.n 8005398 { uxAddress += ( portBYTE_ALIGNMENT - 1 ); - 80052fe: 68fb ldr r3, [r7, #12] - 8005300: 3307 adds r3, #7 - 8005302: 60fb str r3, [r7, #12] + 800537e: 68fb ldr r3, [r7, #12] + 8005380: 3307 adds r3, #7 + 8005382: 60fb str r3, [r7, #12] uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); - 8005304: 68fb ldr r3, [r7, #12] - 8005306: f023 0307 bic.w r3, r3, #7 - 800530a: 60fb str r3, [r7, #12] + 8005384: 68fb ldr r3, [r7, #12] + 8005386: f023 0307 bic.w r3, r3, #7 + 800538a: 60fb str r3, [r7, #12] xTotalHeapSize -= uxAddress - ( size_t ) ucHeap; - 800530c: 68ba ldr r2, [r7, #8] - 800530e: 68fb ldr r3, [r7, #12] - 8005310: 1ad3 subs r3, r2, r3 - 8005312: 4a1f ldr r2, [pc, #124] ; (8005390 ) - 8005314: 4413 add r3, r2 - 8005316: 60bb str r3, [r7, #8] + 800538c: 68ba ldr r2, [r7, #8] + 800538e: 68fb ldr r3, [r7, #12] + 8005390: 1ad3 subs r3, r2, r3 + 8005392: 4a1f ldr r2, [pc, #124] ; (8005410 ) + 8005394: 4413 add r3, r2 + 8005396: 60bb str r3, [r7, #8] } pucAlignedHeap = ( uint8_t * ) uxAddress; - 8005318: 68fb ldr r3, [r7, #12] - 800531a: 607b str r3, [r7, #4] + 8005398: 68fb ldr r3, [r7, #12] + 800539a: 607b str r3, [r7, #4] /* xStart is used to hold a pointer to the first item in the list of free blocks. The void cast is used to prevent compiler warnings. */ xStart.pxNextFreeBlock = ( void * ) pucAlignedHeap; - 800531c: 4a1d ldr r2, [pc, #116] ; (8005394 ) - 800531e: 687b ldr r3, [r7, #4] - 8005320: 6013 str r3, [r2, #0] + 800539c: 4a1d ldr r2, [pc, #116] ; (8005414 ) + 800539e: 687b ldr r3, [r7, #4] + 80053a0: 6013 str r3, [r2, #0] xStart.xBlockSize = ( size_t ) 0; - 8005322: 4b1c ldr r3, [pc, #112] ; (8005394 ) - 8005324: 2200 movs r2, #0 - 8005326: 605a str r2, [r3, #4] + 80053a2: 4b1c ldr r3, [pc, #112] ; (8005414 ) + 80053a4: 2200 movs r2, #0 + 80053a6: 605a str r2, [r3, #4] /* pxEnd is used to mark the end of the list of free blocks and is inserted at the end of the heap space. */ uxAddress = ( ( size_t ) pucAlignedHeap ) + xTotalHeapSize; - 8005328: 687b ldr r3, [r7, #4] - 800532a: 68ba ldr r2, [r7, #8] - 800532c: 4413 add r3, r2 - 800532e: 60fb str r3, [r7, #12] + 80053a8: 687b ldr r3, [r7, #4] + 80053aa: 68ba ldr r2, [r7, #8] + 80053ac: 4413 add r3, r2 + 80053ae: 60fb str r3, [r7, #12] uxAddress -= xHeapStructSize; - 8005330: 2208 movs r2, #8 - 8005332: 68fb ldr r3, [r7, #12] - 8005334: 1a9b subs r3, r3, r2 - 8005336: 60fb str r3, [r7, #12] + 80053b0: 2208 movs r2, #8 + 80053b2: 68fb ldr r3, [r7, #12] + 80053b4: 1a9b subs r3, r3, r2 + 80053b6: 60fb str r3, [r7, #12] uxAddress &= ~( ( size_t ) portBYTE_ALIGNMENT_MASK ); - 8005338: 68fb ldr r3, [r7, #12] - 800533a: f023 0307 bic.w r3, r3, #7 - 800533e: 60fb str r3, [r7, #12] + 80053b8: 68fb ldr r3, [r7, #12] + 80053ba: f023 0307 bic.w r3, r3, #7 + 80053be: 60fb str r3, [r7, #12] pxEnd = ( void * ) uxAddress; - 8005340: 68fb ldr r3, [r7, #12] - 8005342: 4a15 ldr r2, [pc, #84] ; (8005398 ) - 8005344: 6013 str r3, [r2, #0] + 80053c0: 68fb ldr r3, [r7, #12] + 80053c2: 4a15 ldr r2, [pc, #84] ; (8005418 ) + 80053c4: 6013 str r3, [r2, #0] pxEnd->xBlockSize = 0; - 8005346: 4b14 ldr r3, [pc, #80] ; (8005398 ) - 8005348: 681b ldr r3, [r3, #0] - 800534a: 2200 movs r2, #0 - 800534c: 605a str r2, [r3, #4] + 80053c6: 4b14 ldr r3, [pc, #80] ; (8005418 ) + 80053c8: 681b ldr r3, [r3, #0] + 80053ca: 2200 movs r2, #0 + 80053cc: 605a str r2, [r3, #4] pxEnd->pxNextFreeBlock = NULL; - 800534e: 4b12 ldr r3, [pc, #72] ; (8005398 ) - 8005350: 681b ldr r3, [r3, #0] - 8005352: 2200 movs r2, #0 - 8005354: 601a str r2, [r3, #0] + 80053ce: 4b12 ldr r3, [pc, #72] ; (8005418 ) + 80053d0: 681b ldr r3, [r3, #0] + 80053d2: 2200 movs r2, #0 + 80053d4: 601a str r2, [r3, #0] /* To start with there is a single free block that is sized to take up the entire heap space, minus the space taken by pxEnd. */ pxFirstFreeBlock = ( void * ) pucAlignedHeap; - 8005356: 687b ldr r3, [r7, #4] - 8005358: 603b str r3, [r7, #0] + 80053d6: 687b ldr r3, [r7, #4] + 80053d8: 603b str r3, [r7, #0] pxFirstFreeBlock->xBlockSize = uxAddress - ( size_t ) pxFirstFreeBlock; - 800535a: 683b ldr r3, [r7, #0] - 800535c: 68fa ldr r2, [r7, #12] - 800535e: 1ad2 subs r2, r2, r3 - 8005360: 683b ldr r3, [r7, #0] - 8005362: 605a str r2, [r3, #4] + 80053da: 683b ldr r3, [r7, #0] + 80053dc: 68fa ldr r2, [r7, #12] + 80053de: 1ad2 subs r2, r2, r3 + 80053e0: 683b ldr r3, [r7, #0] + 80053e2: 605a str r2, [r3, #4] pxFirstFreeBlock->pxNextFreeBlock = pxEnd; - 8005364: 4b0c ldr r3, [pc, #48] ; (8005398 ) - 8005366: 681a ldr r2, [r3, #0] - 8005368: 683b ldr r3, [r7, #0] - 800536a: 601a str r2, [r3, #0] + 80053e4: 4b0c ldr r3, [pc, #48] ; (8005418 ) + 80053e6: 681a ldr r2, [r3, #0] + 80053e8: 683b ldr r3, [r7, #0] + 80053ea: 601a str r2, [r3, #0] /* Only one block exists - and it covers the entire usable heap space. */ xMinimumEverFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; - 800536c: 683b ldr r3, [r7, #0] - 800536e: 685b ldr r3, [r3, #4] - 8005370: 4a0a ldr r2, [pc, #40] ; (800539c ) - 8005372: 6013 str r3, [r2, #0] + 80053ec: 683b ldr r3, [r7, #0] + 80053ee: 685b ldr r3, [r3, #4] + 80053f0: 4a0a ldr r2, [pc, #40] ; (800541c ) + 80053f2: 6013 str r3, [r2, #0] xFreeBytesRemaining = pxFirstFreeBlock->xBlockSize; - 8005374: 683b ldr r3, [r7, #0] - 8005376: 685b ldr r3, [r3, #4] - 8005378: 4a09 ldr r2, [pc, #36] ; (80053a0 ) - 800537a: 6013 str r3, [r2, #0] + 80053f4: 683b ldr r3, [r7, #0] + 80053f6: 685b ldr r3, [r3, #4] + 80053f8: 4a09 ldr r2, [pc, #36] ; (8005420 ) + 80053fa: 6013 str r3, [r2, #0] /* Work out the position of the top bit in a size_t variable. */ xBlockAllocatedBit = ( ( size_t ) 1 ) << ( ( sizeof( size_t ) * heapBITS_PER_BYTE ) - 1 ); - 800537c: 4b09 ldr r3, [pc, #36] ; (80053a4 ) - 800537e: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 - 8005382: 601a str r2, [r3, #0] + 80053fc: 4b09 ldr r3, [pc, #36] ; (8005424 ) + 80053fe: f04f 4200 mov.w r2, #2147483648 ; 0x80000000 + 8005402: 601a str r2, [r3, #0] } - 8005384: bf00 nop - 8005386: 3714 adds r7, #20 - 8005388: 46bd mov sp, r7 - 800538a: f85d 7b04 ldr.w r7, [sp], #4 - 800538e: 4770 bx lr - 8005390: 20000ef4 .word 0x20000ef4 - 8005394: 20004af4 .word 0x20004af4 - 8005398: 20004afc .word 0x20004afc - 800539c: 20004b04 .word 0x20004b04 - 80053a0: 20004b00 .word 0x20004b00 - 80053a4: 20004b10 .word 0x20004b10 + 8005404: bf00 nop + 8005406: 3714 adds r7, #20 + 8005408: 46bd mov sp, r7 + 800540a: f85d 7b04 ldr.w r7, [sp], #4 + 800540e: 4770 bx lr + 8005410: 20000ef4 .word 0x20000ef4 + 8005414: 20004af4 .word 0x20004af4 + 8005418: 20004afc .word 0x20004afc + 800541c: 20004b04 .word 0x20004b04 + 8005420: 20004b00 .word 0x20004b00 + 8005424: 20004b10 .word 0x20004b10 -080053a8 : +08005428 : /*-----------------------------------------------------------*/ static void prvInsertBlockIntoFreeList( BlockLink_t *pxBlockToInsert ) { - 80053a8: b480 push {r7} - 80053aa: b085 sub sp, #20 - 80053ac: af00 add r7, sp, #0 - 80053ae: 6078 str r0, [r7, #4] + 8005428: b480 push {r7} + 800542a: b085 sub sp, #20 + 800542c: af00 add r7, sp, #0 + 800542e: 6078 str r0, [r7, #4] BlockLink_t *pxIterator; uint8_t *puc; /* Iterate through the list until a block is found that has a higher address than the block being inserted. */ for( pxIterator = &xStart; pxIterator->pxNextFreeBlock < pxBlockToInsert; pxIterator = pxIterator->pxNextFreeBlock ) - 80053b0: 4b28 ldr r3, [pc, #160] ; (8005454 ) - 80053b2: 60fb str r3, [r7, #12] - 80053b4: e002 b.n 80053bc - 80053b6: 68fb ldr r3, [r7, #12] - 80053b8: 681b ldr r3, [r3, #0] - 80053ba: 60fb str r3, [r7, #12] - 80053bc: 68fb ldr r3, [r7, #12] - 80053be: 681b ldr r3, [r3, #0] - 80053c0: 687a ldr r2, [r7, #4] - 80053c2: 429a cmp r2, r3 - 80053c4: d8f7 bhi.n 80053b6 + 8005430: 4b28 ldr r3, [pc, #160] ; (80054d4 ) + 8005432: 60fb str r3, [r7, #12] + 8005434: e002 b.n 800543c + 8005436: 68fb ldr r3, [r7, #12] + 8005438: 681b ldr r3, [r3, #0] + 800543a: 60fb str r3, [r7, #12] + 800543c: 68fb ldr r3, [r7, #12] + 800543e: 681b ldr r3, [r3, #0] + 8005440: 687a ldr r2, [r7, #4] + 8005442: 429a cmp r2, r3 + 8005444: d8f7 bhi.n 8005436 /* Nothing to do here, just iterate to the right position. */ } /* Do the block being inserted, and the block it is being inserted after make a contiguous block of memory? */ puc = ( uint8_t * ) pxIterator; - 80053c6: 68fb ldr r3, [r7, #12] - 80053c8: 60bb str r3, [r7, #8] + 8005446: 68fb ldr r3, [r7, #12] + 8005448: 60bb str r3, [r7, #8] if( ( puc + pxIterator->xBlockSize ) == ( uint8_t * ) pxBlockToInsert ) - 80053ca: 68fb ldr r3, [r7, #12] - 80053cc: 685b ldr r3, [r3, #4] - 80053ce: 68ba ldr r2, [r7, #8] - 80053d0: 4413 add r3, r2 - 80053d2: 687a ldr r2, [r7, #4] - 80053d4: 429a cmp r2, r3 - 80053d6: d108 bne.n 80053ea + 800544a: 68fb ldr r3, [r7, #12] + 800544c: 685b ldr r3, [r3, #4] + 800544e: 68ba ldr r2, [r7, #8] + 8005450: 4413 add r3, r2 + 8005452: 687a ldr r2, [r7, #4] + 8005454: 429a cmp r2, r3 + 8005456: d108 bne.n 800546a { pxIterator->xBlockSize += pxBlockToInsert->xBlockSize; - 80053d8: 68fb ldr r3, [r7, #12] - 80053da: 685a ldr r2, [r3, #4] - 80053dc: 687b ldr r3, [r7, #4] - 80053de: 685b ldr r3, [r3, #4] - 80053e0: 441a add r2, r3 - 80053e2: 68fb ldr r3, [r7, #12] - 80053e4: 605a str r2, [r3, #4] + 8005458: 68fb ldr r3, [r7, #12] + 800545a: 685a ldr r2, [r3, #4] + 800545c: 687b ldr r3, [r7, #4] + 800545e: 685b ldr r3, [r3, #4] + 8005460: 441a add r2, r3 + 8005462: 68fb ldr r3, [r7, #12] + 8005464: 605a str r2, [r3, #4] pxBlockToInsert = pxIterator; - 80053e6: 68fb ldr r3, [r7, #12] - 80053e8: 607b str r3, [r7, #4] + 8005466: 68fb ldr r3, [r7, #12] + 8005468: 607b str r3, [r7, #4] mtCOVERAGE_TEST_MARKER(); } /* Do the block being inserted, and the block it is being inserted before make a contiguous block of memory? */ puc = ( uint8_t * ) pxBlockToInsert; - 80053ea: 687b ldr r3, [r7, #4] - 80053ec: 60bb str r3, [r7, #8] + 800546a: 687b ldr r3, [r7, #4] + 800546c: 60bb str r3, [r7, #8] if( ( puc + pxBlockToInsert->xBlockSize ) == ( uint8_t * ) pxIterator->pxNextFreeBlock ) - 80053ee: 687b ldr r3, [r7, #4] - 80053f0: 685b ldr r3, [r3, #4] - 80053f2: 68ba ldr r2, [r7, #8] - 80053f4: 441a add r2, r3 - 80053f6: 68fb ldr r3, [r7, #12] - 80053f8: 681b ldr r3, [r3, #0] - 80053fa: 429a cmp r2, r3 - 80053fc: d118 bne.n 8005430 + 800546e: 687b ldr r3, [r7, #4] + 8005470: 685b ldr r3, [r3, #4] + 8005472: 68ba ldr r2, [r7, #8] + 8005474: 441a add r2, r3 + 8005476: 68fb ldr r3, [r7, #12] + 8005478: 681b ldr r3, [r3, #0] + 800547a: 429a cmp r2, r3 + 800547c: d118 bne.n 80054b0 { if( pxIterator->pxNextFreeBlock != pxEnd ) - 80053fe: 68fb ldr r3, [r7, #12] - 8005400: 681a ldr r2, [r3, #0] - 8005402: 4b15 ldr r3, [pc, #84] ; (8005458 ) - 8005404: 681b ldr r3, [r3, #0] - 8005406: 429a cmp r2, r3 - 8005408: d00d beq.n 8005426 + 800547e: 68fb ldr r3, [r7, #12] + 8005480: 681a ldr r2, [r3, #0] + 8005482: 4b15 ldr r3, [pc, #84] ; (80054d8 ) + 8005484: 681b ldr r3, [r3, #0] + 8005486: 429a cmp r2, r3 + 8005488: d00d beq.n 80054a6 { /* Form one big block from the two blocks. */ pxBlockToInsert->xBlockSize += pxIterator->pxNextFreeBlock->xBlockSize; - 800540a: 687b ldr r3, [r7, #4] - 800540c: 685a ldr r2, [r3, #4] - 800540e: 68fb ldr r3, [r7, #12] - 8005410: 681b ldr r3, [r3, #0] - 8005412: 685b ldr r3, [r3, #4] - 8005414: 441a add r2, r3 - 8005416: 687b ldr r3, [r7, #4] - 8005418: 605a str r2, [r3, #4] + 800548a: 687b ldr r3, [r7, #4] + 800548c: 685a ldr r2, [r3, #4] + 800548e: 68fb ldr r3, [r7, #12] + 8005490: 681b ldr r3, [r3, #0] + 8005492: 685b ldr r3, [r3, #4] + 8005494: 441a add r2, r3 + 8005496: 687b ldr r3, [r7, #4] + 8005498: 605a str r2, [r3, #4] pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock->pxNextFreeBlock; - 800541a: 68fb ldr r3, [r7, #12] - 800541c: 681b ldr r3, [r3, #0] - 800541e: 681a ldr r2, [r3, #0] - 8005420: 687b ldr r3, [r7, #4] - 8005422: 601a str r2, [r3, #0] - 8005424: e008 b.n 8005438 + 800549a: 68fb ldr r3, [r7, #12] + 800549c: 681b ldr r3, [r3, #0] + 800549e: 681a ldr r2, [r3, #0] + 80054a0: 687b ldr r3, [r7, #4] + 80054a2: 601a str r2, [r3, #0] + 80054a4: e008 b.n 80054b8 } else { pxBlockToInsert->pxNextFreeBlock = pxEnd; - 8005426: 4b0c ldr r3, [pc, #48] ; (8005458 ) - 8005428: 681a ldr r2, [r3, #0] - 800542a: 687b ldr r3, [r7, #4] - 800542c: 601a str r2, [r3, #0] - 800542e: e003 b.n 8005438 + 80054a6: 4b0c ldr r3, [pc, #48] ; (80054d8 ) + 80054a8: 681a ldr r2, [r3, #0] + 80054aa: 687b ldr r3, [r7, #4] + 80054ac: 601a str r2, [r3, #0] + 80054ae: e003 b.n 80054b8 } } else { pxBlockToInsert->pxNextFreeBlock = pxIterator->pxNextFreeBlock; - 8005430: 68fb ldr r3, [r7, #12] - 8005432: 681a ldr r2, [r3, #0] - 8005434: 687b ldr r3, [r7, #4] - 8005436: 601a str r2, [r3, #0] + 80054b0: 68fb ldr r3, [r7, #12] + 80054b2: 681a ldr r2, [r3, #0] + 80054b4: 687b ldr r3, [r7, #4] + 80054b6: 601a str r2, [r3, #0] /* If the block being inserted plugged a gab, so was merged with the block before and the block after, then it's pxNextFreeBlock pointer will have already been set, and should not be set here as that would make it point to itself. */ if( pxIterator != pxBlockToInsert ) - 8005438: 68fa ldr r2, [r7, #12] - 800543a: 687b ldr r3, [r7, #4] - 800543c: 429a cmp r2, r3 - 800543e: d002 beq.n 8005446 + 80054b8: 68fa ldr r2, [r7, #12] + 80054ba: 687b ldr r3, [r7, #4] + 80054bc: 429a cmp r2, r3 + 80054be: d002 beq.n 80054c6 { pxIterator->pxNextFreeBlock = pxBlockToInsert; - 8005440: 68fb ldr r3, [r7, #12] - 8005442: 687a ldr r2, [r7, #4] - 8005444: 601a str r2, [r3, #0] + 80054c0: 68fb ldr r3, [r7, #12] + 80054c2: 687a ldr r2, [r7, #4] + 80054c4: 601a str r2, [r3, #0] } else { mtCOVERAGE_TEST_MARKER(); } } - 8005446: bf00 nop - 8005448: 3714 adds r7, #20 - 800544a: 46bd mov sp, r7 - 800544c: f85d 7b04 ldr.w r7, [sp], #4 - 8005450: 4770 bx lr - 8005452: bf00 nop - 8005454: 20004af4 .word 0x20004af4 - 8005458: 20004afc .word 0x20004afc + 80054c6: bf00 nop + 80054c8: 3714 adds r7, #20 + 80054ca: 46bd mov sp, r7 + 80054cc: f85d 7b04 ldr.w r7, [sp], #4 + 80054d0: 4770 bx lr + 80054d2: bf00 nop + 80054d4: 20004af4 .word 0x20004af4 + 80054d8: 20004afc .word 0x20004afc -0800545c : - 800545c: 4402 add r2, r0 - 800545e: 4603 mov r3, r0 - 8005460: 4293 cmp r3, r2 - 8005462: d100 bne.n 8005466 - 8005464: 4770 bx lr - 8005466: f803 1b01 strb.w r1, [r3], #1 - 800546a: e7f9 b.n 8005460 +080054dc : + 80054dc: 4402 add r2, r0 + 80054de: 4603 mov r3, r0 + 80054e0: 4293 cmp r3, r2 + 80054e2: d100 bne.n 80054e6 + 80054e4: 4770 bx lr + 80054e6: f803 1b01 strb.w r1, [r3], #1 + 80054ea: e7f9 b.n 80054e0 -0800546c <_reclaim_reent>: - 800546c: 4b29 ldr r3, [pc, #164] ; (8005514 <_reclaim_reent+0xa8>) - 800546e: 681b ldr r3, [r3, #0] - 8005470: 4283 cmp r3, r0 - 8005472: b570 push {r4, r5, r6, lr} - 8005474: 4604 mov r4, r0 - 8005476: d04b beq.n 8005510 <_reclaim_reent+0xa4> - 8005478: 69c3 ldr r3, [r0, #28] - 800547a: b143 cbz r3, 800548e <_reclaim_reent+0x22> - 800547c: 68db ldr r3, [r3, #12] - 800547e: 2b00 cmp r3, #0 - 8005480: d144 bne.n 800550c <_reclaim_reent+0xa0> - 8005482: 69e3 ldr r3, [r4, #28] - 8005484: 6819 ldr r1, [r3, #0] - 8005486: b111 cbz r1, 800548e <_reclaim_reent+0x22> - 8005488: 4620 mov r0, r4 - 800548a: f000 f879 bl 8005580 <_free_r> - 800548e: 6961 ldr r1, [r4, #20] - 8005490: b111 cbz r1, 8005498 <_reclaim_reent+0x2c> - 8005492: 4620 mov r0, r4 - 8005494: f000 f874 bl 8005580 <_free_r> - 8005498: 69e1 ldr r1, [r4, #28] - 800549a: b111 cbz r1, 80054a2 <_reclaim_reent+0x36> - 800549c: 4620 mov r0, r4 - 800549e: f000 f86f bl 8005580 <_free_r> - 80054a2: 6b21 ldr r1, [r4, #48] ; 0x30 - 80054a4: b111 cbz r1, 80054ac <_reclaim_reent+0x40> - 80054a6: 4620 mov r0, r4 - 80054a8: f000 f86a bl 8005580 <_free_r> - 80054ac: 6b61 ldr r1, [r4, #52] ; 0x34 - 80054ae: b111 cbz r1, 80054b6 <_reclaim_reent+0x4a> - 80054b0: 4620 mov r0, r4 - 80054b2: f000 f865 bl 8005580 <_free_r> - 80054b6: 6ba1 ldr r1, [r4, #56] ; 0x38 - 80054b8: b111 cbz r1, 80054c0 <_reclaim_reent+0x54> - 80054ba: 4620 mov r0, r4 - 80054bc: f000 f860 bl 8005580 <_free_r> - 80054c0: 6ca1 ldr r1, [r4, #72] ; 0x48 - 80054c2: b111 cbz r1, 80054ca <_reclaim_reent+0x5e> - 80054c4: 4620 mov r0, r4 - 80054c6: f000 f85b bl 8005580 <_free_r> - 80054ca: 6c61 ldr r1, [r4, #68] ; 0x44 - 80054cc: b111 cbz r1, 80054d4 <_reclaim_reent+0x68> - 80054ce: 4620 mov r0, r4 - 80054d0: f000 f856 bl 8005580 <_free_r> - 80054d4: 6ae1 ldr r1, [r4, #44] ; 0x2c - 80054d6: b111 cbz r1, 80054de <_reclaim_reent+0x72> - 80054d8: 4620 mov r0, r4 - 80054da: f000 f851 bl 8005580 <_free_r> - 80054de: 6a23 ldr r3, [r4, #32] - 80054e0: b1b3 cbz r3, 8005510 <_reclaim_reent+0xa4> - 80054e2: 4620 mov r0, r4 - 80054e4: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} - 80054e8: 4718 bx r3 - 80054ea: 5949 ldr r1, [r1, r5] - 80054ec: b941 cbnz r1, 8005500 <_reclaim_reent+0x94> - 80054ee: 3504 adds r5, #4 - 80054f0: 69e3 ldr r3, [r4, #28] - 80054f2: 2d80 cmp r5, #128 ; 0x80 - 80054f4: 68d9 ldr r1, [r3, #12] - 80054f6: d1f8 bne.n 80054ea <_reclaim_reent+0x7e> - 80054f8: 4620 mov r0, r4 - 80054fa: f000 f841 bl 8005580 <_free_r> - 80054fe: e7c0 b.n 8005482 <_reclaim_reent+0x16> - 8005500: 680e ldr r6, [r1, #0] - 8005502: 4620 mov r0, r4 - 8005504: f000 f83c bl 8005580 <_free_r> - 8005508: 4631 mov r1, r6 - 800550a: e7ef b.n 80054ec <_reclaim_reent+0x80> - 800550c: 2500 movs r5, #0 - 800550e: e7ef b.n 80054f0 <_reclaim_reent+0x84> - 8005510: bd70 pop {r4, r5, r6, pc} - 8005512: bf00 nop - 8005514: 2000005c .word 0x2000005c +080054ec <_reclaim_reent>: + 80054ec: 4b29 ldr r3, [pc, #164] ; (8005594 <_reclaim_reent+0xa8>) + 80054ee: 681b ldr r3, [r3, #0] + 80054f0: 4283 cmp r3, r0 + 80054f2: b570 push {r4, r5, r6, lr} + 80054f4: 4604 mov r4, r0 + 80054f6: d04b beq.n 8005590 <_reclaim_reent+0xa4> + 80054f8: 69c3 ldr r3, [r0, #28] + 80054fa: b143 cbz r3, 800550e <_reclaim_reent+0x22> + 80054fc: 68db ldr r3, [r3, #12] + 80054fe: 2b00 cmp r3, #0 + 8005500: d144 bne.n 800558c <_reclaim_reent+0xa0> + 8005502: 69e3 ldr r3, [r4, #28] + 8005504: 6819 ldr r1, [r3, #0] + 8005506: b111 cbz r1, 800550e <_reclaim_reent+0x22> + 8005508: 4620 mov r0, r4 + 800550a: f000 f879 bl 8005600 <_free_r> + 800550e: 6961 ldr r1, [r4, #20] + 8005510: b111 cbz r1, 8005518 <_reclaim_reent+0x2c> + 8005512: 4620 mov r0, r4 + 8005514: f000 f874 bl 8005600 <_free_r> + 8005518: 69e1 ldr r1, [r4, #28] + 800551a: b111 cbz r1, 8005522 <_reclaim_reent+0x36> + 800551c: 4620 mov r0, r4 + 800551e: f000 f86f bl 8005600 <_free_r> + 8005522: 6b21 ldr r1, [r4, #48] ; 0x30 + 8005524: b111 cbz r1, 800552c <_reclaim_reent+0x40> + 8005526: 4620 mov r0, r4 + 8005528: f000 f86a bl 8005600 <_free_r> + 800552c: 6b61 ldr r1, [r4, #52] ; 0x34 + 800552e: b111 cbz r1, 8005536 <_reclaim_reent+0x4a> + 8005530: 4620 mov r0, r4 + 8005532: f000 f865 bl 8005600 <_free_r> + 8005536: 6ba1 ldr r1, [r4, #56] ; 0x38 + 8005538: b111 cbz r1, 8005540 <_reclaim_reent+0x54> + 800553a: 4620 mov r0, r4 + 800553c: f000 f860 bl 8005600 <_free_r> + 8005540: 6ca1 ldr r1, [r4, #72] ; 0x48 + 8005542: b111 cbz r1, 800554a <_reclaim_reent+0x5e> + 8005544: 4620 mov r0, r4 + 8005546: f000 f85b bl 8005600 <_free_r> + 800554a: 6c61 ldr r1, [r4, #68] ; 0x44 + 800554c: b111 cbz r1, 8005554 <_reclaim_reent+0x68> + 800554e: 4620 mov r0, r4 + 8005550: f000 f856 bl 8005600 <_free_r> + 8005554: 6ae1 ldr r1, [r4, #44] ; 0x2c + 8005556: b111 cbz r1, 800555e <_reclaim_reent+0x72> + 8005558: 4620 mov r0, r4 + 800555a: f000 f851 bl 8005600 <_free_r> + 800555e: 6a23 ldr r3, [r4, #32] + 8005560: b1b3 cbz r3, 8005590 <_reclaim_reent+0xa4> + 8005562: 4620 mov r0, r4 + 8005564: e8bd 4070 ldmia.w sp!, {r4, r5, r6, lr} + 8005568: 4718 bx r3 + 800556a: 5949 ldr r1, [r1, r5] + 800556c: b941 cbnz r1, 8005580 <_reclaim_reent+0x94> + 800556e: 3504 adds r5, #4 + 8005570: 69e3 ldr r3, [r4, #28] + 8005572: 2d80 cmp r5, #128 ; 0x80 + 8005574: 68d9 ldr r1, [r3, #12] + 8005576: d1f8 bne.n 800556a <_reclaim_reent+0x7e> + 8005578: 4620 mov r0, r4 + 800557a: f000 f841 bl 8005600 <_free_r> + 800557e: e7c0 b.n 8005502 <_reclaim_reent+0x16> + 8005580: 680e ldr r6, [r1, #0] + 8005582: 4620 mov r0, r4 + 8005584: f000 f83c bl 8005600 <_free_r> + 8005588: 4631 mov r1, r6 + 800558a: e7ef b.n 800556c <_reclaim_reent+0x80> + 800558c: 2500 movs r5, #0 + 800558e: e7ef b.n 8005570 <_reclaim_reent+0x84> + 8005590: bd70 pop {r4, r5, r6, pc} + 8005592: bf00 nop + 8005594: 2000005c .word 0x2000005c -08005518 <__libc_init_array>: - 8005518: b570 push {r4, r5, r6, lr} - 800551a: 4d0d ldr r5, [pc, #52] ; (8005550 <__libc_init_array+0x38>) - 800551c: 4c0d ldr r4, [pc, #52] ; (8005554 <__libc_init_array+0x3c>) - 800551e: 1b64 subs r4, r4, r5 - 8005520: 10a4 asrs r4, r4, #2 - 8005522: 2600 movs r6, #0 - 8005524: 42a6 cmp r6, r4 - 8005526: d109 bne.n 800553c <__libc_init_array+0x24> - 8005528: 4d0b ldr r5, [pc, #44] ; (8005558 <__libc_init_array+0x40>) - 800552a: 4c0c ldr r4, [pc, #48] ; (800555c <__libc_init_array+0x44>) - 800552c: f000 f880 bl 8005630 <_init> - 8005530: 1b64 subs r4, r4, r5 - 8005532: 10a4 asrs r4, r4, #2 - 8005534: 2600 movs r6, #0 - 8005536: 42a6 cmp r6, r4 - 8005538: d105 bne.n 8005546 <__libc_init_array+0x2e> - 800553a: bd70 pop {r4, r5, r6, pc} - 800553c: f855 3b04 ldr.w r3, [r5], #4 - 8005540: 4798 blx r3 - 8005542: 3601 adds r6, #1 - 8005544: e7ee b.n 8005524 <__libc_init_array+0xc> - 8005546: f855 3b04 ldr.w r3, [r5], #4 - 800554a: 4798 blx r3 - 800554c: 3601 adds r6, #1 - 800554e: e7f2 b.n 8005536 <__libc_init_array+0x1e> - 8005550: 080056e0 .word 0x080056e0 - 8005554: 080056e0 .word 0x080056e0 - 8005558: 080056e0 .word 0x080056e0 - 800555c: 080056e4 .word 0x080056e4 +08005598 <__libc_init_array>: + 8005598: b570 push {r4, r5, r6, lr} + 800559a: 4d0d ldr r5, [pc, #52] ; (80055d0 <__libc_init_array+0x38>) + 800559c: 4c0d ldr r4, [pc, #52] ; (80055d4 <__libc_init_array+0x3c>) + 800559e: 1b64 subs r4, r4, r5 + 80055a0: 10a4 asrs r4, r4, #2 + 80055a2: 2600 movs r6, #0 + 80055a4: 42a6 cmp r6, r4 + 80055a6: d109 bne.n 80055bc <__libc_init_array+0x24> + 80055a8: 4d0b ldr r5, [pc, #44] ; (80055d8 <__libc_init_array+0x40>) + 80055aa: 4c0c ldr r4, [pc, #48] ; (80055dc <__libc_init_array+0x44>) + 80055ac: f000 f880 bl 80056b0 <_init> + 80055b0: 1b64 subs r4, r4, r5 + 80055b2: 10a4 asrs r4, r4, #2 + 80055b4: 2600 movs r6, #0 + 80055b6: 42a6 cmp r6, r4 + 80055b8: d105 bne.n 80055c6 <__libc_init_array+0x2e> + 80055ba: bd70 pop {r4, r5, r6, pc} + 80055bc: f855 3b04 ldr.w r3, [r5], #4 + 80055c0: 4798 blx r3 + 80055c2: 3601 adds r6, #1 + 80055c4: e7ee b.n 80055a4 <__libc_init_array+0xc> + 80055c6: f855 3b04 ldr.w r3, [r5], #4 + 80055ca: 4798 blx r3 + 80055cc: 3601 adds r6, #1 + 80055ce: e7f2 b.n 80055b6 <__libc_init_array+0x1e> + 80055d0: 08005760 .word 0x08005760 + 80055d4: 08005760 .word 0x08005760 + 80055d8: 08005760 .word 0x08005760 + 80055dc: 08005764 .word 0x08005764 -08005560 <__retarget_lock_acquire_recursive>: - 8005560: 4770 bx lr +080055e0 <__retarget_lock_acquire_recursive>: + 80055e0: 4770 bx lr -08005562 <__retarget_lock_release_recursive>: - 8005562: 4770 bx lr +080055e2 <__retarget_lock_release_recursive>: + 80055e2: 4770 bx lr -08005564 : - 8005564: 440a add r2, r1 - 8005566: 4291 cmp r1, r2 - 8005568: f100 33ff add.w r3, r0, #4294967295 - 800556c: d100 bne.n 8005570 - 800556e: 4770 bx lr - 8005570: b510 push {r4, lr} - 8005572: f811 4b01 ldrb.w r4, [r1], #1 - 8005576: f803 4f01 strb.w r4, [r3, #1]! - 800557a: 4291 cmp r1, r2 - 800557c: d1f9 bne.n 8005572 - 800557e: bd10 pop {r4, pc} +080055e4 : + 80055e4: 440a add r2, r1 + 80055e6: 4291 cmp r1, r2 + 80055e8: f100 33ff add.w r3, r0, #4294967295 + 80055ec: d100 bne.n 80055f0 + 80055ee: 4770 bx lr + 80055f0: b510 push {r4, lr} + 80055f2: f811 4b01 ldrb.w r4, [r1], #1 + 80055f6: f803 4f01 strb.w r4, [r3, #1]! + 80055fa: 4291 cmp r1, r2 + 80055fc: d1f9 bne.n 80055f2 + 80055fe: bd10 pop {r4, pc} -08005580 <_free_r>: - 8005580: b537 push {r0, r1, r2, r4, r5, lr} - 8005582: 2900 cmp r1, #0 - 8005584: d044 beq.n 8005610 <_free_r+0x90> - 8005586: f851 3c04 ldr.w r3, [r1, #-4] - 800558a: 9001 str r0, [sp, #4] - 800558c: 2b00 cmp r3, #0 - 800558e: f1a1 0404 sub.w r4, r1, #4 - 8005592: bfb8 it lt - 8005594: 18e4 addlt r4, r4, r3 - 8005596: f000 f83f bl 8005618 <__malloc_lock> - 800559a: 4a1e ldr r2, [pc, #120] ; (8005614 <_free_r+0x94>) - 800559c: 9801 ldr r0, [sp, #4] - 800559e: 6813 ldr r3, [r2, #0] - 80055a0: b933 cbnz r3, 80055b0 <_free_r+0x30> - 80055a2: 6063 str r3, [r4, #4] - 80055a4: 6014 str r4, [r2, #0] - 80055a6: b003 add sp, #12 - 80055a8: e8bd 4030 ldmia.w sp!, {r4, r5, lr} - 80055ac: f000 b83a b.w 8005624 <__malloc_unlock> - 80055b0: 42a3 cmp r3, r4 - 80055b2: d908 bls.n 80055c6 <_free_r+0x46> - 80055b4: 6825 ldr r5, [r4, #0] - 80055b6: 1961 adds r1, r4, r5 - 80055b8: 428b cmp r3, r1 - 80055ba: bf01 itttt eq - 80055bc: 6819 ldreq r1, [r3, #0] - 80055be: 685b ldreq r3, [r3, #4] - 80055c0: 1949 addeq r1, r1, r5 - 80055c2: 6021 streq r1, [r4, #0] - 80055c4: e7ed b.n 80055a2 <_free_r+0x22> - 80055c6: 461a mov r2, r3 - 80055c8: 685b ldr r3, [r3, #4] - 80055ca: b10b cbz r3, 80055d0 <_free_r+0x50> - 80055cc: 42a3 cmp r3, r4 - 80055ce: d9fa bls.n 80055c6 <_free_r+0x46> - 80055d0: 6811 ldr r1, [r2, #0] - 80055d2: 1855 adds r5, r2, r1 - 80055d4: 42a5 cmp r5, r4 - 80055d6: d10b bne.n 80055f0 <_free_r+0x70> - 80055d8: 6824 ldr r4, [r4, #0] - 80055da: 4421 add r1, r4 - 80055dc: 1854 adds r4, r2, r1 - 80055de: 42a3 cmp r3, r4 - 80055e0: 6011 str r1, [r2, #0] - 80055e2: d1e0 bne.n 80055a6 <_free_r+0x26> - 80055e4: 681c ldr r4, [r3, #0] - 80055e6: 685b ldr r3, [r3, #4] - 80055e8: 6053 str r3, [r2, #4] - 80055ea: 440c add r4, r1 - 80055ec: 6014 str r4, [r2, #0] - 80055ee: e7da b.n 80055a6 <_free_r+0x26> - 80055f0: d902 bls.n 80055f8 <_free_r+0x78> - 80055f2: 230c movs r3, #12 - 80055f4: 6003 str r3, [r0, #0] - 80055f6: e7d6 b.n 80055a6 <_free_r+0x26> - 80055f8: 6825 ldr r5, [r4, #0] - 80055fa: 1961 adds r1, r4, r5 - 80055fc: 428b cmp r3, r1 - 80055fe: bf04 itt eq - 8005600: 6819 ldreq r1, [r3, #0] - 8005602: 685b ldreq r3, [r3, #4] - 8005604: 6063 str r3, [r4, #4] - 8005606: bf04 itt eq - 8005608: 1949 addeq r1, r1, r5 - 800560a: 6021 streq r1, [r4, #0] - 800560c: 6054 str r4, [r2, #4] - 800560e: e7ca b.n 80055a6 <_free_r+0x26> - 8005610: b003 add sp, #12 - 8005612: bd30 pop {r4, r5, pc} - 8005614: 20004c50 .word 0x20004c50 +08005600 <_free_r>: + 8005600: b537 push {r0, r1, r2, r4, r5, lr} + 8005602: 2900 cmp r1, #0 + 8005604: d044 beq.n 8005690 <_free_r+0x90> + 8005606: f851 3c04 ldr.w r3, [r1, #-4] + 800560a: 9001 str r0, [sp, #4] + 800560c: 2b00 cmp r3, #0 + 800560e: f1a1 0404 sub.w r4, r1, #4 + 8005612: bfb8 it lt + 8005614: 18e4 addlt r4, r4, r3 + 8005616: f000 f83f bl 8005698 <__malloc_lock> + 800561a: 4a1e ldr r2, [pc, #120] ; (8005694 <_free_r+0x94>) + 800561c: 9801 ldr r0, [sp, #4] + 800561e: 6813 ldr r3, [r2, #0] + 8005620: b933 cbnz r3, 8005630 <_free_r+0x30> + 8005622: 6063 str r3, [r4, #4] + 8005624: 6014 str r4, [r2, #0] + 8005626: b003 add sp, #12 + 8005628: e8bd 4030 ldmia.w sp!, {r4, r5, lr} + 800562c: f000 b83a b.w 80056a4 <__malloc_unlock> + 8005630: 42a3 cmp r3, r4 + 8005632: d908 bls.n 8005646 <_free_r+0x46> + 8005634: 6825 ldr r5, [r4, #0] + 8005636: 1961 adds r1, r4, r5 + 8005638: 428b cmp r3, r1 + 800563a: bf01 itttt eq + 800563c: 6819 ldreq r1, [r3, #0] + 800563e: 685b ldreq r3, [r3, #4] + 8005640: 1949 addeq r1, r1, r5 + 8005642: 6021 streq r1, [r4, #0] + 8005644: e7ed b.n 8005622 <_free_r+0x22> + 8005646: 461a mov r2, r3 + 8005648: 685b ldr r3, [r3, #4] + 800564a: b10b cbz r3, 8005650 <_free_r+0x50> + 800564c: 42a3 cmp r3, r4 + 800564e: d9fa bls.n 8005646 <_free_r+0x46> + 8005650: 6811 ldr r1, [r2, #0] + 8005652: 1855 adds r5, r2, r1 + 8005654: 42a5 cmp r5, r4 + 8005656: d10b bne.n 8005670 <_free_r+0x70> + 8005658: 6824 ldr r4, [r4, #0] + 800565a: 4421 add r1, r4 + 800565c: 1854 adds r4, r2, r1 + 800565e: 42a3 cmp r3, r4 + 8005660: 6011 str r1, [r2, #0] + 8005662: d1e0 bne.n 8005626 <_free_r+0x26> + 8005664: 681c ldr r4, [r3, #0] + 8005666: 685b ldr r3, [r3, #4] + 8005668: 6053 str r3, [r2, #4] + 800566a: 440c add r4, r1 + 800566c: 6014 str r4, [r2, #0] + 800566e: e7da b.n 8005626 <_free_r+0x26> + 8005670: d902 bls.n 8005678 <_free_r+0x78> + 8005672: 230c movs r3, #12 + 8005674: 6003 str r3, [r0, #0] + 8005676: e7d6 b.n 8005626 <_free_r+0x26> + 8005678: 6825 ldr r5, [r4, #0] + 800567a: 1961 adds r1, r4, r5 + 800567c: 428b cmp r3, r1 + 800567e: bf04 itt eq + 8005680: 6819 ldreq r1, [r3, #0] + 8005682: 685b ldreq r3, [r3, #4] + 8005684: 6063 str r3, [r4, #4] + 8005686: bf04 itt eq + 8005688: 1949 addeq r1, r1, r5 + 800568a: 6021 streq r1, [r4, #0] + 800568c: 6054 str r4, [r2, #4] + 800568e: e7ca b.n 8005626 <_free_r+0x26> + 8005690: b003 add sp, #12 + 8005692: bd30 pop {r4, r5, pc} + 8005694: 20004c50 .word 0x20004c50 -08005618 <__malloc_lock>: - 8005618: 4801 ldr r0, [pc, #4] ; (8005620 <__malloc_lock+0x8>) - 800561a: f7ff bfa1 b.w 8005560 <__retarget_lock_acquire_recursive> - 800561e: bf00 nop - 8005620: 20004c4c .word 0x20004c4c +08005698 <__malloc_lock>: + 8005698: 4801 ldr r0, [pc, #4] ; (80056a0 <__malloc_lock+0x8>) + 800569a: f7ff bfa1 b.w 80055e0 <__retarget_lock_acquire_recursive> + 800569e: bf00 nop + 80056a0: 20004c4c .word 0x20004c4c -08005624 <__malloc_unlock>: - 8005624: 4801 ldr r0, [pc, #4] ; (800562c <__malloc_unlock+0x8>) - 8005626: f7ff bf9c b.w 8005562 <__retarget_lock_release_recursive> - 800562a: bf00 nop - 800562c: 20004c4c .word 0x20004c4c +080056a4 <__malloc_unlock>: + 80056a4: 4801 ldr r0, [pc, #4] ; (80056ac <__malloc_unlock+0x8>) + 80056a6: f7ff bf9c b.w 80055e2 <__retarget_lock_release_recursive> + 80056aa: bf00 nop + 80056ac: 20004c4c .word 0x20004c4c -08005630 <_init>: - 8005630: b5f8 push {r3, r4, r5, r6, r7, lr} - 8005632: bf00 nop - 8005634: bcf8 pop {r3, r4, r5, r6, r7} - 8005636: bc08 pop {r3} - 8005638: 469e mov lr, r3 - 800563a: 4770 bx lr +080056b0 <_init>: + 80056b0: b5f8 push {r3, r4, r5, r6, r7, lr} + 80056b2: bf00 nop + 80056b4: bcf8 pop {r3, r4, r5, r6, r7} + 80056b6: bc08 pop {r3} + 80056b8: 469e mov lr, r3 + 80056ba: 4770 bx lr -0800563c <_fini>: - 800563c: b5f8 push {r3, r4, r5, r6, r7, lr} - 800563e: bf00 nop - 8005640: bcf8 pop {r3, r4, r5, r6, r7} - 8005642: bc08 pop {r3} - 8005644: 469e mov lr, r3 - 8005646: 4770 bx lr +080056bc <_fini>: + 80056bc: b5f8 push {r3, r4, r5, r6, r7, lr} + 80056be: bf00 nop + 80056c0: bcf8 pop {r3, r4, r5, r6, r7} + 80056c2: bc08 pop {r3} + 80056c4: 469e mov lr, r3 + 80056c6: 4770 bx lr diff --git a/access_control_stm32/Debug/access_control_stm32.map b/access_control_stm32/Debug/access_control_stm32.map index 11f041b..691ad26 100644 --- a/access_control_stm32/Debug/access_control_stm32.map +++ b/access_control_stm32/Debug/access_control_stm32.map @@ -4531,7 +4531,7 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000008000000 g_pfnVectors 0x0000000008000198 . = ALIGN (0x4) -.text 0x00000000080001a0 0x54a8 +.text 0x00000000080001a0 0x5528 0x00000000080001a0 . = ALIGN (0x4) *(.text) .text 0x00000000080001a0 0x40 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o @@ -4556,543 +4556,543 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000008000760 0xf4 ./Core/Src/main.o 0x0000000008000760 StartMainTask .text.startDoorHandleTask - 0x0000000008000854 0x100 ./Core/Src/main.o + 0x0000000008000854 0x17c ./Core/Src/main.o 0x0000000008000854 startDoorHandleTask .text.HAL_TIM_PeriodElapsedCallback - 0x0000000008000954 0x24 ./Core/Src/main.o - 0x0000000008000954 HAL_TIM_PeriodElapsedCallback + 0x00000000080009d0 0x24 ./Core/Src/main.o + 0x00000000080009d0 HAL_TIM_PeriodElapsedCallback .text.Error_Handler - 0x0000000008000978 0xa ./Core/Src/main.o - 0x0000000008000978 Error_Handler - *fill* 0x0000000008000982 0x2 + 0x00000000080009f4 0xa ./Core/Src/main.o + 0x00000000080009f4 Error_Handler + *fill* 0x00000000080009fe 0x2 .text.HAL_MspInit - 0x0000000008000984 0x58 ./Core/Src/stm32f4xx_hal_msp.o - 0x0000000008000984 HAL_MspInit + 0x0000000008000a00 0x58 ./Core/Src/stm32f4xx_hal_msp.o + 0x0000000008000a00 HAL_MspInit .text.HAL_UART_MspInit - 0x00000000080009dc 0x90 ./Core/Src/stm32f4xx_hal_msp.o - 0x00000000080009dc HAL_UART_MspInit + 0x0000000008000a58 0x90 ./Core/Src/stm32f4xx_hal_msp.o + 0x0000000008000a58 HAL_UART_MspInit .text.HAL_InitTick - 0x0000000008000a6c 0xe4 ./Core/Src/stm32f4xx_hal_timebase_tim.o - 0x0000000008000a6c HAL_InitTick + 0x0000000008000ae8 0xe4 ./Core/Src/stm32f4xx_hal_timebase_tim.o + 0x0000000008000ae8 HAL_InitTick .text.NMI_Handler - 0x0000000008000b50 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000b50 NMI_Handler + 0x0000000008000bcc 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000bcc NMI_Handler .text.HardFault_Handler - 0x0000000008000b56 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000b56 HardFault_Handler + 0x0000000008000bd2 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000bd2 HardFault_Handler .text.MemManage_Handler - 0x0000000008000b5c 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000b5c MemManage_Handler + 0x0000000008000bd8 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000bd8 MemManage_Handler .text.BusFault_Handler - 0x0000000008000b62 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000b62 BusFault_Handler + 0x0000000008000bde 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000bde BusFault_Handler .text.UsageFault_Handler - 0x0000000008000b68 0x6 ./Core/Src/stm32f4xx_it.o - 0x0000000008000b68 UsageFault_Handler + 0x0000000008000be4 0x6 ./Core/Src/stm32f4xx_it.o + 0x0000000008000be4 UsageFault_Handler .text.DebugMon_Handler - 0x0000000008000b6e 0xe ./Core/Src/stm32f4xx_it.o - 0x0000000008000b6e DebugMon_Handler + 0x0000000008000bea 0xe ./Core/Src/stm32f4xx_it.o + 0x0000000008000bea DebugMon_Handler .text.TIM1_UP_TIM10_IRQHandler - 0x0000000008000b7c 0x14 ./Core/Src/stm32f4xx_it.o - 0x0000000008000b7c TIM1_UP_TIM10_IRQHandler + 0x0000000008000bf8 0x14 ./Core/Src/stm32f4xx_it.o + 0x0000000008000bf8 TIM1_UP_TIM10_IRQHandler .text.SystemInit - 0x0000000008000b90 0x24 ./Core/Src/system_stm32f4xx.o - 0x0000000008000b90 SystemInit + 0x0000000008000c0c 0x24 ./Core/Src/system_stm32f4xx.o + 0x0000000008000c0c SystemInit .text.Reset_Handler - 0x0000000008000bb4 0x50 ./Core/Startup/startup_stm32f411retx.o - 0x0000000008000bb4 Reset_Handler + 0x0000000008000c30 0x50 ./Core/Startup/startup_stm32f411retx.o + 0x0000000008000c30 Reset_Handler .text.Default_Handler - 0x0000000008000c04 0x2 ./Core/Startup/startup_stm32f411retx.o - 0x0000000008000c04 RTC_Alarm_IRQHandler - 0x0000000008000c04 EXTI2_IRQHandler - 0x0000000008000c04 SPI4_IRQHandler - 0x0000000008000c04 TIM1_CC_IRQHandler - 0x0000000008000c04 DMA2_Stream5_IRQHandler - 0x0000000008000c04 DMA1_Stream5_IRQHandler - 0x0000000008000c04 PVD_IRQHandler - 0x0000000008000c04 SDIO_IRQHandler - 0x0000000008000c04 TAMP_STAMP_IRQHandler - 0x0000000008000c04 EXTI3_IRQHandler - 0x0000000008000c04 I2C3_ER_IRQHandler - 0x0000000008000c04 EXTI0_IRQHandler - 0x0000000008000c04 I2C2_EV_IRQHandler - 0x0000000008000c04 DMA1_Stream2_IRQHandler - 0x0000000008000c04 FPU_IRQHandler - 0x0000000008000c04 DMA2_Stream2_IRQHandler - 0x0000000008000c04 SPI1_IRQHandler - 0x0000000008000c04 TIM1_BRK_TIM9_IRQHandler - 0x0000000008000c04 DMA2_Stream3_IRQHandler - 0x0000000008000c04 USART6_IRQHandler - 0x0000000008000c04 DMA2_Stream0_IRQHandler - 0x0000000008000c04 TIM4_IRQHandler - 0x0000000008000c04 I2C1_EV_IRQHandler - 0x0000000008000c04 DMA1_Stream6_IRQHandler - 0x0000000008000c04 DMA1_Stream1_IRQHandler - 0x0000000008000c04 TIM3_IRQHandler - 0x0000000008000c04 RCC_IRQHandler - 0x0000000008000c04 Default_Handler - 0x0000000008000c04 EXTI15_10_IRQHandler - 0x0000000008000c04 ADC_IRQHandler - 0x0000000008000c04 DMA1_Stream7_IRQHandler - 0x0000000008000c04 SPI5_IRQHandler - 0x0000000008000c04 TIM5_IRQHandler - 0x0000000008000c04 DMA2_Stream7_IRQHandler - 0x0000000008000c04 I2C3_EV_IRQHandler - 0x0000000008000c04 EXTI9_5_IRQHandler - 0x0000000008000c04 RTC_WKUP_IRQHandler - 0x0000000008000c04 SPI2_IRQHandler - 0x0000000008000c04 DMA1_Stream0_IRQHandler - 0x0000000008000c04 EXTI4_IRQHandler - 0x0000000008000c04 WWDG_IRQHandler - 0x0000000008000c04 TIM2_IRQHandler - 0x0000000008000c04 OTG_FS_WKUP_IRQHandler - 0x0000000008000c04 TIM1_TRG_COM_TIM11_IRQHandler - 0x0000000008000c04 EXTI1_IRQHandler - 0x0000000008000c04 USART2_IRQHandler - 0x0000000008000c04 I2C2_ER_IRQHandler - 0x0000000008000c04 DMA2_Stream1_IRQHandler - 0x0000000008000c04 FLASH_IRQHandler - 0x0000000008000c04 DMA2_Stream4_IRQHandler - 0x0000000008000c04 USART1_IRQHandler - 0x0000000008000c04 OTG_FS_IRQHandler - 0x0000000008000c04 SPI3_IRQHandler - 0x0000000008000c04 DMA1_Stream4_IRQHandler - 0x0000000008000c04 I2C1_ER_IRQHandler - 0x0000000008000c04 DMA2_Stream6_IRQHandler - 0x0000000008000c04 DMA1_Stream3_IRQHandler - *fill* 0x0000000008000c06 0x2 + 0x0000000008000c80 0x2 ./Core/Startup/startup_stm32f411retx.o + 0x0000000008000c80 RTC_Alarm_IRQHandler + 0x0000000008000c80 EXTI2_IRQHandler + 0x0000000008000c80 SPI4_IRQHandler + 0x0000000008000c80 TIM1_CC_IRQHandler + 0x0000000008000c80 DMA2_Stream5_IRQHandler + 0x0000000008000c80 DMA1_Stream5_IRQHandler + 0x0000000008000c80 PVD_IRQHandler + 0x0000000008000c80 SDIO_IRQHandler + 0x0000000008000c80 TAMP_STAMP_IRQHandler + 0x0000000008000c80 EXTI3_IRQHandler + 0x0000000008000c80 I2C3_ER_IRQHandler + 0x0000000008000c80 EXTI0_IRQHandler + 0x0000000008000c80 I2C2_EV_IRQHandler + 0x0000000008000c80 DMA1_Stream2_IRQHandler + 0x0000000008000c80 FPU_IRQHandler + 0x0000000008000c80 DMA2_Stream2_IRQHandler + 0x0000000008000c80 SPI1_IRQHandler + 0x0000000008000c80 TIM1_BRK_TIM9_IRQHandler + 0x0000000008000c80 DMA2_Stream3_IRQHandler + 0x0000000008000c80 USART6_IRQHandler + 0x0000000008000c80 DMA2_Stream0_IRQHandler + 0x0000000008000c80 TIM4_IRQHandler + 0x0000000008000c80 I2C1_EV_IRQHandler + 0x0000000008000c80 DMA1_Stream6_IRQHandler + 0x0000000008000c80 DMA1_Stream1_IRQHandler + 0x0000000008000c80 TIM3_IRQHandler + 0x0000000008000c80 RCC_IRQHandler + 0x0000000008000c80 Default_Handler + 0x0000000008000c80 EXTI15_10_IRQHandler + 0x0000000008000c80 ADC_IRQHandler + 0x0000000008000c80 DMA1_Stream7_IRQHandler + 0x0000000008000c80 SPI5_IRQHandler + 0x0000000008000c80 TIM5_IRQHandler + 0x0000000008000c80 DMA2_Stream7_IRQHandler + 0x0000000008000c80 I2C3_EV_IRQHandler + 0x0000000008000c80 EXTI9_5_IRQHandler + 0x0000000008000c80 RTC_WKUP_IRQHandler + 0x0000000008000c80 SPI2_IRQHandler + 0x0000000008000c80 DMA1_Stream0_IRQHandler + 0x0000000008000c80 EXTI4_IRQHandler + 0x0000000008000c80 WWDG_IRQHandler + 0x0000000008000c80 TIM2_IRQHandler + 0x0000000008000c80 OTG_FS_WKUP_IRQHandler + 0x0000000008000c80 TIM1_TRG_COM_TIM11_IRQHandler + 0x0000000008000c80 EXTI1_IRQHandler + 0x0000000008000c80 USART2_IRQHandler + 0x0000000008000c80 I2C2_ER_IRQHandler + 0x0000000008000c80 DMA2_Stream1_IRQHandler + 0x0000000008000c80 FLASH_IRQHandler + 0x0000000008000c80 DMA2_Stream4_IRQHandler + 0x0000000008000c80 USART1_IRQHandler + 0x0000000008000c80 OTG_FS_IRQHandler + 0x0000000008000c80 SPI3_IRQHandler + 0x0000000008000c80 DMA1_Stream4_IRQHandler + 0x0000000008000c80 I2C1_ER_IRQHandler + 0x0000000008000c80 DMA2_Stream6_IRQHandler + 0x0000000008000c80 DMA1_Stream3_IRQHandler + *fill* 0x0000000008000c82 0x2 .text.HAL_Init - 0x0000000008000c08 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x0000000008000c08 HAL_Init + 0x0000000008000c84 0x44 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0000000008000c84 HAL_Init .text.HAL_IncTick - 0x0000000008000c4c 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x0000000008000c4c HAL_IncTick + 0x0000000008000cc8 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0000000008000cc8 HAL_IncTick .text.HAL_GetTick - 0x0000000008000c74 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - 0x0000000008000c74 HAL_GetTick + 0x0000000008000cf0 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + 0x0000000008000cf0 HAL_GetTick .text.__NVIC_SetPriorityGrouping - 0x0000000008000c8c 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000d08 0x48 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_GetPriorityGrouping - 0x0000000008000cd4 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000d50 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_EnableIRQ - 0x0000000008000cf0 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000d6c 0x3c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.__NVIC_SetPriority - 0x0000000008000d2c 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000da8 0x54 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.NVIC_EncodePriority - 0x0000000008000d80 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000dfc 0x66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o .text.HAL_NVIC_SetPriorityGrouping - 0x0000000008000de6 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x0000000008000de6 HAL_NVIC_SetPriorityGrouping + 0x0000000008000e62 0x16 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000e62 HAL_NVIC_SetPriorityGrouping .text.HAL_NVIC_SetPriority - 0x0000000008000dfc 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x0000000008000dfc HAL_NVIC_SetPriority + 0x0000000008000e78 0x38 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000e78 HAL_NVIC_SetPriority .text.HAL_NVIC_EnableIRQ - 0x0000000008000e34 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - 0x0000000008000e34 HAL_NVIC_EnableIRQ + 0x0000000008000eb0 0x1c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + 0x0000000008000eb0 HAL_NVIC_EnableIRQ .text.HAL_GPIO_Init - 0x0000000008000e50 0x308 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0000000008000e50 HAL_GPIO_Init + 0x0000000008000ecc 0x308 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x0000000008000ecc HAL_GPIO_Init .text.HAL_GPIO_ReadPin - 0x0000000008001158 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0000000008001158 HAL_GPIO_ReadPin + 0x00000000080011d4 0x30 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x00000000080011d4 HAL_GPIO_ReadPin .text.HAL_GPIO_WritePin - 0x0000000008001188 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - 0x0000000008001188 HAL_GPIO_WritePin - *fill* 0x00000000080011ba 0x2 + 0x0000000008001204 0x32 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + 0x0000000008001204 HAL_GPIO_WritePin + *fill* 0x0000000008001236 0x2 .text.HAL_RCC_OscConfig - 0x00000000080011bc 0x4f0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x00000000080011bc HAL_RCC_OscConfig + 0x0000000008001238 0x4f0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001238 HAL_RCC_OscConfig .text.HAL_RCC_ClockConfig - 0x00000000080016ac 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x00000000080016ac HAL_RCC_ClockConfig + 0x0000000008001728 0x1cc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001728 HAL_RCC_ClockConfig .text.HAL_RCC_GetSysClockFreq - 0x0000000008001878 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008001878 HAL_RCC_GetSysClockFreq + 0x00000000080018f4 0x20c ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x00000000080018f4 HAL_RCC_GetSysClockFreq .text.HAL_RCC_GetHCLKFreq - 0x0000000008001a84 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008001a84 HAL_RCC_GetHCLKFreq + 0x0000000008001b00 0x18 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001b00 HAL_RCC_GetHCLKFreq .text.HAL_RCC_GetPCLK1Freq - 0x0000000008001a9c 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008001a9c HAL_RCC_GetPCLK1Freq + 0x0000000008001b18 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001b18 HAL_RCC_GetPCLK1Freq .text.HAL_RCC_GetPCLK2Freq - 0x0000000008001ac4 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008001ac4 HAL_RCC_GetPCLK2Freq + 0x0000000008001b40 0x28 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001b40 HAL_RCC_GetPCLK2Freq .text.HAL_RCC_GetClockConfig - 0x0000000008001aec 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - 0x0000000008001aec HAL_RCC_GetClockConfig + 0x0000000008001b68 0x64 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + 0x0000000008001b68 HAL_RCC_GetClockConfig .text.HAL_TIM_Base_Init - 0x0000000008001b50 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001b50 HAL_TIM_Base_Init + 0x0000000008001bcc 0x9e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001bcc HAL_TIM_Base_Init .text.HAL_TIM_Base_MspInit - 0x0000000008001bee 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001bee HAL_TIM_Base_MspInit - *fill* 0x0000000008001c02 0x2 + 0x0000000008001c6a 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001c6a HAL_TIM_Base_MspInit + *fill* 0x0000000008001c7e 0x2 .text.HAL_TIM_Base_Start_IT - 0x0000000008001c04 0xc4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001c04 HAL_TIM_Base_Start_IT + 0x0000000008001c80 0xc4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001c80 HAL_TIM_Base_Start_IT .text.HAL_TIM_IRQHandler - 0x0000000008001cc8 0x210 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001cc8 HAL_TIM_IRQHandler + 0x0000000008001d44 0x210 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001d44 HAL_TIM_IRQHandler .text.HAL_TIM_OC_DelayElapsedCallback - 0x0000000008001ed8 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001ed8 HAL_TIM_OC_DelayElapsedCallback + 0x0000000008001f54 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001f54 HAL_TIM_OC_DelayElapsedCallback .text.HAL_TIM_IC_CaptureCallback - 0x0000000008001eec 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001eec HAL_TIM_IC_CaptureCallback + 0x0000000008001f68 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001f68 HAL_TIM_IC_CaptureCallback .text.HAL_TIM_PWM_PulseFinishedCallback - 0x0000000008001f00 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001f00 HAL_TIM_PWM_PulseFinishedCallback + 0x0000000008001f7c 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001f7c HAL_TIM_PWM_PulseFinishedCallback .text.HAL_TIM_TriggerCallback - 0x0000000008001f14 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001f14 HAL_TIM_TriggerCallback + 0x0000000008001f90 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001f90 HAL_TIM_TriggerCallback .text.TIM_Base_SetConfig - 0x0000000008001f28 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - 0x0000000008001f28 TIM_Base_SetConfig + 0x0000000008001fa4 0x100 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + 0x0000000008001fa4 TIM_Base_SetConfig .text.HAL_TIMEx_CommutCallback - 0x0000000008002028 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - 0x0000000008002028 HAL_TIMEx_CommutCallback + 0x00000000080020a4 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x00000000080020a4 HAL_TIMEx_CommutCallback .text.HAL_TIMEx_BreakCallback - 0x000000000800203c 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - 0x000000000800203c HAL_TIMEx_BreakCallback + 0x00000000080020b8 0x14 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + 0x00000000080020b8 HAL_TIMEx_BreakCallback .text.HAL_UART_Init - 0x0000000008002050 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x0000000008002050 HAL_UART_Init + 0x00000000080020cc 0x9a ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x00000000080020cc HAL_UART_Init .text.HAL_UART_Transmit - 0x00000000080020ea 0x124 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x00000000080020ea HAL_UART_Transmit + 0x0000000008002166 0x124 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x0000000008002166 HAL_UART_Transmit .text.HAL_UART_Receive - 0x000000000800220e 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - 0x000000000800220e HAL_UART_Receive + 0x000000000800228a 0x144 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x000000000800228a HAL_UART_Receive .text.UART_WaitOnFlagUntilTimeout - 0x0000000008002352 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - *fill* 0x000000000800242e 0x2 + 0x00000000080023ce 0xdc ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + *fill* 0x00000000080024aa 0x2 .text.UART_SetConfig - 0x0000000008002430 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + 0x00000000080024ac 0x4e8 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o .text.__NVIC_SetPriority - 0x0000000008002918 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008002994 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o .text.SysTick_Handler - 0x000000000800296c 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x000000000800296c SysTick_Handler + 0x00000000080029e8 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x00000000080029e8 SysTick_Handler .text.SVC_Setup - 0x000000000800298c 0x12 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - *fill* 0x000000000800299e 0x2 + 0x0000000008002a08 0x12 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + *fill* 0x0000000008002a1a 0x2 .text.osKernelInitialize - 0x00000000080029a0 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x00000000080029a0 osKernelInitialize + 0x0000000008002a1c 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008002a1c osKernelInitialize .text.osKernelStart - 0x00000000080029e8 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x00000000080029e8 osKernelStart + 0x0000000008002a64 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008002a64 osKernelStart .text.osThreadNew - 0x0000000008002a34 0x124 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008002a34 osThreadNew + 0x0000000008002ab0 0x124 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008002ab0 osThreadNew .text.vApplicationGetIdleTaskMemory - 0x0000000008002b58 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008002b58 vApplicationGetIdleTaskMemory + 0x0000000008002bd4 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008002bd4 vApplicationGetIdleTaskMemory .text.vApplicationGetTimerTaskMemory - 0x0000000008002b8c 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - 0x0000000008002b8c vApplicationGetTimerTaskMemory + 0x0000000008002c08 0x34 ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + 0x0000000008002c08 vApplicationGetTimerTaskMemory .text.vListInitialise - 0x0000000008002bc0 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0000000008002bc0 vListInitialise + 0x0000000008002c3c 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008002c3c vListInitialise .text.vListInitialiseItem - 0x0000000008002c00 0x1a ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0000000008002c00 vListInitialiseItem + 0x0000000008002c7c 0x1a ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008002c7c vListInitialiseItem .text.vListInsertEnd - 0x0000000008002c1a 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0000000008002c1a vListInsertEnd + 0x0000000008002c96 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008002c96 vListInsertEnd .text.vListInsert - 0x0000000008002c62 0x72 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0000000008002c62 vListInsert + 0x0000000008002cde 0x72 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008002cde vListInsert .text.uxListRemove - 0x0000000008002cd4 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - 0x0000000008002cd4 uxListRemove + 0x0000000008002d50 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + 0x0000000008002d50 uxListRemove .text.xQueueGenericReset - 0x0000000008002d28 0xd0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008002d28 xQueueGenericReset + 0x0000000008002da4 0xd0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008002da4 xQueueGenericReset .text.xQueueGenericCreateStatic - 0x0000000008002df8 0xf0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008002df8 xQueueGenericCreateStatic + 0x0000000008002e74 0xf0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008002e74 xQueueGenericCreateStatic .text.prvInitialiseNewQueue - 0x0000000008002ee8 0x46 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - *fill* 0x0000000008002f2e 0x2 + 0x0000000008002f64 0x46 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + *fill* 0x0000000008002faa 0x2 .text.xQueueGenericSend - 0x0000000008002f30 0x1fc ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008002f30 xQueueGenericSend + 0x0000000008002fac 0x1fc ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008002fac xQueueGenericSend .text.xQueueGenericSendFromISR - 0x000000000800312c 0x136 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x000000000800312c xQueueGenericSendFromISR - *fill* 0x0000000008003262 0x2 + 0x00000000080031a8 0x136 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000000080031a8 xQueueGenericSendFromISR + *fill* 0x00000000080032de 0x2 .text.xQueueReceive - 0x0000000008003264 0x1c0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003264 xQueueReceive + 0x00000000080032e0 0x1c0 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000000080032e0 xQueueReceive .text.prvCopyDataToQueue - 0x0000000008003424 0xd4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000000080034a0 0xd4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvCopyDataFromQueue - 0x00000000080034f8 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003574 0x4c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvUnlockQueue - 0x0000000008003544 0xa4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000000080035c0 0xa4 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueEmpty - 0x00000000080035e8 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003664 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.prvIsQueueFull - 0x0000000008003614 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003690 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o .text.vQueueAddToRegistry - 0x0000000008003644 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003644 vQueueAddToRegistry + 0x00000000080036c0 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x00000000080036c0 vQueueAddToRegistry .text.vQueueWaitForMessageRestricted - 0x0000000008003698 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - 0x0000000008003698 vQueueWaitForMessageRestricted + 0x0000000008003714 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + 0x0000000008003714 vQueueWaitForMessageRestricted .text.xTaskCreateStatic - 0x0000000008003700 0xba ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003700 xTaskCreateStatic + 0x000000000800377c 0xba ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000000000800377c xTaskCreateStatic .text.xTaskCreate - 0x00000000080037ba 0x8a ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080037ba xTaskCreate + 0x0000000008003836 0x8a ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003836 xTaskCreate .text.prvInitialiseNewTask - 0x0000000008003844 0x14c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080038c0 0x14c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvAddNewTaskToReadyList - 0x0000000008003990 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003a0c 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.vTaskDelay - 0x0000000008003a70 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003a70 vTaskDelay + 0x0000000008003aec 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003aec vTaskDelay .text.vTaskStartScheduler - 0x0000000008003ad8 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003ad8 vTaskStartScheduler + 0x0000000008003b54 0xe0 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003b54 vTaskStartScheduler .text.vTaskSuspendAll - 0x0000000008003bb8 0x1c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003bb8 vTaskSuspendAll + 0x0000000008003c34 0x1c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003c34 vTaskSuspendAll .text.xTaskResumeAll - 0x0000000008003bd4 0x13c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003bd4 xTaskResumeAll + 0x0000000008003c50 0x13c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003c50 xTaskResumeAll .text.xTaskGetTickCount - 0x0000000008003d10 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003d10 xTaskGetTickCount + 0x0000000008003d8c 0x20 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003d8c xTaskGetTickCount .text.xTaskIncrementTick - 0x0000000008003d30 0x174 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003d30 xTaskIncrementTick + 0x0000000008003dac 0x174 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003dac xTaskIncrementTick .text.vTaskSwitchContext - 0x0000000008003ea4 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003ea4 vTaskSwitchContext + 0x0000000008003f20 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003f20 vTaskSwitchContext .text.vTaskPlaceOnEventList - 0x0000000008003f6c 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003f6c vTaskPlaceOnEventList + 0x0000000008003fe8 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008003fe8 vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted - 0x0000000008003fb4 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008003fb4 vTaskPlaceOnEventListRestricted + 0x0000000008004030 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004030 vTaskPlaceOnEventListRestricted .text.xTaskRemoveFromEventList - 0x000000000800400c 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x000000000800400c xTaskRemoveFromEventList + 0x0000000008004088 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004088 xTaskRemoveFromEventList .text.vTaskInternalSetTimeOutState - 0x00000000080040d4 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080040d4 vTaskInternalSetTimeOutState + 0x0000000008004150 0x2c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004150 vTaskInternalSetTimeOutState .text.xTaskCheckForTimeOut - 0x0000000008004100 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004100 xTaskCheckForTimeOut + 0x000000000800417c 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000000000800417c xTaskCheckForTimeOut .text.vTaskMissedYield - 0x00000000080041c4 0x18 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080041c4 vTaskMissedYield + 0x0000000008004240 0x18 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004240 vTaskMissedYield .text.prvIdleTask - 0x00000000080041dc 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004258 0x30 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvInitialiseTaskLists - 0x000000000800420c 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004288 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvCheckTasksWaitingTermination - 0x000000000800428c 0x5c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004308 0x5c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvDeleteTCB - 0x00000000080042e8 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004364 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.prvResetNextTaskUnblockTime - 0x0000000008004350 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x00000000080043cc 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTaskGetSchedulerState - 0x0000000008004390 0x3c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x0000000008004390 xTaskGetSchedulerState + 0x000000000800440c 0x3c ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x000000000800440c xTaskGetSchedulerState .text.xTaskPriorityDisinherit - 0x00000000080043cc 0xdc ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - 0x00000000080043cc xTaskPriorityDisinherit + 0x0000000008004448 0xdc ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004448 xTaskPriorityDisinherit .text.prvAddCurrentTaskToDelayedList - 0x00000000080044a8 0xa8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + 0x0000000008004524 0xa8 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o .text.xTimerCreateTimerTask - 0x0000000008004550 0x90 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o - 0x0000000008004550 xTimerCreateTimerTask + 0x00000000080045cc 0x90 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080045cc xTimerCreateTimerTask .text.xTimerGenericCommand - 0x00000000080045e0 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o - 0x00000000080045e0 xTimerGenericCommand + 0x000000000800465c 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x000000000800465c xTimerGenericCommand .text.prvProcessExpiredTimer - 0x000000000800467c 0x98 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080046f8 0x98 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvTimerTask - 0x0000000008004714 0x24 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008004790 0x24 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvProcessTimerOrBlockTask - 0x0000000008004738 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080047b4 0x9c ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvGetNextExpireTime - 0x00000000080047d4 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008004850 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvSampleTimeNow - 0x000000000800481c 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008004898 0x40 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvInsertTimerInActiveList - 0x000000000800485c 0x84 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x00000000080048d8 0x84 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvProcessReceivedCommands - 0x00000000080048e0 0x1c4 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x000000000800495c 0x1c4 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvSwitchTimerLists - 0x0000000008004aa4 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008004b20 0xc8 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.prvCheckForValidListAndQueue - 0x0000000008004b6c 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + 0x0000000008004be8 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/timers.o .text.pxPortInitialiseStack - 0x0000000008004bec 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004bec pxPortInitialiseStack + 0x0000000008004c68 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004c68 pxPortInitialiseStack .text.prvTaskExitError - 0x0000000008004c54 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - *fill* 0x0000000008004cac 0x4 + 0x0000000008004cd0 0x58 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + *fill* 0x0000000008004d28 0x8 .text.SVC_Handler - 0x0000000008004cb0 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004cb0 SVC_Handler + 0x0000000008004d30 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004d30 SVC_Handler .text.prvPortStartFirstTask - 0x0000000008004cd8 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004d58 0x28 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .text.xPortStartScheduler - 0x0000000008004d00 0x144 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004d00 xPortStartScheduler + 0x0000000008004d80 0x144 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004d80 xPortStartScheduler .text.vPortEnterCritical - 0x0000000008004e44 0x60 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004e44 vPortEnterCritical + 0x0000000008004ec4 0x60 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004ec4 vPortEnterCritical .text.vPortExitCritical - 0x0000000008004ea4 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004ea4 vPortExitCritical - *fill* 0x0000000008004ef8 0x8 + 0x0000000008004f24 0x54 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004f24 vPortExitCritical + *fill* 0x0000000008004f78 0x8 .text.PendSV_Handler - 0x0000000008004f00 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004f00 PendSV_Handler + 0x0000000008004f80 0x68 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004f80 PendSV_Handler .text.xPortSysTickHandler - 0x0000000008004f68 0x44 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004f68 xPortSysTickHandler + 0x0000000008004fe8 0x44 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008004fe8 xPortSysTickHandler .text.vPortSetupTimerInterrupt - 0x0000000008004fac 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008004fac vPortSetupTimerInterrupt + 0x000000000800502c 0x48 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x000000000800502c vPortSetupTimerInterrupt .text.vPortEnableVFP - 0x0000000008004ff4 0x14 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005074 0x14 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .text.vPortValidateInterruptPriority - 0x0000000008005008 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - 0x0000000008005008 vPortValidateInterruptPriority + 0x0000000008005088 0x80 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + 0x0000000008005088 vPortValidateInterruptPriority .text.pvPortMalloc - 0x0000000008005088 0x198 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x0000000008005088 pvPortMalloc + 0x0000000008005108 0x198 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x0000000008005108 pvPortMalloc .text.vPortFree - 0x0000000008005220 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - 0x0000000008005220 vPortFree + 0x00000000080052a0 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x00000000080052a0 vPortFree .text.prvHeapInit - 0x00000000080052e4 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + 0x0000000008005364 0xc4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .text.prvInsertBlockIntoFreeList - 0x00000000080053a8 0xb4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o - .text.memset 0x000000000800545c 0x10 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memset.o) - 0x000000000800545c memset + 0x0000000008005428 0xb4 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o + .text.memset 0x00000000080054dc 0x10 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memset.o) + 0x00000000080054dc memset .text._reclaim_reent - 0x000000000800546c 0xac C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-reent.o) - 0x000000000800546c _reclaim_reent + 0x00000000080054ec 0xac C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-reent.o) + 0x00000000080054ec _reclaim_reent .text.__libc_init_array - 0x0000000008005518 0x48 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-init.o) - 0x0000000008005518 __libc_init_array + 0x0000000008005598 0x48 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-init.o) + 0x0000000008005598 __libc_init_array .text.__retarget_lock_acquire_recursive - 0x0000000008005560 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) - 0x0000000008005560 __retarget_lock_acquire_recursive + 0x00000000080055e0 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) + 0x00000000080055e0 __retarget_lock_acquire_recursive .text.__retarget_lock_release_recursive - 0x0000000008005562 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) - 0x0000000008005562 __retarget_lock_release_recursive - .text.memcpy 0x0000000008005564 0x1c C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memcpy-stub.o) - 0x0000000008005564 memcpy - .text._free_r 0x0000000008005580 0x98 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-freer.o) - 0x0000000008005580 _free_r + 0x00000000080055e2 0x2 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-lock.o) + 0x00000000080055e2 __retarget_lock_release_recursive + .text.memcpy 0x00000000080055e4 0x1c C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-memcpy-stub.o) + 0x00000000080055e4 memcpy + .text._free_r 0x0000000008005600 0x98 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-freer.o) + 0x0000000008005600 _free_r .text.__malloc_lock - 0x0000000008005618 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) - 0x0000000008005618 __malloc_lock + 0x0000000008005698 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) + 0x0000000008005698 __malloc_lock .text.__malloc_unlock - 0x0000000008005624 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) - 0x0000000008005624 __malloc_unlock + 0x00000000080056a4 0xc C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(libc_a-mlock.o) + 0x00000000080056a4 __malloc_unlock *(.glue_7) - .glue_7 0x0000000008005630 0x0 linker stubs + .glue_7 0x00000000080056b0 0x0 linker stubs *(.glue_7t) - .glue_7t 0x0000000008005630 0x0 linker stubs + .glue_7t 0x00000000080056b0 0x0 linker stubs *(.eh_frame) - .eh_frame 0x0000000008005630 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .eh_frame 0x00000000080056b0 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o *(.init) - .init 0x0000000008005630 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o - 0x0000000008005630 _init - .init 0x0000000008005634 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o + .init 0x00000000080056b0 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o + 0x00000000080056b0 _init + .init 0x00000000080056b4 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o *(.fini) - .fini 0x000000000800563c 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o - 0x000000000800563c _fini - .fini 0x0000000008005640 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o - 0x0000000008005648 . = ALIGN (0x4) - 0x0000000008005648 _etext = . + .fini 0x00000000080056bc 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crti.o + 0x00000000080056bc _fini + .fini 0x00000000080056c0 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x00000000080056c8 . = ALIGN (0x4) + 0x00000000080056c8 _etext = . -.vfp11_veneer 0x0000000008005648 0x0 - .vfp11_veneer 0x0000000008005648 0x0 linker stubs +.vfp11_veneer 0x00000000080056c8 0x0 + .vfp11_veneer 0x00000000080056c8 0x0 linker stubs -.v4_bx 0x0000000008005648 0x0 - .v4_bx 0x0000000008005648 0x0 linker stubs +.v4_bx 0x00000000080056c8 0x0 + .v4_bx 0x00000000080056c8 0x0 linker stubs -.iplt 0x0000000008005648 0x0 - .iplt 0x0000000008005648 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.iplt 0x00000000080056c8 0x0 + .iplt 0x00000000080056c8 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.rodata 0x0000000008005648 0x90 - 0x0000000008005648 . = ALIGN (0x4) +.rodata 0x00000000080056c8 0x90 + 0x00000000080056c8 . = ALIGN (0x4) *(.rodata) - .rodata 0x0000000008005648 0x18 ./Core/Src/main.o - .rodata 0x0000000008005660 0x5 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - *fill* 0x0000000008005665 0x3 - .rodata 0x0000000008005668 0xd ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + .rodata 0x00000000080056c8 0x18 ./Core/Src/main.o + .rodata 0x00000000080056e0 0x5 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + *fill* 0x00000000080056e5 0x3 + .rodata 0x00000000080056e8 0xd ./Middlewares/Third_Party/FreeRTOS/Source/timers.o *(.rodata*) - *fill* 0x0000000008005675 0x3 + *fill* 0x00000000080056f5 0x3 .rodata.mainTask_attributes - 0x0000000008005678 0x24 ./Core/Src/main.o - 0x0000000008005678 mainTask_attributes + 0x00000000080056f8 0x24 ./Core/Src/main.o + 0x00000000080056f8 mainTask_attributes .rodata.doorHandler_attributes - 0x000000000800569c 0x24 ./Core/Src/main.o - 0x000000000800569c doorHandler_attributes + 0x000000000800571c 0x24 ./Core/Src/main.o + 0x000000000800571c doorHandler_attributes .rodata.AHBPrescTable - 0x00000000080056c0 0x10 ./Core/Src/system_stm32f4xx.o - 0x00000000080056c0 AHBPrescTable + 0x0000000008005740 0x10 ./Core/Src/system_stm32f4xx.o + 0x0000000008005740 AHBPrescTable .rodata.APBPrescTable - 0x00000000080056d0 0x8 ./Core/Src/system_stm32f4xx.o - 0x00000000080056d0 APBPrescTable - 0x00000000080056d8 . = ALIGN (0x4) + 0x0000000008005750 0x8 ./Core/Src/system_stm32f4xx.o + 0x0000000008005750 APBPrescTable + 0x0000000008005758 . = ALIGN (0x4) -.ARM.extab 0x00000000080056d8 0x0 - 0x00000000080056d8 . = ALIGN (0x4) +.ARM.extab 0x0000000008005758 0x0 + 0x0000000008005758 . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x00000000080056d8 . = ALIGN (0x4) + 0x0000000008005758 . = ALIGN (0x4) -.ARM 0x00000000080056d8 0x8 - 0x00000000080056d8 . = ALIGN (0x4) - 0x00000000080056d8 __exidx_start = . +.ARM 0x0000000008005758 0x8 + 0x0000000008005758 . = ALIGN (0x4) + 0x0000000008005758 __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x00000000080056d8 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) - 0x00000000080056e0 __exidx_end = . - 0x00000000080056e0 . = ALIGN (0x4) + .ARM.exidx 0x0000000008005758 0x8 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + 0x0000000008005760 __exidx_end = . + 0x0000000008005760 . = ALIGN (0x4) -.rel.dyn 0x00000000080056e0 0x0 - .rel.iplt 0x00000000080056e0 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.rel.dyn 0x0000000008005760 0x0 + .rel.iplt 0x0000000008005760 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.preinit_array 0x00000000080056e0 0x0 - 0x00000000080056e0 . = ALIGN (0x4) - 0x00000000080056e0 PROVIDE (__preinit_array_start = .) +.preinit_array 0x0000000008005760 0x0 + 0x0000000008005760 . = ALIGN (0x4) + 0x0000000008005760 PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x00000000080056e0 PROVIDE (__preinit_array_end = .) - 0x00000000080056e0 . = ALIGN (0x4) + 0x0000000008005760 PROVIDE (__preinit_array_end = .) + 0x0000000008005760 . = ALIGN (0x4) -.init_array 0x00000000080056e0 0x4 - 0x00000000080056e0 . = ALIGN (0x4) - 0x00000000080056e0 PROVIDE (__init_array_start = .) +.init_array 0x0000000008005760 0x4 + 0x0000000008005760 . = ALIGN (0x4) + 0x0000000008005760 PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x00000000080056e0 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o - 0x00000000080056e4 PROVIDE (__init_array_end = .) - 0x00000000080056e4 . = ALIGN (0x4) + .init_array 0x0000000008005760 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x0000000008005764 PROVIDE (__init_array_end = .) + 0x0000000008005764 . = ALIGN (0x4) -.fini_array 0x00000000080056e4 0x4 - 0x00000000080056e4 . = ALIGN (0x4) +.fini_array 0x0000000008005764 0x4 + 0x0000000008005764 . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x00000000080056e4 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .fini_array 0x0000000008005764 0x4 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x00000000080056e8 . = ALIGN (0x4) - 0x00000000080056e8 _sidata = LOADADDR (.data) + 0x0000000008005768 . = ALIGN (0x4) + 0x0000000008005768 _sidata = LOADADDR (.data) -.data 0x0000000020000000 0x60 load address 0x00000000080056e8 +.data 0x0000000020000000 0x60 load address 0x0000000008005768 0x0000000020000000 . = ALIGN (0x4) 0x0000000020000000 _sdata = . *(.data) @@ -5120,11 +5120,11 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000020000060 . = ALIGN (0x4) 0x0000000020000060 _edata = . -.igot.plt 0x0000000020000060 0x0 load address 0x0000000008005748 +.igot.plt 0x0000000020000060 0x0 load address 0x00000000080057c8 .igot.plt 0x0000000020000060 0x0 C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.0.202305231506/tools/bin/../lib/gcc/arm-none-eabi/11.3.1/thumb/v7e-m+fp/hard/crtbegin.o 0x0000000020000060 . = ALIGN (0x4) -.bss 0x0000000020000060 0x4bf4 load address 0x0000000008005748 +.bss 0x0000000020000060 0x4bf4 load address 0x00000000080057c8 0x0000000020000060 _sbss = . 0x0000000020000060 __bss_start__ = _sbss *(.bss) @@ -5275,7 +5275,7 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext 0x0000000020004c54 __bss_end__ = _ebss ._user_heap_stack - 0x0000000020004c54 0x3004 load address 0x0000000008005748 + 0x0000000020004c54 0x3004 load address 0x00000000080057c8 0x0000000020004c58 . = ALIGN (0x8) *fill* 0x0000000020004c54 0x4 [!provide] PROVIDE (end = .) @@ -5570,27 +5570,27 @@ LOAD C:/ST/STM32CubeIDE_1.13.1/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.ext .debug_macro 0x0000000000003164 0x233 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o .debug_macro 0x0000000000003397 0x1c0 ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o -.debug_line 0x0000000000000000 0x157ed - .debug_line 0x0000000000000000 0xc35 ./Core/Src/main.o - .debug_line 0x0000000000000c35 0x795 ./Core/Src/stm32f4xx_hal_msp.o - .debug_line 0x00000000000013ca 0x7b4 ./Core/Src/stm32f4xx_hal_timebase_tim.o - .debug_line 0x0000000000001b7e 0x7e3 ./Core/Src/stm32f4xx_it.o - .debug_line 0x0000000000002361 0x7c8 ./Core/Src/system_stm32f4xx.o - .debug_line 0x0000000000002b29 0x7a ./Core/Startup/startup_stm32f411retx.o - .debug_line 0x0000000000002ba3 0xa2e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o - .debug_line 0x00000000000035d1 0xcdd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o - .debug_line 0x00000000000042ae 0xb66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o - .debug_line 0x0000000000004e14 0xda7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o - .debug_line 0x0000000000005bbb 0x34f4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o - .debug_line 0x00000000000090af 0x19c6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o - .debug_line 0x000000000000aa75 0x2ad0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o - .debug_line 0x000000000000d545 0x244f ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o - .debug_line 0x000000000000f994 0x797 ./Middlewares/Third_Party/FreeRTOS/Source/list.o - .debug_line 0x000000000001012b 0x1761 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o - .debug_line 0x000000000001188c 0x1e51 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o - .debug_line 0x00000000000136dd 0xdfb ./Middlewares/Third_Party/FreeRTOS/Source/timers.o - .debug_line 0x00000000000144d8 0x957 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o - .debug_line 0x0000000000014e2f 0x9be ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o +.debug_line 0x0000000000000000 0x15830 + .debug_line 0x0000000000000000 0xc78 ./Core/Src/main.o + .debug_line 0x0000000000000c78 0x795 ./Core/Src/stm32f4xx_hal_msp.o + .debug_line 0x000000000000140d 0x7b4 ./Core/Src/stm32f4xx_hal_timebase_tim.o + .debug_line 0x0000000000001bc1 0x7e3 ./Core/Src/stm32f4xx_it.o + .debug_line 0x00000000000023a4 0x7c8 ./Core/Src/system_stm32f4xx.o + .debug_line 0x0000000000002b6c 0x7a ./Core/Startup/startup_stm32f411retx.o + .debug_line 0x0000000000002be6 0xa2e ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o + .debug_line 0x0000000000003614 0xcdd ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o + .debug_line 0x00000000000042f1 0xb66 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o + .debug_line 0x0000000000004e57 0xda7 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o + .debug_line 0x0000000000005bfe 0x34f4 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o + .debug_line 0x00000000000090f2 0x19c6 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o + .debug_line 0x000000000000aab8 0x2ad0 ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o + .debug_line 0x000000000000d588 0x244f ./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o + .debug_line 0x000000000000f9d7 0x797 ./Middlewares/Third_Party/FreeRTOS/Source/list.o + .debug_line 0x000000000001016e 0x1761 ./Middlewares/Third_Party/FreeRTOS/Source/queue.o + .debug_line 0x00000000000118cf 0x1e51 ./Middlewares/Third_Party/FreeRTOS/Source/tasks.o + .debug_line 0x0000000000013720 0xdfb ./Middlewares/Third_Party/FreeRTOS/Source/timers.o + .debug_line 0x000000000001451b 0x957 ./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o + .debug_line 0x0000000000014e72 0x9be ./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o .debug_str 0x0000000000000000 0x9856e .debug_str 0x0000000000000000 0x8fada ./Core/Src/main.o