499 lines
32 KiB
Plaintext
499 lines
32 KiB
Plaintext
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 1
|
|||
|
|
|||
|
|
|||
|
1 .cpu cortex-m4
|
|||
|
2 .arch armv7e-m
|
|||
|
3 .fpu fpv4-sp-d16
|
|||
|
4 .eabi_attribute 27, 1
|
|||
|
5 .eabi_attribute 28, 1
|
|||
|
6 .eabi_attribute 20, 1
|
|||
|
7 .eabi_attribute 21, 1
|
|||
|
8 .eabi_attribute 23, 3
|
|||
|
9 .eabi_attribute 24, 1
|
|||
|
10 .eabi_attribute 25, 1
|
|||
|
11 .eabi_attribute 26, 1
|
|||
|
12 .eabi_attribute 30, 1
|
|||
|
13 .eabi_attribute 34, 1
|
|||
|
14 .eabi_attribute 18, 4
|
|||
|
15 .file "stm32f3xx_hal_pwr_ex.c"
|
|||
|
16 .text
|
|||
|
17 .Ltext0:
|
|||
|
18 .cfi_sections .debug_frame
|
|||
|
19 .file 1 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c"
|
|||
|
20 .section .text.HAL_PWR_ConfigPVD,"ax",%progbits
|
|||
|
21 .align 1
|
|||
|
22 .global HAL_PWR_ConfigPVD
|
|||
|
23 .syntax unified
|
|||
|
24 .thumb
|
|||
|
25 .thumb_func
|
|||
|
27 HAL_PWR_ConfigPVD:
|
|||
|
28 .LVL0:
|
|||
|
29 .LFB130:
|
|||
|
1:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
2:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ******************************************************************************
|
|||
|
3:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @file stm32f3xx_hal_pwr_ex.c
|
|||
|
4:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @author MCD Application Team
|
|||
|
5:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief Extended PWR HAL module driver.
|
|||
|
6:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * This file provides firmware functions to manage the following
|
|||
|
7:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * functionalities of the Power Controller (PWR) peripheral:
|
|||
|
8:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * + Extended Initialization and de-initialization functions
|
|||
|
9:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * + Extended Peripheral Control functions
|
|||
|
10:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *
|
|||
|
11:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ******************************************************************************
|
|||
|
12:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @attention
|
|||
|
13:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *
|
|||
|
14:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * Copyright (c) 2016 STMicroelectronics.
|
|||
|
15:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * All rights reserved.
|
|||
|
16:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *
|
|||
|
17:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * This software is licensed under terms that can be found in the LICENSE file
|
|||
|
18:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * in the root directory of this software component.
|
|||
|
19:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
|||
|
20:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *
|
|||
|
21:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ******************************************************************************
|
|||
|
22:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
23:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
24:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Includes ------------------------------------------------------------------*/
|
|||
|
25:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #include "stm32f3xx_hal.h"
|
|||
|
26:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
27:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /** @addtogroup STM32F3xx_HAL_Driver
|
|||
|
28:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @{
|
|||
|
29:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 2
|
|||
|
|
|||
|
|
|||
|
30:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
31:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /** @defgroup PWREx PWREx
|
|||
|
32:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief PWREx HAL module driver
|
|||
|
33:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @{
|
|||
|
34:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
35:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
36:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #ifdef HAL_PWR_MODULE_ENABLED
|
|||
|
37:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
38:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Private typedef -----------------------------------------------------------*/
|
|||
|
39:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Private define ------------------------------------------------------------*/
|
|||
|
40:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /** @defgroup PWREx_Private_Constants PWR Extended Private Constants
|
|||
|
41:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @{
|
|||
|
42:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
43:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #define PVD_MODE_IT (0x00010000U)
|
|||
|
44:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #define PVD_MODE_EVT (0x00020000U)
|
|||
|
45:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #define PVD_RISING_EDGE (0x00000001U)
|
|||
|
46:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #define PVD_FALLING_EDGE (0x00000002U)
|
|||
|
47:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
48:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @}
|
|||
|
49:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
50:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
51:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Private macro -------------------------------------------------------------*/
|
|||
|
52:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Private variables ---------------------------------------------------------*/
|
|||
|
53:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Private function prototypes -----------------------------------------------*/
|
|||
|
54:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Exported functions ---------------------------------------------------------*/
|
|||
|
55:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
56:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /** @defgroup PWREx_Exported_Functions PWR Extended Exported Functions
|
|||
|
57:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @{
|
|||
|
58:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
59:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
60:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /** @defgroup PWREx_Exported_Functions_Group1 Peripheral Extended Control Functions
|
|||
|
61:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief Extended Peripheral Control functions
|
|||
|
62:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *
|
|||
|
63:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** @verbatim
|
|||
|
64:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
65:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ===============================================================================
|
|||
|
66:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ##### Peripheral Extended control functions #####
|
|||
|
67:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ===============================================================================
|
|||
|
68:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *** PVD configuration (present on all other devices than STM32F3x8 devices) ***
|
|||
|
69:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** =========================
|
|||
|
70:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** [..]
|
|||
|
71:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) The PVD is used to monitor the VDD power supply by comparing it to a
|
|||
|
72:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** threshold selected by the PVD Level (PLS[2:0] bits in the PWR_CR).
|
|||
|
73:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) A PVDO flag is available to indicate if VDD/VDDA is higher or lower
|
|||
|
74:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** than the PVD threshold. This event is internally connected to the EXTI
|
|||
|
75:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** line16 and can generate an interrupt if enabled. This is done through
|
|||
|
76:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_IT() macro
|
|||
|
77:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) The PVD is stopped in Standby mode.
|
|||
|
78:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** -@- PVD is not available on STM32F3x8 Product Line
|
|||
|
79:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
80:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
81:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *** Voltage regulator ***
|
|||
|
82:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** =========================
|
|||
|
83:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** [..]
|
|||
|
84:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) The voltage regulator is always enabled after Reset. It works in three different
|
|||
|
85:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** modes.
|
|||
|
86:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** In Run mode, the regulator supplies full power to the 1.8V domain (core, memories
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 3
|
|||
|
|
|||
|
|
|||
|
87:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** and digital peripherals).
|
|||
|
88:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** In Stop mode, the regulator supplies low power to the 1.8V domain, preserving
|
|||
|
89:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** contents of registers and SRAM.
|
|||
|
90:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** In Stop mode, the regulator is powered off. The contents of the registers and SRAM
|
|||
|
91:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** are lost except for the Standby circuitry and the Backup Domain.
|
|||
|
92:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** Note: in the STM32F3x8xx devices, the voltage regulator is bypassed and the
|
|||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** microcontroller must be powered from a nominal VDD = 1.8V +/-8U% voltage.
|
|||
|
94:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
95:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
96:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) A PVDO flag is available to indicate if VDD/VDDA is higher or lower
|
|||
|
97:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** than the PVD threshold. This event is internally connected to the EXTI
|
|||
|
98:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** line16 and can generate an interrupt if enabled. This is done through
|
|||
|
99:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_IT() macro
|
|||
|
100:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) The PVD is stopped in Standby mode.
|
|||
|
101:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
102:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
103:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** *** SDADC power configuration ***
|
|||
|
104:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** ================================
|
|||
|
105:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** [..]
|
|||
|
106:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** (+) On STM32F373xC/STM32F378xx devices, there are up to
|
|||
|
107:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** 3 SDADC instances that can be enabled/disabled.
|
|||
|
108:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
109:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** @endverbatim
|
|||
|
110:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @{
|
|||
|
111:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
112:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
113:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** #if defined(STM32F302xE) || defined(STM32F303xE) || \
|
|||
|
114:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** defined(STM32F302xC) || defined(STM32F303xC) || \
|
|||
|
115:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** defined(STM32F303x8) || defined(STM32F334x8) || \
|
|||
|
116:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** defined(STM32F301x8) || defined(STM32F302x8) || \
|
|||
|
117:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** defined(STM32F373xC)
|
|||
|
118:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
119:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
120:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief Configures the voltage threshold detected by the Power Voltage Detector(PVD).
|
|||
|
121:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @param sConfigPVD pointer to an PWR_PVDTypeDef structure that contains the configuration
|
|||
|
122:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * information for the PVD.
|
|||
|
123:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @note Refer to the electrical characteristics of your device datasheet for
|
|||
|
124:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * more details about the voltage threshold corresponding to each
|
|||
|
125:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * detection level.
|
|||
|
126:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @retval None
|
|||
|
127:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
128:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** void HAL_PWR_ConfigPVD(PWR_PVDTypeDef *sConfigPVD)
|
|||
|
129:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
30 .loc 1 129 1 view -0
|
|||
|
31 .cfi_startproc
|
|||
|
32 @ args = 0, pretend = 0, frame = 0
|
|||
|
33 @ frame_needed = 0, uses_anonymous_args = 0
|
|||
|
34 @ link register save eliminated.
|
|||
|
130:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Check the parameters */
|
|||
|
131:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** assert_param(IS_PWR_PVD_LEVEL(sConfigPVD->PVDLevel));
|
|||
|
35 .loc 1 131 3 view .LVU1
|
|||
|
132:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** assert_param(IS_PWR_PVD_MODE(sConfigPVD->Mode));
|
|||
|
36 .loc 1 132 3 view .LVU2
|
|||
|
133:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
134:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Set PLS[7:5] bits according to PVDLevel value */
|
|||
|
135:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** MODIFY_REG(PWR->CR, PWR_CR_PLS, sConfigPVD->PVDLevel);
|
|||
|
37 .loc 1 135 3 view .LVU3
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 4
|
|||
|
|
|||
|
|
|||
|
38 0000 1E4A ldr r2, .L6
|
|||
|
39 0002 1368 ldr r3, [r2]
|
|||
|
40 0004 23F0E003 bic r3, r3, #224
|
|||
|
41 0008 0168 ldr r1, [r0]
|
|||
|
42 000a 0B43 orrs r3, r3, r1
|
|||
|
43 000c 1360 str r3, [r2]
|
|||
|
136:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
137:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Clear any previous config. Keep it clear if no event or IT mode is selected */
|
|||
|
138:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_DISABLE_EVENT();
|
|||
|
44 .loc 1 138 3 view .LVU4
|
|||
|
45 000e 1C4B ldr r3, .L6+4
|
|||
|
46 0010 5A68 ldr r2, [r3, #4]
|
|||
|
47 0012 22F48032 bic r2, r2, #65536
|
|||
|
48 0016 5A60 str r2, [r3, #4]
|
|||
|
139:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_DISABLE_IT();
|
|||
|
49 .loc 1 139 3 view .LVU5
|
|||
|
50 0018 1A68 ldr r2, [r3]
|
|||
|
51 001a 22F48032 bic r2, r2, #65536
|
|||
|
52 001e 1A60 str r2, [r3]
|
|||
|
140:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE();__HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE();
|
|||
|
53 .loc 1 140 3 view .LVU6
|
|||
|
54 0020 9A68 ldr r2, [r3, #8]
|
|||
|
55 0022 22F48032 bic r2, r2, #65536
|
|||
|
56 0026 9A60 str r2, [r3, #8]
|
|||
|
57 .loc 1 140 44 view .LVU7
|
|||
|
58 0028 DA68 ldr r2, [r3, #12]
|
|||
|
59 002a 22F48032 bic r2, r2, #65536
|
|||
|
60 002e DA60 str r2, [r3, #12]
|
|||
|
141:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
142:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Configure interrupt mode */
|
|||
|
143:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_MODE_IT) == PVD_MODE_IT)
|
|||
|
61 .loc 1 143 3 view .LVU8
|
|||
|
62 .loc 1 143 17 is_stmt 0 view .LVU9
|
|||
|
63 0030 4368 ldr r3, [r0, #4]
|
|||
|
64 .loc 1 143 5 view .LVU10
|
|||
|
65 0032 13F4803F tst r3, #65536
|
|||
|
66 0036 04D0 beq .L2
|
|||
|
144:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
145:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_IT();
|
|||
|
67 .loc 1 145 5 is_stmt 1 view .LVU11
|
|||
|
68 0038 114A ldr r2, .L6+4
|
|||
|
69 003a 1368 ldr r3, [r2]
|
|||
|
70 003c 43F48033 orr r3, r3, #65536
|
|||
|
71 0040 1360 str r3, [r2]
|
|||
|
72 .L2:
|
|||
|
146:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
147:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
148:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Configure event mode */
|
|||
|
149:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_MODE_EVT) == PVD_MODE_EVT)
|
|||
|
73 .loc 1 149 3 view .LVU12
|
|||
|
74 .loc 1 149 17 is_stmt 0 view .LVU13
|
|||
|
75 0042 4368 ldr r3, [r0, #4]
|
|||
|
76 .loc 1 149 5 view .LVU14
|
|||
|
77 0044 13F4003F tst r3, #131072
|
|||
|
78 0048 04D0 beq .L3
|
|||
|
150:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
151:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_EVENT();
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 5
|
|||
|
|
|||
|
|
|||
|
79 .loc 1 151 5 is_stmt 1 view .LVU15
|
|||
|
80 004a 0D4A ldr r2, .L6+4
|
|||
|
81 004c 5368 ldr r3, [r2, #4]
|
|||
|
82 004e 43F48033 orr r3, r3, #65536
|
|||
|
83 0052 5360 str r3, [r2, #4]
|
|||
|
84 .L3:
|
|||
|
152:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
153:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
154:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Configure the edge */
|
|||
|
155:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE)
|
|||
|
85 .loc 1 155 3 view .LVU16
|
|||
|
86 .loc 1 155 17 is_stmt 0 view .LVU17
|
|||
|
87 0054 4368 ldr r3, [r0, #4]
|
|||
|
88 .loc 1 155 5 view .LVU18
|
|||
|
89 0056 13F0010F tst r3, #1
|
|||
|
90 005a 04D0 beq .L4
|
|||
|
156:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
157:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE();
|
|||
|
91 .loc 1 157 5 is_stmt 1 view .LVU19
|
|||
|
92 005c 084A ldr r2, .L6+4
|
|||
|
93 005e 9368 ldr r3, [r2, #8]
|
|||
|
94 0060 43F48033 orr r3, r3, #65536
|
|||
|
95 0064 9360 str r3, [r2, #8]
|
|||
|
96 .L4:
|
|||
|
158:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
159:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
160:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_FALLING_EDGE) == PVD_FALLING_EDGE)
|
|||
|
97 .loc 1 160 3 view .LVU20
|
|||
|
98 .loc 1 160 17 is_stmt 0 view .LVU21
|
|||
|
99 0066 4368 ldr r3, [r0, #4]
|
|||
|
100 .loc 1 160 5 view .LVU22
|
|||
|
101 0068 13F0020F tst r3, #2
|
|||
|
102 006c 04D0 beq .L1
|
|||
|
161:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
162:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE();
|
|||
|
103 .loc 1 162 5 is_stmt 1 view .LVU23
|
|||
|
104 006e 044A ldr r2, .L6+4
|
|||
|
105 0070 D368 ldr r3, [r2, #12]
|
|||
|
106 0072 43F48033 orr r3, r3, #65536
|
|||
|
107 0076 D360 str r3, [r2, #12]
|
|||
|
108 .L1:
|
|||
|
163:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
164:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
109 .loc 1 164 1 is_stmt 0 view .LVU24
|
|||
|
110 0078 7047 bx lr
|
|||
|
111 .L7:
|
|||
|
112 007a 00BF .align 2
|
|||
|
113 .L6:
|
|||
|
114 007c 00700040 .word 1073770496
|
|||
|
115 0080 00040140 .word 1073808384
|
|||
|
116 .cfi_endproc
|
|||
|
117 .LFE130:
|
|||
|
119 .section .text.HAL_PWR_EnablePVD,"ax",%progbits
|
|||
|
120 .align 1
|
|||
|
121 .global HAL_PWR_EnablePVD
|
|||
|
122 .syntax unified
|
|||
|
123 .thumb
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 6
|
|||
|
|
|||
|
|
|||
|
124 .thumb_func
|
|||
|
126 HAL_PWR_EnablePVD:
|
|||
|
127 .LFB131:
|
|||
|
165:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
166:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
167:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief Enables the Power Voltage Detector(PVD).
|
|||
|
168:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @retval None
|
|||
|
169:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
170:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** void HAL_PWR_EnablePVD(void)
|
|||
|
171:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
128 .loc 1 171 1 is_stmt 1 view -0
|
|||
|
129 .cfi_startproc
|
|||
|
130 @ args = 0, pretend = 0, frame = 0
|
|||
|
131 @ frame_needed = 0, uses_anonymous_args = 0
|
|||
|
132 @ link register save eliminated.
|
|||
|
172:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** SET_BIT(PWR->CR, PWR_CR_PVDE);
|
|||
|
133 .loc 1 172 3 view .LVU26
|
|||
|
134 0000 024A ldr r2, .L9
|
|||
|
135 0002 1368 ldr r3, [r2]
|
|||
|
136 0004 43F01003 orr r3, r3, #16
|
|||
|
137 0008 1360 str r3, [r2]
|
|||
|
173:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
138 .loc 1 173 1 is_stmt 0 view .LVU27
|
|||
|
139 000a 7047 bx lr
|
|||
|
140 .L10:
|
|||
|
141 .align 2
|
|||
|
142 .L9:
|
|||
|
143 000c 00700040 .word 1073770496
|
|||
|
144 .cfi_endproc
|
|||
|
145 .LFE131:
|
|||
|
147 .section .text.HAL_PWR_DisablePVD,"ax",%progbits
|
|||
|
148 .align 1
|
|||
|
149 .global HAL_PWR_DisablePVD
|
|||
|
150 .syntax unified
|
|||
|
151 .thumb
|
|||
|
152 .thumb_func
|
|||
|
154 HAL_PWR_DisablePVD:
|
|||
|
155 .LFB132:
|
|||
|
174:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
175:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
176:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief Disables the Power Voltage Detector(PVD).
|
|||
|
177:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @retval None
|
|||
|
178:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
179:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** void HAL_PWR_DisablePVD(void)
|
|||
|
180:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
156 .loc 1 180 1 is_stmt 1 view -0
|
|||
|
157 .cfi_startproc
|
|||
|
158 @ args = 0, pretend = 0, frame = 0
|
|||
|
159 @ frame_needed = 0, uses_anonymous_args = 0
|
|||
|
160 @ link register save eliminated.
|
|||
|
181:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** CLEAR_BIT(PWR->CR, PWR_CR_PVDE);
|
|||
|
161 .loc 1 181 3 view .LVU29
|
|||
|
162 0000 024A ldr r2, .L12
|
|||
|
163 0002 1368 ldr r3, [r2]
|
|||
|
164 0004 23F01003 bic r3, r3, #16
|
|||
|
165 0008 1360 str r3, [r2]
|
|||
|
182:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 7
|
|||
|
|
|||
|
|
|||
|
166 .loc 1 182 1 is_stmt 0 view .LVU30
|
|||
|
167 000a 7047 bx lr
|
|||
|
168 .L13:
|
|||
|
169 .align 2
|
|||
|
170 .L12:
|
|||
|
171 000c 00700040 .word 1073770496
|
|||
|
172 .cfi_endproc
|
|||
|
173 .LFE132:
|
|||
|
175 .section .text.HAL_PWR_PVDCallback,"ax",%progbits
|
|||
|
176 .align 1
|
|||
|
177 .weak HAL_PWR_PVDCallback
|
|||
|
178 .syntax unified
|
|||
|
179 .thumb
|
|||
|
180 .thumb_func
|
|||
|
182 HAL_PWR_PVDCallback:
|
|||
|
183 .LFB134:
|
|||
|
183:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
184:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
185:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief This function handles the PWR PVD interrupt request.
|
|||
|
186:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @note This API should be called under the PVD_IRQHandler().
|
|||
|
187:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @retval None
|
|||
|
188:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
189:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** void HAL_PWR_PVD_IRQHandler(void)
|
|||
|
190:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
191:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Check PWR exti flag */
|
|||
|
192:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** if(__HAL_PWR_PVD_EXTI_GET_FLAG() != RESET)
|
|||
|
193:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
194:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* PWR PVD interrupt user callback */
|
|||
|
195:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** HAL_PWR_PVDCallback();
|
|||
|
196:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
197:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Clear PWR Exti pending bit */
|
|||
|
198:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_CLEAR_FLAG();
|
|||
|
199:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
200:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
201:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
202:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /**
|
|||
|
203:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @brief PWR PVD interrupt callback
|
|||
|
204:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** * @retval None
|
|||
|
205:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
206:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** __weak void HAL_PWR_PVDCallback(void)
|
|||
|
207:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
184 .loc 1 207 1 is_stmt 1 view -0
|
|||
|
185 .cfi_startproc
|
|||
|
186 @ args = 0, pretend = 0, frame = 0
|
|||
|
187 @ frame_needed = 0, uses_anonymous_args = 0
|
|||
|
188 @ link register save eliminated.
|
|||
|
208:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* NOTE : This function Should not be modified, when the callback is needed,
|
|||
|
209:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** the HAL_PWR_PVDCallback could be implemented in the user file
|
|||
|
210:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** */
|
|||
|
211:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
189 .loc 1 211 1 view .LVU32
|
|||
|
190 0000 7047 bx lr
|
|||
|
191 .cfi_endproc
|
|||
|
192 .LFE134:
|
|||
|
194 .section .text.HAL_PWR_PVD_IRQHandler,"ax",%progbits
|
|||
|
195 .align 1
|
|||
|
196 .global HAL_PWR_PVD_IRQHandler
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 8
|
|||
|
|
|||
|
|
|||
|
197 .syntax unified
|
|||
|
198 .thumb
|
|||
|
199 .thumb_func
|
|||
|
201 HAL_PWR_PVD_IRQHandler:
|
|||
|
202 .LFB133:
|
|||
|
190:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** /* Check PWR exti flag */
|
|||
|
203 .loc 1 190 1 view -0
|
|||
|
204 .cfi_startproc
|
|||
|
205 @ args = 0, pretend = 0, frame = 0
|
|||
|
206 @ frame_needed = 0, uses_anonymous_args = 0
|
|||
|
207 0000 08B5 push {r3, lr}
|
|||
|
208 .cfi_def_cfa_offset 8
|
|||
|
209 .cfi_offset 3, -8
|
|||
|
210 .cfi_offset 14, -4
|
|||
|
192:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
211 .loc 1 192 3 view .LVU34
|
|||
|
192:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
212 .loc 1 192 6 is_stmt 0 view .LVU35
|
|||
|
213 0002 064B ldr r3, .L19
|
|||
|
214 0004 5B69 ldr r3, [r3, #20]
|
|||
|
192:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** {
|
|||
|
215 .loc 1 192 5 view .LVU36
|
|||
|
216 0006 13F4803F tst r3, #65536
|
|||
|
217 000a 00D1 bne .L18
|
|||
|
218 .L15:
|
|||
|
200:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
219 .loc 1 200 1 view .LVU37
|
|||
|
220 000c 08BD pop {r3, pc}
|
|||
|
221 .L18:
|
|||
|
195:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
222 .loc 1 195 5 is_stmt 1 view .LVU38
|
|||
|
223 000e FFF7FEFF bl HAL_PWR_PVDCallback
|
|||
|
224 .LVL1:
|
|||
|
198:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c **** }
|
|||
|
225 .loc 1 198 5 view .LVU39
|
|||
|
226 0012 024B ldr r3, .L19
|
|||
|
227 0014 4FF48032 mov r2, #65536
|
|||
|
228 0018 5A61 str r2, [r3, #20]
|
|||
|
200:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c ****
|
|||
|
229 .loc 1 200 1 is_stmt 0 view .LVU40
|
|||
|
230 001a F7E7 b .L15
|
|||
|
231 .L20:
|
|||
|
232 .align 2
|
|||
|
233 .L19:
|
|||
|
234 001c 00040140 .word 1073808384
|
|||
|
235 .cfi_endproc
|
|||
|
236 .LFE133:
|
|||
|
238 .text
|
|||
|
239 .Letext0:
|
|||
|
240 .file 2 "c:\\users\\nived\\appdata\\roaming\\code\\user\\globalstorage\\bmd.stm32-for-vscode\\@xpa
|
|||
|
241 .file 3 "c:\\users\\nived\\appdata\\roaming\\code\\user\\globalstorage\\bmd.stm32-for-vscode\\@xpa
|
|||
|
242 .file 4 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h"
|
|||
|
243 .file 5 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h"
|
|||
|
244 .file 6 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h"
|
|||
|
ARM GAS C:\Users\nived\AppData\Local\Temp\ccea5p49.s page 9
|
|||
|
|
|||
|
|
|||
|
DEFINED SYMBOLS
|
|||
|
*ABS*:00000000 stm32f3xx_hal_pwr_ex.c
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:21 .text.HAL_PWR_ConfigPVD:00000000 $t
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:27 .text.HAL_PWR_ConfigPVD:00000000 HAL_PWR_ConfigPVD
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:114 .text.HAL_PWR_ConfigPVD:0000007c $d
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:120 .text.HAL_PWR_EnablePVD:00000000 $t
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:126 .text.HAL_PWR_EnablePVD:00000000 HAL_PWR_EnablePVD
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:143 .text.HAL_PWR_EnablePVD:0000000c $d
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:148 .text.HAL_PWR_DisablePVD:00000000 $t
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:154 .text.HAL_PWR_DisablePVD:00000000 HAL_PWR_DisablePVD
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:171 .text.HAL_PWR_DisablePVD:0000000c $d
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:176 .text.HAL_PWR_PVDCallback:00000000 $t
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:182 .text.HAL_PWR_PVDCallback:00000000 HAL_PWR_PVDCallback
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:195 .text.HAL_PWR_PVD_IRQHandler:00000000 $t
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:201 .text.HAL_PWR_PVD_IRQHandler:00000000 HAL_PWR_PVD_IRQHandler
|
|||
|
C:\Users\nived\AppData\Local\Temp\ccea5p49.s:234 .text.HAL_PWR_PVD_IRQHandler:0000001c $d
|
|||
|
|
|||
|
NO UNDEFINED SYMBOLS
|