first clean build
This commit is contained in:
parent
b7e4d83e37
commit
53f11a7b65
16
.mxproject
16
.mxproject
File diff suppressed because one or more lines are too long
20
.vscode/c_cpp_properties.json
vendored
Normal file
20
.vscode/c_cpp_properties.json
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "STM32",
|
||||||
|
"includePath": [
|
||||||
|
"Core/Inc",
|
||||||
|
"Drivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||||
|
"Drivers/CMSIS/Include",
|
||||||
|
"Drivers/STM32F3xx_HAL_Driver/Inc",
|
||||||
|
"Drivers/STM32F3xx_HAL_Driver/Inc/Legacy"
|
||||||
|
],
|
||||||
|
"defines": [
|
||||||
|
"STM32F302xC",
|
||||||
|
"USE_HAL_DRIVER"
|
||||||
|
],
|
||||||
|
"compilerPath": "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/arm-none-eabi-gcc/13.2.1-1.1.1/.content/bin/arm-none-eabi-gcc"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"bmd.stm32-for-vscode"
|
||||||
|
]
|
||||||
|
}
|
32
.vscode/launch.json
vendored
Normal file
32
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"showDevDebugOutput": "parsed",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"executable": "./build/mvbms-test-24.elf",
|
||||||
|
"name": "Debug STM32",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "cortex-debug",
|
||||||
|
"servertype": "openocd",
|
||||||
|
"preLaunchTask": "Build STM",
|
||||||
|
"device": "stm32f302xc.s",
|
||||||
|
"configFiles": [
|
||||||
|
"openocd.cfg"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"showDevDebugOutput": "parsed",
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"executable": "./build/mvbms-test-24.elf",
|
||||||
|
"name": "Attach STM32",
|
||||||
|
"request": "attach",
|
||||||
|
"type": "cortex-debug",
|
||||||
|
"servertype": "openocd",
|
||||||
|
"preLaunchTask": "Build STM",
|
||||||
|
"device": "stm32f302xc.s",
|
||||||
|
"configFiles": [
|
||||||
|
"openocd.cfg"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"cortex-debug.armToolchainPath": "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/arm-none-eabi-gcc/13.2.1-1.1.1/.content/bin",
|
||||||
|
"cortex-debug.openocdPath": "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/openocd/0.12.0-3.1/.content/bin/openocd",
|
||||||
|
"makefile.makefilePath": "/home/h/FASTTUBE/mvbms-test-24/STM32Make.make"
|
||||||
|
}
|
50
.vscode/tasks.json
vendored
Normal file
50
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build STM",
|
||||||
|
"type": "process",
|
||||||
|
"command": "${command:stm32-for-vscode.build}",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceRoot}"
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$gcc"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build Clean STM",
|
||||||
|
"type": "process",
|
||||||
|
"command": "${command:stm32-for-vscode.cleanBuild}",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceRoot}"
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$gcc"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Flash STM",
|
||||||
|
"type": "process",
|
||||||
|
"command": "${command:stm32-for-vscode.flash}",
|
||||||
|
"options": {
|
||||||
|
"cwd": "${workspaceRoot}"
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
},
|
||||||
|
"problemMatcher": [
|
||||||
|
"$gcc"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
74
Makefile
74
Makefile
@ -1,5 +1,5 @@
|
|||||||
##########################################################################################################################
|
##########################################################################################################################
|
||||||
# File automatically-generated by tool: [projectgenerator] version: [4.3.0-B58] date: [Thu May 09 23:24:58 EEST 2024]
|
# File automatically-generated by tool: [projectgenerator] version: [4.3.0-B58] date: [Thu May 09 23:34:20 EEST 2024]
|
||||||
##########################################################################################################################
|
##########################################################################################################################
|
||||||
|
|
||||||
# ------------------------------------------------
|
# ------------------------------------------------
|
||||||
@ -35,36 +35,36 @@ BUILD_DIR = build
|
|||||||
# source
|
# source
|
||||||
######################################
|
######################################
|
||||||
# C sources
|
# C sources
|
||||||
C_SOURCES = \
|
C_SOURCES = \
|
||||||
Core/Src/main.c \
|
Core/Src/main.c \
|
||||||
Core/Src/stm32f3xx_it.c \
|
Core/Src/stm32f3xx_it.c \
|
||||||
Core/Src/stm32f3xx_hal_msp.c \
|
Core/Src/stm32f3xx_hal_msp.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_can.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_can.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c \
|
||||||
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c \
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c \
|
||||||
Core/Src/system_stm32f3xx.c \
|
Core/Src/system_stm32f3xx.c \
|
||||||
Core/Src/sysmem.c \
|
Core/Src/sysmem.c \
|
||||||
Core/Src/syscalls.c
|
Core/Src/syscalls.c
|
||||||
|
|
||||||
# ASM sources
|
# ASM sources
|
||||||
ASM_SOURCES = \
|
ASM_SOURCES = \
|
||||||
startup_stm32f302xc.s
|
startup_stm32f302xc.s
|
||||||
|
|
||||||
# ASM sources
|
# ASM sources
|
||||||
@ -111,8 +111,8 @@ MCU = $(CPU) -mthumb $(FPU) $(FLOAT-ABI)
|
|||||||
AS_DEFS =
|
AS_DEFS =
|
||||||
|
|
||||||
# C defines
|
# C defines
|
||||||
C_DEFS = \
|
C_DEFS = \
|
||||||
-DUSE_HAL_DRIVER \
|
-DUSE_HAL_DRIVER \
|
||||||
-DSTM32F302xC
|
-DSTM32F302xC
|
||||||
|
|
||||||
|
|
||||||
@ -120,11 +120,11 @@ C_DEFS = \
|
|||||||
AS_INCLUDES =
|
AS_INCLUDES =
|
||||||
|
|
||||||
# C includes
|
# C includes
|
||||||
C_INCLUDES = \
|
C_INCLUDES = \
|
||||||
-ICore/Inc \
|
-ICore/Inc \
|
||||||
-IDrivers/STM32F3xx_HAL_Driver/Inc \
|
-IDrivers/STM32F3xx_HAL_Driver/Inc \
|
||||||
-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy \
|
-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy \
|
||||||
-IDrivers/CMSIS/Device/ST/STM32F3xx/Include \
|
-IDrivers/CMSIS/Device/ST/STM32F3xx/Include \
|
||||||
-IDrivers/CMSIS/Include
|
-IDrivers/CMSIS/Include
|
||||||
|
|
||||||
|
|
||||||
@ -201,4 +201,4 @@ clean:
|
|||||||
#######################################
|
#######################################
|
||||||
-include $(wildcard $(BUILD_DIR)/*.d)
|
-include $(wildcard $(BUILD_DIR)/*.d)
|
||||||
|
|
||||||
# *** EOF ***
|
# *** EOF ***
|
||||||
|
109
STM32-for-VSCode.config.yaml
Normal file
109
STM32-for-VSCode.config.yaml
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
# Configuration file for the STM32 for VSCode extension
|
||||||
|
# Arrays can be inputted in two ways. One is: [entry_1, entry_2, ..., entry_final]
|
||||||
|
# or by adding an indented list below the variable name e.g.:
|
||||||
|
# VARIABLE:
|
||||||
|
# - entry_1
|
||||||
|
# - entry_2
|
||||||
|
|
||||||
|
# The project name
|
||||||
|
target: mvbms-test-24
|
||||||
|
# Can be C or C++
|
||||||
|
language: C
|
||||||
|
|
||||||
|
optimization: Og
|
||||||
|
|
||||||
|
# MCU settings
|
||||||
|
targetMCU: stm32f3x
|
||||||
|
cpu: cortex-m4 # type of cpu e.g. cortex-m4
|
||||||
|
fpu: fpv4-sp-d16 # Defines how floating points are defined. Can be left empty.
|
||||||
|
floatAbi: -mfloat-abi=hard
|
||||||
|
ldscript: STM32F302CBTx_FLASH.ld # linker script
|
||||||
|
|
||||||
|
# Compiler definitions. The -D prefix for the compiler will be automatically added.
|
||||||
|
cDefinitions: []
|
||||||
|
cxxDefinitions: []
|
||||||
|
asDefinitions: []
|
||||||
|
|
||||||
|
# Compiler definition files. you can add a single files or an array of files for different definitions.
|
||||||
|
# The file is expected to have a definition each new line.
|
||||||
|
# This allows to include for example a .definition file which can be ignored in git and can contain
|
||||||
|
# This can be convenient for passing along secrets at compile time, or generating a file for per device setup.
|
||||||
|
cDefinitionsFile:
|
||||||
|
cxxDefinitionsFile:
|
||||||
|
asDefinitionsFile:
|
||||||
|
|
||||||
|
# Compiler flags
|
||||||
|
cFlags:
|
||||||
|
- -Wall
|
||||||
|
- -fdata-sections
|
||||||
|
- -ffunction-sections
|
||||||
|
|
||||||
|
cxxFlags: []
|
||||||
|
assemblyFlags:
|
||||||
|
- -Wall
|
||||||
|
- -fdata-sections
|
||||||
|
- -ffunction-sections
|
||||||
|
|
||||||
|
linkerFlags:
|
||||||
|
- -Wl,--print-memory-usage
|
||||||
|
|
||||||
|
|
||||||
|
# libraries to be included. The -l prefix to the library will be automatically added.
|
||||||
|
libraries:
|
||||||
|
- c
|
||||||
|
- m
|
||||||
|
|
||||||
|
# Library directories. Folders can be added here that contain custom libraries.
|
||||||
|
libraryDirectories: []
|
||||||
|
|
||||||
|
# Files or folders that will be excluded from compilation.
|
||||||
|
# Glob patterns (https://www.wikiwand.com/en/Glob_(programming)) can be used.
|
||||||
|
# Do mind that double stars are reserved in yaml
|
||||||
|
# these should be escaped with a: \ or the name should be in double quotes e.g. "**.test.**"
|
||||||
|
excludes:
|
||||||
|
- "**/Examples/**"
|
||||||
|
- "**/examples/**"
|
||||||
|
- "**/Example/**"
|
||||||
|
- "**/example/**"
|
||||||
|
- "**_template.*"
|
||||||
|
|
||||||
|
|
||||||
|
# Include directories (directories containing .h or .hpp files)
|
||||||
|
# If a CubeMX makefile is present it will automatically include the include directories from that makefile.
|
||||||
|
includeDirectories:
|
||||||
|
- Inc/**
|
||||||
|
- Core/Inc/**
|
||||||
|
- Core/Lib/**
|
||||||
|
- Src/**
|
||||||
|
- Core/Src/**
|
||||||
|
- Core/Lib/**
|
||||||
|
|
||||||
|
|
||||||
|
# Files that should be included in the compilation.
|
||||||
|
# If a CubeMX makefile is present it will automatically include the c and cpp/cxx files from that makefile.
|
||||||
|
# Glob patterns (https://www.wikiwand.com/en/Glob_(programming)) can be used.
|
||||||
|
# Do mind that double stars are reserved in yaml
|
||||||
|
# these should be escaped with a: \ or the name should be in double quotes e.g. "HARDWARE_DRIVER*.c"
|
||||||
|
sourceFiles:
|
||||||
|
- Src/**
|
||||||
|
- Core/Src/**
|
||||||
|
- Core/Lib/**
|
||||||
|
|
||||||
|
|
||||||
|
# When no makefile is present it will show a warning pop-up.
|
||||||
|
# However when compilation without the CubeMX Makefile is desired, this can be turned of.
|
||||||
|
suppressMakefileWarning: false
|
||||||
|
|
||||||
|
# Custom makefile rules
|
||||||
|
# Here custom makefile rules can be added to the STM32Make.make file
|
||||||
|
# an example of how this can be used is commented out below.
|
||||||
|
customMakefileRules:
|
||||||
|
# - command: sayhello
|
||||||
|
# rule: echo "hello"
|
||||||
|
# dependsOn: $(BUILD_DIR)/$(TARGET).elf # can be left out
|
||||||
|
|
||||||
|
# Additional flags which will be used when invoking the make command
|
||||||
|
makeFlags:
|
||||||
|
# - -O # use this option when the output of make is mixed up only works for make version 4.0 and upwards
|
||||||
|
# - --silent # use this option to silence the output of the build
|
||||||
|
|
261
STM32Make.make
Normal file
261
STM32Make.make
Normal file
@ -0,0 +1,261 @@
|
|||||||
|
##########################################################################################################################
|
||||||
|
# File automatically-generated by STM32forVSCode
|
||||||
|
##########################################################################################################################
|
||||||
|
|
||||||
|
# ------------------------------------------------
|
||||||
|
# Generic Makefile (based on gcc)
|
||||||
|
#
|
||||||
|
# ChangeLog :
|
||||||
|
# 2017-02-10 - Several enhancements + project update mode
|
||||||
|
# 2015-07-22 - first version
|
||||||
|
# ------------------------------------------------
|
||||||
|
|
||||||
|
######################################
|
||||||
|
# target
|
||||||
|
######################################
|
||||||
|
TARGET = mvbms-test-24
|
||||||
|
|
||||||
|
|
||||||
|
######################################
|
||||||
|
# building variables
|
||||||
|
######################################
|
||||||
|
# debug build?
|
||||||
|
DEBUG = 1
|
||||||
|
# optimization
|
||||||
|
OPT = -Og
|
||||||
|
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# paths
|
||||||
|
#######################################
|
||||||
|
# Build path
|
||||||
|
BUILD_DIR = build
|
||||||
|
|
||||||
|
######################################
|
||||||
|
# source
|
||||||
|
######################################
|
||||||
|
# C sources
|
||||||
|
C_SOURCES = \
|
||||||
|
Core/Src/main.c \
|
||||||
|
Core/Src/stm32f3xx_hal_msp.c \
|
||||||
|
Core/Src/stm32f3xx_it.c \
|
||||||
|
Core/Src/syscalls.c \
|
||||||
|
Core/Src/sysmem.c \
|
||||||
|
Core/Src/system_stm32f3xx.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_can.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c
|
||||||
|
|
||||||
|
|
||||||
|
CPP_SOURCES = \
|
||||||
|
|
||||||
|
|
||||||
|
# ASM sources
|
||||||
|
ASM_SOURCES = \
|
||||||
|
startup_stm32f302xc.s
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# binaries
|
||||||
|
#######################################
|
||||||
|
PREFIX = arm-none-eabi-
|
||||||
|
POSTFIX = "
|
||||||
|
# The gcc compiler bin path can be either defined in make command via GCC_PATH variable (> make GCC_PATH=xxx)
|
||||||
|
# either it can be added to the PATH environment variable.
|
||||||
|
GCC_PATH="/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/arm-none-eabi-gcc/13.2.1-1.1.1/.content/bin
|
||||||
|
ifdef GCC_PATH
|
||||||
|
CXX = $(GCC_PATH)/$(PREFIX)g++$(POSTFIX)
|
||||||
|
CC = $(GCC_PATH)/$(PREFIX)gcc$(POSTFIX)
|
||||||
|
AS = $(GCC_PATH)/$(PREFIX)gcc$(POSTFIX) -x assembler-with-cpp
|
||||||
|
CP = $(GCC_PATH)/$(PREFIX)objcopy$(POSTFIX)
|
||||||
|
SZ = $(GCC_PATH)/$(PREFIX)size$(POSTFIX)
|
||||||
|
else
|
||||||
|
CXX = $(PREFIX)g++
|
||||||
|
CC = $(PREFIX)gcc
|
||||||
|
AS = $(PREFIX)gcc -x assembler-with-cpp
|
||||||
|
CP = $(PREFIX)objcopy
|
||||||
|
SZ = $(PREFIX)size
|
||||||
|
endif
|
||||||
|
HEX = $(CP) -O ihex
|
||||||
|
BIN = $(CP) -O binary -S
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# CFLAGS
|
||||||
|
#######################################
|
||||||
|
# cpu
|
||||||
|
CPU = -mcpu=cortex-m4
|
||||||
|
|
||||||
|
# fpu
|
||||||
|
FPU = -mfpu=fpv4-sp-d16
|
||||||
|
|
||||||
|
# float-abi
|
||||||
|
FLOAT-ABI = -mfloat-abi=hard
|
||||||
|
|
||||||
|
# mcu
|
||||||
|
MCU = $(CPU) -mthumb $(FPU) $(FLOAT-ABI)
|
||||||
|
|
||||||
|
# macros for gcc
|
||||||
|
# AS defines
|
||||||
|
AS_DEFS =
|
||||||
|
|
||||||
|
# C defines
|
||||||
|
C_DEFS = \
|
||||||
|
-DSTM32F302xC \
|
||||||
|
-DUSE_HAL_DRIVER
|
||||||
|
|
||||||
|
|
||||||
|
# CXX defines
|
||||||
|
CXX_DEFS = \
|
||||||
|
-DSTM32F302xC \
|
||||||
|
-DUSE_HAL_DRIVER
|
||||||
|
|
||||||
|
|
||||||
|
# AS includes
|
||||||
|
AS_INCLUDES = \
|
||||||
|
|
||||||
|
# C includes
|
||||||
|
C_INCLUDES = \
|
||||||
|
-ICore/Inc \
|
||||||
|
-IDrivers/CMSIS/Device/ST/STM32F3xx/Include \
|
||||||
|
-IDrivers/CMSIS/Include \
|
||||||
|
-IDrivers/STM32F3xx_HAL_Driver/Inc \
|
||||||
|
-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# compile gcc flags
|
||||||
|
ASFLAGS = $(MCU) $(AS_DEFS) $(AS_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
|
||||||
|
|
||||||
|
CFLAGS = $(MCU) $(C_DEFS) $(C_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
|
||||||
|
|
||||||
|
CXXFLAGS = $(MCU) $(CXX_DEFS) $(C_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections -feliminate-unused-debug-types
|
||||||
|
|
||||||
|
ifeq ($(DEBUG), 1)
|
||||||
|
CFLAGS += -g -gdwarf -ggdb
|
||||||
|
CXXFLAGS += -g -gdwarf -ggdb
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Add additional flags
|
||||||
|
CFLAGS += -Wall -fdata-sections -ffunction-sections
|
||||||
|
ASFLAGS += -Wall -fdata-sections -ffunction-sections
|
||||||
|
CXXFLAGS +=
|
||||||
|
|
||||||
|
# Generate dependency information
|
||||||
|
CFLAGS += -MMD -MP -MF"$(@:%.o=%.d)"
|
||||||
|
CXXFLAGS += -MMD -MP -MF"$(@:%.o=%.d)"
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# LDFLAGS
|
||||||
|
#######################################
|
||||||
|
# link script
|
||||||
|
LDSCRIPT = STM32F302CBTx_FLASH.ld
|
||||||
|
|
||||||
|
# libraries
|
||||||
|
LIBS = -lc -lm -lnosys
|
||||||
|
LIBDIR = \
|
||||||
|
|
||||||
|
|
||||||
|
# Additional LD Flags from config file
|
||||||
|
ADDITIONALLDFLAGS = -Wl,--print-memory-usage -specs=nano.specs
|
||||||
|
|
||||||
|
LDFLAGS = $(MCU) $(ADDITIONALLDFLAGS) -T$(LDSCRIPT) $(LIBDIR) $(LIBS) -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref -Wl,--gc-sections
|
||||||
|
|
||||||
|
# default action: build all
|
||||||
|
all: $(BUILD_DIR)/$(TARGET).elf $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin
|
||||||
|
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# build the application
|
||||||
|
#######################################
|
||||||
|
# list of cpp program objects
|
||||||
|
OBJECTS = $(addprefix $(BUILD_DIR)/,$(notdir $(CPP_SOURCES:.cpp=.o)))
|
||||||
|
vpath %.cpp $(sort $(dir $(CPP_SOURCES)))
|
||||||
|
|
||||||
|
# list of C objects
|
||||||
|
OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(C_SOURCES:.c=.o)))
|
||||||
|
vpath %.c $(sort $(dir $(C_SOURCES)))
|
||||||
|
|
||||||
|
# list of ASM program objects
|
||||||
|
UPPER_CASE_ASM_SOURCES = $(filter %.S,$(ASM_SOURCES))
|
||||||
|
LOWER_CASE_ASM_SOURCES = $(filter %.s,$(ASM_SOURCES))
|
||||||
|
|
||||||
|
OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(UPPER_CASE_ASM_SOURCES:.S=.o)))
|
||||||
|
OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(LOWER_CASE_ASM_SOURCES:.s=.o)))
|
||||||
|
vpath %.s $(sort $(dir $(ASM_SOURCES)))
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.o: %.cpp STM32Make.make | $(BUILD_DIR)
|
||||||
|
$(CXX) -c $(CXXFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.cpp=.lst)) $< -o $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.o: %.cxx STM32Make.make | $(BUILD_DIR)
|
||||||
|
$(CXX) -c $(CXXFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.cxx=.lst)) $< -o $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.o: %.c STM32Make.make | $(BUILD_DIR)
|
||||||
|
$(CC) -c $(CFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.c=.lst)) $< -o $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.o: %.s STM32Make.make | $(BUILD_DIR)
|
||||||
|
$(AS) -c $(CFLAGS) $< -o $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.o: %.S STM32Make.make | $(BUILD_DIR)
|
||||||
|
$(AS) -c $(CFLAGS) $< -o $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/$(TARGET).elf: $(OBJECTS) STM32Make.make
|
||||||
|
$(CC) $(OBJECTS) $(LDFLAGS) -o $@
|
||||||
|
$(SZ) $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.hex: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
|
||||||
|
$(HEX) $< $@
|
||||||
|
|
||||||
|
$(BUILD_DIR)/%.bin: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
|
||||||
|
$(BIN) $< $@
|
||||||
|
|
||||||
|
$(BUILD_DIR):
|
||||||
|
mkdir $@
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# flash
|
||||||
|
#######################################
|
||||||
|
flash: $(BUILD_DIR)/$(TARGET).elf
|
||||||
|
"/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/openocd/0.12.0-3.1/.content/bin/openocd" -f ./openocd.cfg -c "program $(BUILD_DIR)/$(TARGET).elf verify reset exit"
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# erase
|
||||||
|
#######################################
|
||||||
|
erase: $(BUILD_DIR)/$(TARGET).elf
|
||||||
|
"/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/openocd/0.12.0-3.1/.content/bin/openocd" -f ./openocd.cfg -c "init; reset halt; stm32f3x mass_erase 0; exit"
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# clean up
|
||||||
|
#######################################
|
||||||
|
clean:
|
||||||
|
-rm -fR $(BUILD_DIR)
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# custom makefile rules
|
||||||
|
#######################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# dependencies
|
||||||
|
#######################################
|
||||||
|
-include $(wildcard $(BUILD_DIR)/*.d)
|
||||||
|
|
||||||
|
# *** EOF ***
|
66
build/main.d
Normal file
66
build/main.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/main.o: Core/Src/main.c Core/Inc/main.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Core/Inc/main.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
2453
build/main.lst
Normal file
2453
build/main.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/main.o
Normal file
BIN
build/main.o
Normal file
Binary file not shown.
BIN
build/mvbms-test-24.bin
Executable file
BIN
build/mvbms-test-24.bin
Executable file
Binary file not shown.
BIN
build/mvbms-test-24.elf
Executable file
BIN
build/mvbms-test-24.elf
Executable file
Binary file not shown.
628
build/mvbms-test-24.hex
Normal file
628
build/mvbms-test-24.hex
Normal file
@ -0,0 +1,628 @@
|
|||||||
|
:020000040800F2
|
||||||
|
:1000000000800020CD250008C5080008C7080008AA
|
||||||
|
:10001000C9080008CB080008CD080008000000004F
|
||||||
|
:10002000000000000000000000000000CF080008F1
|
||||||
|
:10003000D108000800000000D3080008D508000817
|
||||||
|
:100040001D2600081D2600081D2600081D26000884
|
||||||
|
:100050001D2600081D2600081D2600081D26000874
|
||||||
|
:100060001D2600081D2600081D2600081D26000864
|
||||||
|
:100070001D2600081D2600081D2600081D26000854
|
||||||
|
:100080001D2600081D2600081D2600081D26000844
|
||||||
|
:100090001D2600081D2600081D2600081D26000834
|
||||||
|
:1000A0001D2600081D2600081D2600081D26000824
|
||||||
|
:1000B0001D2600081D2600081D2600081D26000814
|
||||||
|
:1000C0001D2600081D2600081D2600081D26000804
|
||||||
|
:1000D0001D2600081D2600081D2600081D260008F4
|
||||||
|
:1000E0001D2600081D2600081D260008000000002F
|
||||||
|
:1000F0000000000000000000000000000000000000
|
||||||
|
:100100000000000000000000000000001D260008A4
|
||||||
|
:100110001D2600081D2600081D26000800000000FE
|
||||||
|
:100120001D2600081D2600081D2600081D260008A3
|
||||||
|
:100130001D26000800000000000000000000000074
|
||||||
|
:100140001D2600081D260008000000000000000019
|
||||||
|
:10015000000000000000000000000000000000009F
|
||||||
|
:1001600000000000000000001D2600081D260008F9
|
||||||
|
:100170001D26000800000000000000000000000034
|
||||||
|
:08018000000000001D2600082C
|
||||||
|
:1001880010B5054C237833B9044B13B10448AFF3C9
|
||||||
|
:1001980000800123237010BD0C0000200000000027
|
||||||
|
:1001A8007826000808B5034B1BB103490348AFF391
|
||||||
|
:1001B800008008BD0000000010000020782600081C
|
||||||
|
:1001C800F0B58BB00024059406940794089409941C
|
||||||
|
:1001D800364B5A6942F400225A615A6902F40022E5
|
||||||
|
:1001E8000192019A5A6942F480025A615A6902F4EA
|
||||||
|
:1001F80080020292029A5A6942F400325A615A699C
|
||||||
|
:1002080002F400320392039A5A6942F480225A6136
|
||||||
|
:100218005B6903F480230493049B224603214FF077
|
||||||
|
:10022800904000F09FFD224D22464FF42051284671
|
||||||
|
:1002380000F098FD4FF46043059303260696079453
|
||||||
|
:1002480005A91C4800F0AAFC059601270697079403
|
||||||
|
:10025800089405A94FF0904000F0A0FC44F2070371
|
||||||
|
:1002680005930694079405A9284600F097FC41F2E7
|
||||||
|
:10027800305305930696079405A9284600F08EFC8E
|
||||||
|
:100288004FF42053059306970794089405A9284628
|
||||||
|
:1002980000F084FC4FF4E06305930694079405A9E5
|
||||||
|
:1002A8004FF0904000F07AFC0BB0F0BD0010024017
|
||||||
|
:1002B800000400480008004872B6FEE708B50B487D
|
||||||
|
:1002C8000B4B03601023436000238360C36003610A
|
||||||
|
:1002D8004361037643768376C3760377437700F0EA
|
||||||
|
:1002E8004DFB00B908BDFFF7E7FF00BF0002002083
|
||||||
|
:1002F8000064004008B51148114B0360114B43607E
|
||||||
|
:10030800002383600122C260036143618361C3618A
|
||||||
|
:10031800036200F02CFD50B90021084800F085FD6B
|
||||||
|
:1003280038B90021054800F0AEFD20B908BDFFF737
|
||||||
|
:10033800C3FFFFF7C1FFFFF7BFFF00BFAC010020FD
|
||||||
|
:10034800005400400E09002008B50E480E4B03600B
|
||||||
|
:100358004FF482734360002383604FF44072C2609D
|
||||||
|
:10036800036143618361C36103624362836207225D
|
||||||
|
:10037800C26203630823436301F022FB00B908BD8E
|
||||||
|
:10038800FFF79AFF480100200030014010B596B0F1
|
||||||
|
:1003980000241394149415940C940D940E940F94B3
|
||||||
|
:1003A8001094119412942C22214601A802F033F9DA
|
||||||
|
:1003B8002548264B0360446084604FF6FF73C36092
|
||||||
|
:1003C80004614461846101F0D7FC002831D1002325
|
||||||
|
:1003D8001393159313A91C4801F0DAFD00282AD1BC
|
||||||
|
:1003E80060230C9300220D920E920F92109211929C
|
||||||
|
:1003F80012920CA9144801F02DFDF0B904220CA9A1
|
||||||
|
:10040800114801F027FDD0B900230193029303930B
|
||||||
|
:10041800049305934FF40052069207930B9301A996
|
||||||
|
:10042800094801F0F5FD60B9074800F0CDF916B0AC
|
||||||
|
:1004380010BDFFF741FFFFF73FFFFFF73DFFFFF755
|
||||||
|
:100448003BFFFFF739FF00BFB0000020004001402C
|
||||||
|
:1004580008B50B480B4B03604FF416434360002369
|
||||||
|
:100468008360C36003610C2242618361C3610362DC
|
||||||
|
:10047800436202F076F800B908BDFFF71DFF00BF20
|
||||||
|
:10048800280000200038014010B596B000241394CD
|
||||||
|
:10049800149415940C940D940E940F941094119434
|
||||||
|
:1004A80012942C22214601A802F0B5F82448254BC5
|
||||||
|
:1004B8000360446084604FF6FF73C3600461446165
|
||||||
|
:1004C800846101F059FC002832D10023139314935E
|
||||||
|
:1004D800159313A91A4801F05BFD00282AD160235F
|
||||||
|
:1004E8000C9300230D930E930F9310931193129373
|
||||||
|
:1004F80008220CA9124801F0ADFCE8B900230193C9
|
||||||
|
:1005080002930393049305934FF4005206920793C2
|
||||||
|
:1005180008934FF0007209920A930B9301A90848B7
|
||||||
|
:1005280001F076FD50B9064800F04EF916B010BD3E
|
||||||
|
:10053800FFF7C2FEFFF7C0FEFFF7BEFEFFF7BCFEE7
|
||||||
|
:10054800FC000020002C014000B59DB028220021AD
|
||||||
|
:1005580012A802F060F800210D910E910F911091F0
|
||||||
|
:1005680011913422684602F056F8022312930123AF
|
||||||
|
:1005780016931023179312A800F0B2FCC0B90F23EA
|
||||||
|
:100588000D9300210E910F91109111910DA800F07B
|
||||||
|
:10059800F7FF78B941F221030093002302930793F0
|
||||||
|
:1005A8000B93684601F0F2F830B91DB05DF804FB12
|
||||||
|
:1005B800FFF782FEFFF780FEFFF77EFE08B500F02A
|
||||||
|
:1005C800B9F9FFF7C1FFFFF7FBFDFFF777FEFFF76C
|
||||||
|
:1005D80091FEFFF7B9FEFFF7D9FEFFF739FFFFF7E6
|
||||||
|
:1005E80053FFFEE782B00A4B9A6942F001029A6112
|
||||||
|
:1005F8009A6902F001020092009ADA6942F0805288
|
||||||
|
:10060800DA61DB6903F080530193019B02B0704704
|
||||||
|
:100618000010024000B589B00023039304930593AA
|
||||||
|
:10062800069307930268144B9A4202D009B05DF80A
|
||||||
|
:1006380004FB03F5D633DA6942F00072DA61DA694D
|
||||||
|
:1006480002F000720192019A5A6942F400325A612A
|
||||||
|
:100658005B6903F400330293029B4FF4C053039386
|
||||||
|
:1006680002230493032306930923079303A94FF056
|
||||||
|
:10067800904000F093FAD9E700640040F0B589B0E3
|
||||||
|
:1006880000230393049305930693079302681E4B74
|
||||||
|
:100698009A4201D009B0F0BD1C4C636943F40033A1
|
||||||
|
:1006A8006361636903F400330093009B636943F457
|
||||||
|
:1006B80080236361636903F480230193019B4FF4F2
|
||||||
|
:1006C80000430393122704970326069604250795EB
|
||||||
|
:1006D80003A94FF0904000F061FA4FF400730393C0
|
||||||
|
:1006E8000497002305930696079503A9084800F088
|
||||||
|
:1006F80055FAE36943F40013E361E36903F4001373
|
||||||
|
:100708000293029BC6E700BF00540040001002405D
|
||||||
|
:100718000004004800B589B00023039304930593AF
|
||||||
|
:10072800069307930268144B9A4202D009B05DF809
|
||||||
|
:1007380004FB03F560439A6942F480529A619A690E
|
||||||
|
:1007480002F480520192019A5A6942F400325A61C5
|
||||||
|
:100758005B6903F400330293029BF02303930223A3
|
||||||
|
:100768000493032306930523079303A94FF09040AE
|
||||||
|
:1007780000F014FADAE700BF0030014082B00368E5
|
||||||
|
:100788000E4A934204D00E4A93420CD002B07047EE
|
||||||
|
:100798000C4B9A6942F400629A619B6903F4006306
|
||||||
|
:1007A8000093009BF2E7074B9A6942F480329A6102
|
||||||
|
:1007B8009B6903F480330193019BE7E7002C014018
|
||||||
|
:1007C800004001400010024000B589B000230393A7
|
||||||
|
:1007D800049305930693079303681A4A934205D036
|
||||||
|
:1007E800194A934218D009B05DF804FB174B5A69AF
|
||||||
|
:1007F80042F480225A615B6903F480230193019BD0
|
||||||
|
:100808004FF400430393022304930423079303A99B
|
||||||
|
:100818000F4800F0C3F9E6E70C4B5A6942F400327E
|
||||||
|
:100828005A615B6903F400330293029B0C23039320
|
||||||
|
:10083800022304930923079303A94FF0904000F083
|
||||||
|
:10084800ADF9D0E7002C0140004001400010024003
|
||||||
|
:100858000004004800B589B000230393049305936E
|
||||||
|
:10086800069307930268134B9A4202D009B05DF8C9
|
||||||
|
:1008780004FB03F558439A6942F480429A619A69E5
|
||||||
|
:1008880002F480420192019A5A6942F480225A6124
|
||||||
|
:100898005B6903F480230293029BC0230393022322
|
||||||
|
:1008A8000493032306930723079303A9024800F040
|
||||||
|
:1008B80075F9DBE70038014000040048FEE7FEE771
|
||||||
|
:1008C800FEE7FEE7FEE770477047704708B500F09F
|
||||||
|
:1008D80043F808BD034AD2F8883043F47003C2F8DD
|
||||||
|
:1008E8008830704700ED00E010B504460E4B1A78CA
|
||||||
|
:1008F8004FF47A73B3FBF2F30C4A1068B0FBF3F0D1
|
||||||
|
:1009080000F038F968B90F2C01D901200AE000225B
|
||||||
|
:1009180021464FF0FF3000F01DF9054B1C60002008
|
||||||
|
:1009280000E0012010BD00BF0400002000000020EE
|
||||||
|
:100938000800002008B5074A136843F01003136045
|
||||||
|
:10094800032000F0F5F80F20FFF7CEFFFFF74AFE6F
|
||||||
|
:10095800002008BD00200240034A1168034B1B78A1
|
||||||
|
:100968000B441360704700BF2802002004000020D9
|
||||||
|
:10097800014B1868704700BF28020020002800F0CB
|
||||||
|
:10098800A18038B5044690F82030D3B122681368A6
|
||||||
|
:1009980043F001031360FFF7EBFF054623685A682D
|
||||||
|
:1009A80012F0010F10D1FFF7E3FF401B0A28F5D919
|
||||||
|
:1009B800636A43F400336362052384F8203001201E
|
||||||
|
:1009C80038BDFFF727FEE1E71A6822F002021A6035
|
||||||
|
:1009D800FFF7CEFF054623685A6812F0020F0DD0C4
|
||||||
|
:1009E800FFF7C6FF401B0A28F5D9636A43F40033B2
|
||||||
|
:1009F8006362052384F820300120E1E7227E012A82
|
||||||
|
:100A08003DD01A6822F080021A60637E012B3BD029
|
||||||
|
:100A18002268136823F040031360A37E012B39D0AA
|
||||||
|
:100A28002268136823F020031360E37E012B37D07C
|
||||||
|
:100A38002268136843F010031360237F012B35D01D
|
||||||
|
:100A48002268136823F008031360637F012B33D0F7
|
||||||
|
:100A58002268136823F004031360A368E268134351
|
||||||
|
:100A680022691343626913436268013A2168134398
|
||||||
|
:100A7800CB6100206062012384F82030A0E71A6867
|
||||||
|
:100A880042F080021A60C0E72268136843F040030E
|
||||||
|
:100A98001360C2E72268136843F020031360C4E7B9
|
||||||
|
:100AA8002268136823F010031360C6E722681368EE
|
||||||
|
:100AB80043F008031360C8E72268136843F004038F
|
||||||
|
:100AC8001360CAE701207047002808DB0901C9B292
|
||||||
|
:100AD80000F1604000F5614080F80013704700F0B5
|
||||||
|
:100AE8000F000901C9B2014B1954704714ED00E019
|
||||||
|
:100AF80000B500F00700C0F1070CBCF1040F28BFD7
|
||||||
|
:100B08004FF0040C031D062B0FD9C31E4FF0FF3EF8
|
||||||
|
:100B18000EFA0CF021EA000199400EFA03FE22EACF
|
||||||
|
:100B28000E0241EA02005DF804FB0023EEE7000034
|
||||||
|
:100B3800074AD36823F4E0631B041B0C000200F48B
|
||||||
|
:100B4800E060034343F0BF6343F40033D36070476E
|
||||||
|
:100B580000ED00E010B50446054BD868C0F302204C
|
||||||
|
:100B6800FFF7C6FF01462046FFF7AEFF10BD00BFE6
|
||||||
|
:100B780000ED00E00138B0F1807F0BD24FF0E023A8
|
||||||
|
:100B88005861054AF02182F8231000209861072255
|
||||||
|
:100B98001A6170470120704700ED00E0F0B583B09E
|
||||||
|
:100BA800002362E085685E000324B44025EA04055A
|
||||||
|
:100BB800CC68B4402C438460456825EA0C054C6831
|
||||||
|
:100BC800C4F300149C402C4344605FE0DD08083502
|
||||||
|
:100BD80050F8254003F0070C4FEA8C0C4FF00F0E2D
|
||||||
|
:100BE8000EFA0CFE24EA0E0E0C6904FA0CF444EA20
|
||||||
|
:100BF8000E0440F8254060E0042400E0002404FAD4
|
||||||
|
:100C08000EF42C430CF1020C524D45F82C40524C7A
|
||||||
|
:100C1800A568D44325EA02064F6817F4801F01D05F
|
||||||
|
:100C280042EA05064C4DAE60ED6804EA05064F68D9
|
||||||
|
:100C380017F4001F01D042EA0506474DEE606D68C3
|
||||||
|
:100C480004EA05064F6817F4003F01D042EA05069A
|
||||||
|
:100C5800414D6E602D682C404E6816F4803F01D0DF
|
||||||
|
:100C680042EA05043C4A146001330A6832FA03F484
|
||||||
|
:100C78006ED04FF0010C0CFA03FC1CEA0202F3D010
|
||||||
|
:100C88004C6804F00304013C012C8BD94C6804F037
|
||||||
|
:100C98000304032C0CD0C4685D004FF0030C0CFA5D
|
||||||
|
:100CA80005FC24EA0C0C8C68AC4044EA0C04C460D3
|
||||||
|
:100CB8004C6804F00304022C88D004684FEA430E01
|
||||||
|
:100CC8004FF0030C0CFA0EFC24EA0C0C4C6804F0F0
|
||||||
|
:100CD800030404FA0EF444EA0C0404604C6814F4A7
|
||||||
|
:100CE800403FC1D01D4CA56945F00105A561A46927
|
||||||
|
:100CF80004F001040194019C4FEA930C0CF10205E5
|
||||||
|
:100D0800144C54F8255003F0030E4FEA8E0E0F24AE
|
||||||
|
:100D180004FA0EF425EA0405B0F1904F3FF46EAFE3
|
||||||
|
:100D28000F4CA0420ED004F58064A0420CD004F50C
|
||||||
|
:100D38008064A0420AD004F58064A0423FF45CAF0E
|
||||||
|
:100D480005245CE701245AE7022458E7032456E700
|
||||||
|
:100D580003B0F0BD00000140000401400010024053
|
||||||
|
:100D6800000400480AB18161704781627047002819
|
||||||
|
:100D780059D010B5044690F84130002B43D02423B5
|
||||||
|
:100D880084F841302268136823F001031360636814
|
||||||
|
:100D9800226823F0706313612268936823F4004388
|
||||||
|
:100DA8009360E368012B33D0A368226843F40443BB
|
||||||
|
:100DB8009360E368022B31D02268536843F00073D4
|
||||||
|
:100DC80043F4004353602268D36823F40043D3609C
|
||||||
|
:100DD800236962691343A169226843EA0123D36046
|
||||||
|
:100DE800E369216A22680B4313602268136843F0A1
|
||||||
|
:100DF8000103136000206064202384F841302063DD
|
||||||
|
:100E080084F8420010BD80F84030FFF737FCB6E7A1
|
||||||
|
:100E1800A368226843F400439360CAE723684FF449
|
||||||
|
:100E280000625A60C8E701207047034690F84120E5
|
||||||
|
:100E3800D2B2202A23D190F84020012A21D00122C1
|
||||||
|
:100E480080F84020242280F841200068026822F0BF
|
||||||
|
:100E5800010202601868026822F480520260186871
|
||||||
|
:100E680002681143016019680A6842F001020A60C9
|
||||||
|
:100E7800202283F84120002083F840007047022098
|
||||||
|
:100E8800704702207047034690F84120D2B2202ACA
|
||||||
|
:100E980021D190F84020012A1FD0012280F840205B
|
||||||
|
:100EA800242280F841200068026822F001020260D2
|
||||||
|
:100EB8001868026822F4706242EA01220260196826
|
||||||
|
:100EC8000A6842F001020A60202283F841200020CB
|
||||||
|
:100ED80083F84000704702207047022070470000E6
|
||||||
|
:100EE800002800F0FF8270B582B00446036813F052
|
||||||
|
:100EF800010F3BD0B44B5B6803F00C03042B1ED0EE
|
||||||
|
:100F0800B14B5B6803F00C03082B13D06368B3F58F
|
||||||
|
:100F1800803F68D0002B40F0928003F1804303F5B6
|
||||||
|
:100F280004331A6822F480321A601A6822F4802284
|
||||||
|
:100F38001A605DE0A44B5B6813F4803FE6D04FF481
|
||||||
|
:100F4800003393FAA3F3A04B19684FF4003393FAD4
|
||||||
|
:100F5800A3F3B3FA83F303F01F03012202FA03F3A6
|
||||||
|
:100F68000B4203D06368002B00F0BE82236813F0A5
|
||||||
|
:100F7800020F00F0C480944B5B6813F00C0F00F074
|
||||||
|
:100F88009C80914B5B6803F00C03082B00F08F806A
|
||||||
|
:100F98002369002B00F0F080012292FAA2F3B3FA41
|
||||||
|
:100FA80083F303F1845303F584139B001A60FFF75E
|
||||||
|
:100FB800DFFC0546022393FAA3F3834B1968022347
|
||||||
|
:100FC80093FAA3F3B3FA83F303F01F03012202FA9F
|
||||||
|
:100FD80003F30B4240F0C280FFF7CAFC401B022813
|
||||||
|
:100FE800E8D9032089E2784A136843F48033136010
|
||||||
|
:100FF800754AD36A23F00F03A1680B43D362636871
|
||||||
|
:10100800002B36D0FFF7B4FC05464FF4003393FAB3
|
||||||
|
:10101800A3F36D4B19684FF4003393FAA3F3B3FAB3
|
||||||
|
:1010280083F303F01F03012202FA03F30B429DD15D
|
||||||
|
:10103800FFF79EFC401B6428E7D903205DE2B3F567
|
||||||
|
:10104800A02F09D0604B1A6822F480321A601A68FF
|
||||||
|
:1010580022F480221A60CBE703F18043A3F53C33E6
|
||||||
|
:101068001A6842F480221A601A6842F480321A60C0
|
||||||
|
:10107800BEE7FFF77DFC05464FF4003393FAA3F370
|
||||||
|
:10108800514B19684FF4003393FAA3F3B3FA83F37F
|
||||||
|
:1010980003F01F03012202FA03F30B423FF466AF89
|
||||||
|
:1010A800FFF766FC401B6428E6D9032025E2464B7F
|
||||||
|
:1010B8005B6813F4803F7FF46BAF022393FAA3F3CA
|
||||||
|
:1010C800414B1968022393FAA3F3B3FA83F303F0AD
|
||||||
|
:1010D8001F03012202FA03F30B4203D02369934250
|
||||||
|
:1010E80040F004823848036823F0F8036169F82265
|
||||||
|
:1010F80092FAA2F2B2FA82F291400B43036023689B
|
||||||
|
:1011080013F0080F00F08C80A369002B60D0012138
|
||||||
|
:1011180091FAA1F2B2FA82F22C4B13449B001960A7
|
||||||
|
:10112800FFF726FC0546022393FAA3F293FAA3F2EB
|
||||||
|
:1011380093FAA3F2244A516A93FAA3F3B3FA83F316
|
||||||
|
:1011480003F01F03012202FA03F30B4268D1FFF7F1
|
||||||
|
:101158000FFC401B0228E6D90320CEE11A48036899
|
||||||
|
:1011680023F0F8036169F82292FAA2F2B2FA82F245
|
||||||
|
:1011780091400B430360C2E7012393FAA3F3B3FA48
|
||||||
|
:1011880083F303F1845303F584139B0000221A6050
|
||||||
|
:10119800FFF7EEFB0546022393FAA3F30A4B1968FF
|
||||||
|
:1011A800022393FAA3F3B3FA83F303F01F03012294
|
||||||
|
:1011B80002FA03F30B42A2D0FFF7DAFB401B022826
|
||||||
|
:1011C800E9D9032099E100BF001002402081901066
|
||||||
|
:1011D800012292FAA2F2B2FA82F2B74B13449B00B0
|
||||||
|
:1011E80000221A60FFF7C4FB0546022393FAA3F214
|
||||||
|
:1011F80093FAA3F293FAA3F2B04A516A93FAA3F3CB
|
||||||
|
:10120800B3FA83F303F01F03012202FA03F30B423C
|
||||||
|
:1012180006D0FFF7ADFB401B0228E6D903206CE19E
|
||||||
|
:10122800236813F0040F00F0A980A44BDB6913F0C6
|
||||||
|
:10123800805F20D1A14BDA6942F08052DA61DB6924
|
||||||
|
:1012480003F080530193019B01259D4B1B6813F408
|
||||||
|
:10125800807F12D0E368012B23D073BB03F1804356
|
||||||
|
:1012680003F504331A6A22F001021A621A6A22F09C
|
||||||
|
:1012780004021A621AE00025E7E7914A136843F46A
|
||||||
|
:1012880080731360FFF774FB06468D4B1B6813F4DD
|
||||||
|
:10129800807FDFD1FFF76CFB801B6428F5D9032022
|
||||||
|
:1012A8002BE1864A136A43F001031362E368002BBB
|
||||||
|
:1012B8003CD0FFF75DFB06462EE0052B09D07F4B9F
|
||||||
|
:1012C8001A6A22F001021A621A6A22F004021A62E9
|
||||||
|
:1012D800ECE77A4B1A6A42F004021A621A6A42F080
|
||||||
|
:1012E80001021A62E2E7022393FAA3F3734B596AE5
|
||||||
|
:1012F800022393FAA3F3B3FA83F303F01F03012243
|
||||||
|
:1013080002FA03F3194238D1FFF732FB801B41F28E
|
||||||
|
:101318008833984200F2EC80022393FAA3F293FAFE
|
||||||
|
:10132800A3F3002BDFD0654B196AE1E7FFF720FB39
|
||||||
|
:10133800064618E0022393FAA3F3604B596A022386
|
||||||
|
:1013480093FAA3F3B3FA83F303F01F03012202FA1B
|
||||||
|
:1013580003F3194211D0FFF70BFB801B41F28833CE
|
||||||
|
:10136800984200F2C780022393FAA3F293FAA3F3F8
|
||||||
|
:10137800002BDFD0514B196AE1E7B5BBE369002BBD
|
||||||
|
:1013880000F0BA804D4A526802F00C02082A00F0B8
|
||||||
|
:101398009980022B2FD04FF0807393FAA3F3B3FAFE
|
||||||
|
:1013A80083F303F1845303F584139B0000221A602E
|
||||||
|
:1013B800FFF7DEFA04464FF0007393FAA3F33F4BAE
|
||||||
|
:1013C80019684FF0007393FAA3F3B3FA83F303F0A9
|
||||||
|
:1013D8001F03012202FA03F319426BD0FFF7C8FA80
|
||||||
|
:1013E800001B0228E7D9032087E0344AD36923F099
|
||||||
|
:1013F8008053D361C2E74FF0807393FAA3F3B3FA33
|
||||||
|
:1014080083F303F1845303F584139B0000221A60CD
|
||||||
|
:10141800FFF7AEFA05464FF0007393FAA3F3274B94
|
||||||
|
:1014280019684FF0007393FAA3F3B3FA83F303F048
|
||||||
|
:101438001F03012202FA03F3194206D0FFF798FAB4
|
||||||
|
:10144800401B0228E7D9032057E01C494B6823F4C6
|
||||||
|
:101458007413626A206A024313434B604FF080732F
|
||||||
|
:1014680093FAA3F3B3FA83F303F1845303F58413D4
|
||||||
|
:101478009B0001221A60FFF77BFA04464FF00073C5
|
||||||
|
:1014880093FAA3F30D4B19684FF0007393FAA3F383
|
||||||
|
:10149800B3FA83F303F01F03012202FA03F319429C
|
||||||
|
:1014A80006D1FFF765FA001B0228E7D9032024E0DC
|
||||||
|
:1014B800002022E0002020E020819010001002404F
|
||||||
|
:1014C80000700040012B1AD0104B5B6803F4803188
|
||||||
|
:1014D800226A914215D103F47013626A934212D1C1
|
||||||
|
:1014E80000200AE001207047012006E0012004E006
|
||||||
|
:1014F800032002E0032000E0002002B070BD0120BC
|
||||||
|
:10150800FBE70120F9E70120F7E700BF00100240E0
|
||||||
|
:10151800164B5B6803F00C02082A01D01448704788
|
||||||
|
:1015280003F470114FF4701292FAA2F2B2FA82F236
|
||||||
|
:1015380021FA02F20F49885C0C4AD26A02F00F02C3
|
||||||
|
:101548000F2191FAA1F1B1FA81F1CA400A498A5CE6
|
||||||
|
:1015580013F4803F05D0064BB3FBF2F303FB00F016
|
||||||
|
:101568007047064B03FB00F0704700BF00100240B5
|
||||||
|
:1015780000127A00B8260008A826000800093D00D5
|
||||||
|
:10158800002800F0BE8070B50D460446614B1B680C
|
||||||
|
:1015980003F007038B420BD25E4A136823F007035C
|
||||||
|
:1015A8000B431360136803F007038B4240F0AB80D2
|
||||||
|
:1015B800236813F0020F06D0574A536823F0F0034C
|
||||||
|
:1015C800A1680B435360236813F0010F5AD0636876
|
||||||
|
:1015D800012B2DD0022B40D0022292FAA2F24E4AC1
|
||||||
|
:1015E8001068022292FAA2F2B2FA82F202F01F0204
|
||||||
|
:1015F800012101FA02F2104200F0878046494A6848
|
||||||
|
:1016080022F0030213434B60FFF7B2F90646424B40
|
||||||
|
:101618005B6803F00C036268B3EB820F32D0FFF70C
|
||||||
|
:10162800A7F9801B41F288339842F0D9032067E07C
|
||||||
|
:101638004FF4003292FAA2F2374A10684FF400329F
|
||||||
|
:1016480092FAA2F2B2FA82F202F01F02012101FA22
|
||||||
|
:1016580002F20242D2D1012052E04FF0007292FA17
|
||||||
|
:10166800A2F22D4A10684FF0007292FAA2F2B2FA72
|
||||||
|
:1016780082F202F01F02012101FA02F21042BDD1EA
|
||||||
|
:1016880001203DE0234B1B6803F00703AB420AD956
|
||||||
|
:10169800204A136823F007032B431360136803F0F1
|
||||||
|
:1016A8000703AB4233D1236813F0040F06D01A4A5C
|
||||||
|
:1016B800536823F4E063E1680B435360236813F035
|
||||||
|
:1016C800080F07D0144A536823F46053216943EA8A
|
||||||
|
:1016D800C1035360FFF71CFF0F4B5B6803F0F00377
|
||||||
|
:1016E800F02292FAA2F2B2FA82F2D3400B4AD35C09
|
||||||
|
:1016F800D8400B4B18600B4B1868FFF7F5F8002023
|
||||||
|
:1017080070BD012070470120FAE70120F8E70120A9
|
||||||
|
:10171800F6E700BF002002400010024098260008AB
|
||||||
|
:101728000000002008000020014B1868704700BF27
|
||||||
|
:101738000000002008B5FFF7F7FF074B5B6803F4CC
|
||||||
|
:10174800E0634FF4E06292FAA2F2B2FA82F2D34076
|
||||||
|
:10175800024AD35CD84008BD001002409026000819
|
||||||
|
:1017680008B5FFF7E1FF074B5B6803F460534FF4DC
|
||||||
|
:10177800605292FAA2F2B2FA82F2D340024AD35CE1
|
||||||
|
:10178800D84008BD0010024090260008F0B583B08C
|
||||||
|
:101798000446036813F4803F48D0864BDB6913F096
|
||||||
|
:1017A800805F40F0BE80834BDA6942F08052DA6194
|
||||||
|
:1017B800DB6903F080530193019B01257E4B1B6875
|
||||||
|
:1017C80013F4807F00F0AF807A4B1B6A13F44073E8
|
||||||
|
:1017D80022D0626802F440729A421DD07548016AAC
|
||||||
|
:1017E80021F440764FF4803393FAA3F2B2FA82F2EE
|
||||||
|
:1017F800724F3A4492004FF0010CC2F800C093FABD
|
||||||
|
:10180800A3F3B3FA83F33B449B0000221A600662F9
|
||||||
|
:1018180011F0010F40F09C80664A136A23F440736C
|
||||||
|
:1018280061680B431362002D40F0B980236813F000
|
||||||
|
:10183800010F06D05F4A136B23F00303A1680B4323
|
||||||
|
:101848001363236813F0020F06D05A4A136B23F46C
|
||||||
|
:101858004033E1680B431363236813F0040F06D089
|
||||||
|
:10186800544A136B23F4402321690B431363236801
|
||||||
|
:1018780013F0200F06D04F4A136B23F01003E169D1
|
||||||
|
:101888000B431363236813F4003F06D0494A536897
|
||||||
|
:1018980023F48003216B0B435360236813F0400F3C
|
||||||
|
:1018A80006D0444A136B23F02003216A0B431363C9
|
||||||
|
:1018B800236813F0080F06D03E4A136B23F4401335
|
||||||
|
:1018C80061690B431363236813F0100F06D0394A7C
|
||||||
|
:1018D800136B23F44003A1690B431363236813F4C8
|
||||||
|
:1018E800007F06D0334A536823F40003A16A0B43F0
|
||||||
|
:1018F8005360236813F0800F06D02E4AD36A23F46E
|
||||||
|
:10190800F873616A0B43D362236813F4805F4DD088
|
||||||
|
:10191800284A136B23F48073E16A0B431363002096
|
||||||
|
:1019280045E000254AE7244A136843F480731360AE
|
||||||
|
:10193800FFF71EF80646204B1B6813F4807F7FF4E0
|
||||||
|
:1019480043AFFFF715F8801B6428F4D903202EE075
|
||||||
|
:10195800FFF70EF8064618E0022393FAA3F3154B97
|
||||||
|
:10196800596A022393FAA3F3B3FA83F303F01F032C
|
||||||
|
:10197800012202FA03F30B427FF44EAFFEF7F8FFA1
|
||||||
|
:10198800801B41F2883398420ED8022393FAA3F2BF
|
||||||
|
:1019980093FAA3F3002BDFD0064B196AE1E7D3696A
|
||||||
|
:1019A80023F08053D36141E7032000E0002003B017
|
||||||
|
:1019B800F0BD00BF00100240007000400081901090
|
||||||
|
:1019C80000286FD010B50446436A33B94368B3F5AD
|
||||||
|
:1019D800827F05D00023C36102E0002303614361D5
|
||||||
|
:1019E8000023A36294F85D30002B52D0022384F8C0
|
||||||
|
:1019F8005D302268136823F040031360E368B3F591
|
||||||
|
:101A0800E06F4CD90022B3F5706F04D0B3F5E06FE6
|
||||||
|
:101A180001D00023A362636803F48273A16801F410
|
||||||
|
:101A280004410B43216901F002010B43616901F094
|
||||||
|
:101A380001010B43A16901F400710B43E16901F055
|
||||||
|
:101A480038010B43216A01F080010B43A16A01F4BC
|
||||||
|
:101A5800005120680B430360638B03F00403616A41
|
||||||
|
:101A680001F010010B43616B01F008010B43E168C1
|
||||||
|
:101A780001F470610B43216813434B602268D369FA
|
||||||
|
:101A880023F40063D36100202066012384F85D30CD
|
||||||
|
:101A980010BD84F85C302046FEF73CFEA6E74FF404
|
||||||
|
:101AA8008052B0E70120704730B4036A23F0010385
|
||||||
|
:101AB8000362026A4468836923F4803323F0730362
|
||||||
|
:101AC8000D681D4322F002028B681343184A9042A6
|
||||||
|
:101AD8000BD002F5A052904207D002F580629042E6
|
||||||
|
:101AE80003D002F58062904205D123F00803CA684A
|
||||||
|
:101AF8001A4322F004030E4A90420BD002F5A0527A
|
||||||
|
:101B0800904207D002F58062904203D002F58062CD
|
||||||
|
:101B1800904205D124F440744A6922438C691443E5
|
||||||
|
:101B2800446085614A684263036230BC704700BF05
|
||||||
|
:101B3800002C014030B4036A23F480730362036A03
|
||||||
|
:101B48004268C46924F4803C2CF0730C0C6844EAA5
|
||||||
|
:101B58000C0523F400738C6843EA0423124CA0425A
|
||||||
|
:101B68000BD0124CA0420FD004F58064A0420BD0D9
|
||||||
|
:101B780004F58064A0420FD106E023F40063CC682A
|
||||||
|
:101B880043EA042323F4806322F440524C6942EA76
|
||||||
|
:101B980004128C6942EA04124260C5614A68C26351
|
||||||
|
:101BA800036230BC704700BF002C01400040014078
|
||||||
|
:101BB80030B4036A23F480530362026A4468C36939
|
||||||
|
:101BC80023F0807323F4E6430D6843EA052322F4E7
|
||||||
|
:101BD80000528D6842EA05320D4DA8420BD005F53A
|
||||||
|
:101BE800A055A84207D005F58065A84203D005F5A1
|
||||||
|
:101BF8008065A84204D124F480444D6944EA8514E0
|
||||||
|
:101C08004460C3614B680364026230BC704700BF24
|
||||||
|
:101C1800002C014030B4036A23F480330362036A62
|
||||||
|
:101C28004468426D22F4803222F070020D682A4323
|
||||||
|
:101C380023F400338D6843EA05430D4DA8420BD0C9
|
||||||
|
:101C480005F5A055A84207D005F58065A84203D040
|
||||||
|
:101C580005F58065A84204D124F480344D6944EA2E
|
||||||
|
:101C68000524446042654A688265036230BC704757
|
||||||
|
:101C7800002C014030B4036A23F480130362026A23
|
||||||
|
:101C88004468436D23F0807323F4E0430D6843EA0E
|
||||||
|
:101C9800052322F400128D6842EA05520D4DA84230
|
||||||
|
:101CA8000BD005F5A055A84207D005F58065A842D8
|
||||||
|
:101CB80003D005F58065A84204D124F480244D6939
|
||||||
|
:101CC80044EA8524446043654B68C365026230BCBE
|
||||||
|
:101CD800704700BF002C01400368264A90420AD092
|
||||||
|
:101CE800B0F1804F07D0A2F59432904203D002F5AC
|
||||||
|
:101CF8008062904203D123F070034A6813431D4A5F
|
||||||
|
:101D0800904216D0B0F1804F13D0A2F59432904291
|
||||||
|
:101D18000FD002F5806290420BD002F59C329042BF
|
||||||
|
:101D280007D002F58062904203D002F580629042AB
|
||||||
|
:101D380003D123F44073CA68134323F080034A692C
|
||||||
|
:101D4800134303608B68C3620B688362094B984234
|
||||||
|
:101D58000BD003F5A053984207D003F5806398424F
|
||||||
|
:101D680003D003F58063984201D10B690363012313
|
||||||
|
:101D780043617047002C014060B310B5044690F8E9
|
||||||
|
:101D88003D3013B3022384F83D30214651F8040B4B
|
||||||
|
:101D9800FFF7A2FF012384F8483084F83E3084F826
|
||||||
|
:101DA8003F3084F8403084F8413084F8423084F879
|
||||||
|
:101DB800433084F8443084F8453084F8463084F859
|
||||||
|
:101DC800473084F83D30002010BD80F83C30FEF7E5
|
||||||
|
:101DD800D5FCD7E70120704730B4036A23F010031D
|
||||||
|
:101DE8000362036A4268846924F0807C2CF4E64C20
|
||||||
|
:101DF8000C684CEA042423F020038D6843EA051399
|
||||||
|
:101E0800124DA8420BD0124DA8420FD005F580659F
|
||||||
|
:101E1800A8420BD005F58065A8420FD106E023F053
|
||||||
|
:101E28008003CD6843EA051323F0400322F440629F
|
||||||
|
:101E38004D6942EA85028D6942EA85024260846101
|
||||||
|
:101E48004A688263036230BC704700BF002C0140BF
|
||||||
|
:101E58000040014038B590F83C30012B00F09580E7
|
||||||
|
:101E680004460D46012380F83C30142A00F288808D
|
||||||
|
:101E7800DFE802F00B8686861F868686348686868D
|
||||||
|
:101E8800488686865D86868671000068FFF70CFEA8
|
||||||
|
:101E98002268936943F0080393612268936923F0E9
|
||||||
|
:101EA800040393612268936929690B4393610020B5
|
||||||
|
:101EB80067E00068FFF790FF2268936943F40063C6
|
||||||
|
:101EC80093612268936923F480639361226893691C
|
||||||
|
:101ED800296943EA01239361002052E00068FFF773
|
||||||
|
:101EE80029FE2268D36943F00803D3612268D369C5
|
||||||
|
:101EF80023F00403D3612268D36929690B43D361B2
|
||||||
|
:101F080000203EE00068FFF753FE2268D36943F4DF
|
||||||
|
:101F18000063D3612268D36923F48063D3612268A4
|
||||||
|
:101F2800D369296943EA0123D361002029E00068C5
|
||||||
|
:101F3800FFF770FE2268536D43F00803536522686B
|
||||||
|
:101F4800536D23F0040353652268536D29690B43CD
|
||||||
|
:101F58005365002015E00068FFF78CFE2268536D7A
|
||||||
|
:101F680043F4006353652268536D23F4806353651B
|
||||||
|
:101F78002268536D296943EA01235365002000E074
|
||||||
|
:101F88000120002384F83C3038BD0220FCE7000023
|
||||||
|
:101F980090F83C20012A37D030B40346012280F85B
|
||||||
|
:101FA8003C20022280F83D20006842688468174D72
|
||||||
|
:101FB800A84224D022F070020D682A4342601A68B1
|
||||||
|
:101FC800124882420ED0B2F1804F0BD0A0F5943067
|
||||||
|
:101FD800824207D000F58060824203D000F59C3031
|
||||||
|
:101FE800824204D124F0800489682143916001224F
|
||||||
|
:101FF80083F83D20002083F83C0030BC704722F471
|
||||||
|
:1020080070024D682A43D5E702207047002C014032
|
||||||
|
:1020180090F83C30012B3BD010B40246012380F8E5
|
||||||
|
:102028003C30CB6823F440738868034323F480630F
|
||||||
|
:102038004868034323F400630868034323F4805388
|
||||||
|
:102048000869034323F400534869034323F4804396
|
||||||
|
:10205800886A034323F47023886943EA00431068BD
|
||||||
|
:102068000C4CA04206D04364002082F83C005DF886
|
||||||
|
:10207800044B704723F470034C6A43EA045323F07B
|
||||||
|
:102088008073CC69234323F00073096A0B43EAE7A2
|
||||||
|
:1020980002207047002C0140026852E8003F23F4F8
|
||||||
|
:1020A800907342E800310029F6D1026802F1080372
|
||||||
|
:1020B80053E8003F23F00103083242E800310029C9
|
||||||
|
:1020C800F3D1036E012B06D02023C0F88030002303
|
||||||
|
:1020D800036683667047026852E8003F23F01003E6
|
||||||
|
:1020E80042E800310029F6D1EEE7000010B50446B9
|
||||||
|
:1020F800836802691A4343691A43C3691A4301682A
|
||||||
|
:102108000B6823F4164323F00C0313430B60026897
|
||||||
|
:10211800536823F44053C1680B4353608269036AD0
|
||||||
|
:102128001A4301688B6823F4306313438B60036898
|
||||||
|
:102138007B4A93421BD07B4A93422AD07A4A9342E5
|
||||||
|
:102148003BD07A4A93424BD0794A93425BD01023D2
|
||||||
|
:10215800E069B0F5004F00F08B80082B00F2DA80C0
|
||||||
|
:10216800DFE803F0B3C9B1D8CCD8D8D8CF00714BC9
|
||||||
|
:102178001B6B03F00303032B09D8DFE803F0020409
|
||||||
|
:1021880006570123E4E70423E2E70823E0E71023E6
|
||||||
|
:10219800DEE7684B1B6B03F44033B3F5003F47D0D1
|
||||||
|
:1021A80006D8002B46D0B3F5803F45D10423CFE7AE
|
||||||
|
:1021B800B3F5403F42D10223CAE75E4B1B6B03F4E1
|
||||||
|
:1021C8004023B3F5002F3BD005D8DBB3B3F5802F00
|
||||||
|
:1021D8003AD10423BCE7B3F5402F37D10223B7E740
|
||||||
|
:1021E800544B1B6B03F44013B3F5001F30D005D8D4
|
||||||
|
:1021F80083B3B3F5801F2FD10423A9E7B3F5401F9C
|
||||||
|
:102208002CD10223A4E74B4B1B6B03F44003B3F51B
|
||||||
|
:10221800000F25D005D82BB3B3F5800F24D10423A4
|
||||||
|
:1022280096E7B3F5400F21D1022391E702238FE708
|
||||||
|
:1022380008238DE700238BE7102389E7102387E71E
|
||||||
|
:10224800082385E7002383E7102381E710237FE72E
|
||||||
|
:1022580008237DE700237BE7102379E7102377E73E
|
||||||
|
:10226800082375E7002373E7102371E710236FE74E
|
||||||
|
:10227800082B49D8DFE803F0051F254822484848BD
|
||||||
|
:102288000900FFF757FA002840D06268530803EBAB
|
||||||
|
:102298004003B3FBF2F3A3F110014FF6EF72914242
|
||||||
|
:1022A80036D89AB222F00F02C3F3420313432268CE
|
||||||
|
:1022B800D36000201BE0FFF753FAE4E7FFF728F9A3
|
||||||
|
:1022C800E1E71D48E1E71C4802E0FFF733FA18B3DD
|
||||||
|
:1022D800636800EB5300B0FBF3F0A0F110024FF677
|
||||||
|
:1022E800EF739A421AD8236880B2D860002000237E
|
||||||
|
:1022F800A366E36610BDFFF733FAE8E7FFF708F9CE
|
||||||
|
:10230800E5E74FF40040E3E70120F0E70020EEE7BF
|
||||||
|
:102318000120ECE70120EAE70020E8E70120E6E7F2
|
||||||
|
:10232800003801400044004000480040004C004094
|
||||||
|
:10233800005000400010024000127A00436A13F077
|
||||||
|
:10234800010F06D00268536823F40033816A0B43F7
|
||||||
|
:102358005360436A13F0020F06D00268536823F4EF
|
||||||
|
:102368008033C16A0B435360436A13F0040F06D0ED
|
||||||
|
:102378000268536823F48023016B0B435360436A5C
|
||||||
|
:1023880013F0080F06D00268536823F40043416B2A
|
||||||
|
:102398000B435360436A13F0100F06D0026893682A
|
||||||
|
:1023A80023F48053816B0B439360436A13F0200F2F
|
||||||
|
:1023B80006D00268936823F40053C16B0B43936003
|
||||||
|
:1023C800436A13F0400F0AD00268536823F480135D
|
||||||
|
:1023D800016C0B435360036CB3F5801F0BD0436A49
|
||||||
|
:1023E80013F0800F06D00268536823F40023816C31
|
||||||
|
:1023F8000B43536070470268536823F4C003416C71
|
||||||
|
:102408000B435360EBE72DE9F84305460F461646A4
|
||||||
|
:102418009946DDF820802B68DC6937EA04040CBF94
|
||||||
|
:1024280001240024B44232D1B8F1FF3FF3D0FEF7C3
|
||||||
|
:102438009FFAA0EB090040452CD8B8F1000F2BD02B
|
||||||
|
:102448002B681A6812F0040FE5D0DA6912F0080F49
|
||||||
|
:1024580011D1DA6912F4006FDDD04FF400621A620C
|
||||||
|
:102468002846FFF719FE2023C5F88430002385F895
|
||||||
|
:10247800783003200CE008241C622846FFF70CFE85
|
||||||
|
:10248800C5F88440002385F87830012000E000205A
|
||||||
|
:10249800BDE8F8830320FBE70320F9E730B583B0F4
|
||||||
|
:1024A80004460023C0F88430FEF762FA0546226825
|
||||||
|
:1024B800126812F0080F0FD123681B6813F0040F7D
|
||||||
|
:1024C80026D12023E367C4F88030002020666066A8
|
||||||
|
:1024D80084F8780003B030BD6FF07E430093034664
|
||||||
|
:1024E80000224FF400112046FFF78DFF0028E3D0AB
|
||||||
|
:1024F800226852E8003F23F0800342E800310029B7
|
||||||
|
:10250800F6D12023E367002384F878300320E1E73D
|
||||||
|
:102518006FF07E4300932B4600224FF48001204643
|
||||||
|
:10252800FFF771FF0028CCD0226852E8003F23F45F
|
||||||
|
:10253800907342E800310029F6D1226802F10803BD
|
||||||
|
:1025480053E8003F23F00103083242E80031002934
|
||||||
|
:10255800F3D12023C4F88030002384F87830032096
|
||||||
|
:10256800B8E768B310B50446C36F03B32423E36721
|
||||||
|
:102578002268136823F0010313602046FFF7B6FDB5
|
||||||
|
:10258800012813D0636ABBB92268536823F49043C7
|
||||||
|
:1025980053602268936823F02A03936022681368C3
|
||||||
|
:1025A80043F0010313602046FFF778FF10BD80F861
|
||||||
|
:1025B8007830FEF74FF9D9E72046FFF7BFFEE3E78B
|
||||||
|
:1025C80001207047DFF834D0FEF784F90C480D4934
|
||||||
|
:1025D8000D4A002302E0D458C4500433C4188C4276
|
||||||
|
:1025E800F9D30A4A0A4C002301E013600432A242DC
|
||||||
|
:1025F800FBD300F019F8FDF7E1FFFEE700800020AB
|
||||||
|
:10260800000000200C000020D02600080C0000204C
|
||||||
|
:102618002C020020FEE702440346934200D1704793
|
||||||
|
:1026280003F8011BF9E7000070B50D4D0D4C641B54
|
||||||
|
:10263800A4100026A64209D10B4D0C4C00F018F846
|
||||||
|
:10264800641BA4100026A64205D170BD55F8043BB2
|
||||||
|
:1026580098470136EEE755F8043B98470136F2E70C
|
||||||
|
:10266800C8260008C8260008C8260008CC26000886
|
||||||
|
:10267800F8B500BFF8BC08BC9E467047F8B500BF67
|
||||||
|
:08268800F8BC08BC9E46704737
|
||||||
|
:102690000000000001020304000000000000000030
|
||||||
|
:1026A00001020304060708090102030405060708DE
|
||||||
|
:1026B000090A0B0C0D0E0F1002030405060708098A
|
||||||
|
:0826C0000A0B0C0D0E0F1010A7
|
||||||
|
:0426C800AD01000858
|
||||||
|
:0426CC008901000878
|
||||||
|
:0C26D00000127A00010000001000000061
|
||||||
|
:04000005080025CDFD
|
||||||
|
:00000001FF
|
3213
build/mvbms-test-24.map
Normal file
3213
build/mvbms-test-24.map
Normal file
File diff suppressed because it is too large
Load Diff
1
build/startup_stm32f302xc.d
Normal file
1
build/startup_stm32f302xc.d
Normal file
@ -0,0 +1 @@
|
|||||||
|
build/startup_stm32f302xc.o: startup_stm32f302xc.s
|
BIN
build/startup_stm32f302xc.o
Normal file
BIN
build/startup_stm32f302xc.o
Normal file
Binary file not shown.
65
build/stm32f3xx_hal.d
Normal file
65
build/stm32f3xx_hal.d
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
build/stm32f3xx_hal.o: Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
1528
build/stm32f3xx_hal.lst
Normal file
1528
build/stm32f3xx_hal.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal.o
Normal file
BIN
build/stm32f3xx_hal.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_can.d
Normal file
66
build/stm32f3xx_hal_can.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_can.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_can.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
7288
build/stm32f3xx_hal_can.lst
Normal file
7288
build/stm32f3xx_hal_can.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_can.o
Normal file
BIN
build/stm32f3xx_hal_can.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_cortex.d
Normal file
66
build/stm32f3xx_hal_cortex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_cortex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
5062
build/stm32f3xx_hal_cortex.lst
Normal file
5062
build/stm32f3xx_hal_cortex.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_cortex.o
Normal file
BIN
build/stm32f3xx_hal_cortex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_dma.d
Normal file
66
build/stm32f3xx_hal_dma.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_dma.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
3039
build/stm32f3xx_hal_dma.lst
Normal file
3039
build/stm32f3xx_hal_dma.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_dma.o
Normal file
BIN
build/stm32f3xx_hal_dma.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_exti.d
Normal file
66
build/stm32f3xx_hal_exti.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_exti.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
1820
build/stm32f3xx_hal_exti.lst
Normal file
1820
build/stm32f3xx_hal_exti.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_exti.o
Normal file
BIN
build/stm32f3xx_hal_exti.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_flash.d
Normal file
66
build/stm32f3xx_hal_flash.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_flash.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
2163
build/stm32f3xx_hal_flash.lst
Normal file
2163
build/stm32f3xx_hal_flash.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_flash.o
Normal file
BIN
build/stm32f3xx_hal_flash.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_flash_ex.d
Normal file
66
build/stm32f3xx_hal_flash_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_flash_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
4275
build/stm32f3xx_hal_flash_ex.lst
Normal file
4275
build/stm32f3xx_hal_flash_ex.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_flash_ex.o
Normal file
BIN
build/stm32f3xx_hal_flash_ex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_gpio.d
Normal file
66
build/stm32f3xx_hal_gpio.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_gpio.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
1690
build/stm32f3xx_hal_gpio.lst
Normal file
1690
build/stm32f3xx_hal_gpio.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_gpio.o
Normal file
BIN
build/stm32f3xx_hal_gpio.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_i2c.d
Normal file
66
build/stm32f3xx_hal_i2c.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_i2c.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
27414
build/stm32f3xx_hal_i2c.lst
Normal file
27414
build/stm32f3xx_hal_i2c.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_i2c.o
Normal file
BIN
build/stm32f3xx_hal_i2c.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_i2c_ex.d
Normal file
66
build/stm32f3xx_hal_i2c_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_i2c_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
915
build/stm32f3xx_hal_i2c_ex.lst
Normal file
915
build/stm32f3xx_hal_i2c_ex.lst
Normal file
@ -0,0 +1,915 @@
|
|||||||
|
ARM GAS /tmp/ccCBUPU1.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_i2c_ex.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c"
|
||||||
|
20 .section .text.HAL_I2CEx_ConfigAnalogFilter,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global HAL_I2CEx_ConfigAnalogFilter
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 HAL_I2CEx_ConfigAnalogFilter:
|
||||||
|
28 .LVL0:
|
||||||
|
29 .LFB130:
|
||||||
|
1:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
2:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ******************************************************************************
|
||||||
|
3:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @file stm32f3xx_hal_i2c_ex.c
|
||||||
|
4:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @author MCD Application Team
|
||||||
|
5:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief I2C Extended HAL module driver.
|
||||||
|
6:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * This file provides firmware functions to manage the following
|
||||||
|
7:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * functionalities of I2C Extended peripheral:
|
||||||
|
8:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * + Filter Mode Functions
|
||||||
|
9:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * + WakeUp Mode Functions
|
||||||
|
10:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * + FastModePlus Functions
|
||||||
|
11:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
12:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ******************************************************************************
|
||||||
|
13:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @attention
|
||||||
|
14:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
15:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * Copyright (c) 2016 STMicroelectronics.
|
||||||
|
16:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * All rights reserved.
|
||||||
|
17:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
18:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
19:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * in the root directory of this software component.
|
||||||
|
20:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
21:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
22:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ******************************************************************************
|
||||||
|
23:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @verbatim
|
||||||
|
24:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ==============================================================================
|
||||||
|
25:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ##### I2C peripheral Extended features #####
|
||||||
|
26:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ==============================================================================
|
||||||
|
27:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
28:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** [..] Comparing to other previous devices, the I2C interface for STM32F3xx
|
||||||
|
29:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** devices contains the following additional features
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
30:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
31:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Possibility to disable or enable Analog Noise Filter
|
||||||
|
32:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Use of a configured Digital Noise Filter
|
||||||
|
33:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Disable or enable wakeup from Stop mode(s)
|
||||||
|
34:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Disable or enable Fast Mode Plus
|
||||||
|
35:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
36:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ##### How to use this driver #####
|
||||||
|
37:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ==============================================================================
|
||||||
|
38:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** [..] This driver provides functions to configure Noise Filter and Wake Up Feature
|
||||||
|
39:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (#) Configure I2C Analog noise filter using the function HAL_I2CEx_ConfigAnalogFilter()
|
||||||
|
40:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (#) Configure I2C Digital noise filter using the function HAL_I2CEx_ConfigDigitalFilter()
|
||||||
|
41:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (#) Configure the enable or disable of I2C Wake Up Mode using the functions :
|
||||||
|
42:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (++) HAL_I2CEx_EnableWakeUp()
|
||||||
|
43:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (++) HAL_I2CEx_DisableWakeUp()
|
||||||
|
44:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (#) Configure the enable or disable of fast mode plus driving capability using the functions :
|
||||||
|
45:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (++) HAL_I2CEx_EnableFastModePlus()
|
||||||
|
46:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (++) HAL_I2CEx_DisableFastModePlus()
|
||||||
|
47:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @endverbatim
|
||||||
|
48:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
49:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
50:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Includes ------------------------------------------------------------------*/
|
||||||
|
51:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** #include "stm32f3xx_hal.h"
|
||||||
|
52:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
53:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /** @addtogroup STM32F3xx_HAL_Driver
|
||||||
|
54:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @{
|
||||||
|
55:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
56:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
57:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /** @defgroup I2CEx I2CEx
|
||||||
|
58:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief I2C Extended HAL module driver
|
||||||
|
59:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @{
|
||||||
|
60:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
61:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
62:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** #ifdef HAL_I2C_MODULE_ENABLED
|
||||||
|
63:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
64:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Private typedef -----------------------------------------------------------*/
|
||||||
|
65:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Private define ------------------------------------------------------------*/
|
||||||
|
66:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Private macro -------------------------------------------------------------*/
|
||||||
|
67:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Private variables ---------------------------------------------------------*/
|
||||||
|
68:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
|
69:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Private functions ---------------------------------------------------------*/
|
||||||
|
70:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
71:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions I2C Extended Exported Functions
|
||||||
|
72:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @{
|
||||||
|
73:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
74:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
75:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions_Group1 Filter Mode Functions
|
||||||
|
76:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Filter Mode Functions
|
||||||
|
77:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
78:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @verbatim
|
||||||
|
79:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ===============================================================================
|
||||||
|
80:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ##### Filter Mode Functions #####
|
||||||
|
81:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ===============================================================================
|
||||||
|
82:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** [..] This section provides functions allowing to:
|
||||||
|
83:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Configure Noise Filters
|
||||||
|
84:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
85:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @endverbatim
|
||||||
|
86:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @{
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
87:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
88:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
89:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
90:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Configure I2C Analog noise filter.
|
||||||
|
91:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
|
||||||
|
92:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
|
||||||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param AnalogFilter New state of the Analog filter.
|
||||||
|
94:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @retval HAL status
|
||||||
|
95:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
96:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *hi2c, uint32_t AnalogFilter)
|
||||||
|
97:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
30 .loc 1 97 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.
|
||||||
|
35 .loc 1 97 1 is_stmt 0 view .LVU1
|
||||||
|
36 0000 0346 mov r3, r0
|
||||||
|
98:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Check the parameters */
|
||||||
|
99:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance));
|
||||||
|
37 .loc 1 99 3 is_stmt 1 view .LVU2
|
||||||
|
100:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_ANALOG_FILTER(AnalogFilter));
|
||||||
|
38 .loc 1 100 3 view .LVU3
|
||||||
|
101:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
102:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
|
||||||
|
39 .loc 1 102 3 view .LVU4
|
||||||
|
40 .loc 1 102 11 is_stmt 0 view .LVU5
|
||||||
|
41 0002 90F84120 ldrb r2, [r0, #65] @ zero_extendqisi2
|
||||||
|
42 0006 D2B2 uxtb r2, r2
|
||||||
|
43 .loc 1 102 6 view .LVU6
|
||||||
|
44 0008 202A cmp r2, #32
|
||||||
|
45 000a 23D1 bne .L3
|
||||||
|
103:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
104:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Locked */
|
||||||
|
105:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
|
||||||
|
46 .loc 1 105 5 is_stmt 1 view .LVU7
|
||||||
|
47 .loc 1 105 5 view .LVU8
|
||||||
|
48 000c 90F84020 ldrb r2, [r0, #64] @ zero_extendqisi2
|
||||||
|
49 0010 012A cmp r2, #1
|
||||||
|
50 0012 21D0 beq .L4
|
||||||
|
51 .loc 1 105 5 discriminator 2 view .LVU9
|
||||||
|
52 0014 0122 movs r2, #1
|
||||||
|
53 0016 80F84020 strb r2, [r0, #64]
|
||||||
|
54 .loc 1 105 5 discriminator 2 view .LVU10
|
||||||
|
106:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
107:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
|
||||||
|
55 .loc 1 107 5 view .LVU11
|
||||||
|
56 .loc 1 107 17 is_stmt 0 view .LVU12
|
||||||
|
57 001a 2422 movs r2, #36
|
||||||
|
58 001c 80F84120 strb r2, [r0, #65]
|
||||||
|
108:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
109:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
|
||||||
|
110:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
|
||||||
|
59 .loc 1 110 5 is_stmt 1 view .LVU13
|
||||||
|
60 0020 0068 ldr r0, [r0]
|
||||||
|
61 .LVL1:
|
||||||
|
62 .loc 1 110 5 is_stmt 0 view .LVU14
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
63 0022 0268 ldr r2, [r0]
|
||||||
|
64 0024 22F00102 bic r2, r2, #1
|
||||||
|
65 0028 0260 str r2, [r0]
|
||||||
|
111:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
112:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Reset I2Cx ANOFF bit */
|
||||||
|
113:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->Instance->CR1 &= ~(I2C_CR1_ANFOFF);
|
||||||
|
66 .loc 1 113 5 is_stmt 1 view .LVU15
|
||||||
|
67 .loc 1 113 9 is_stmt 0 view .LVU16
|
||||||
|
68 002a 1868 ldr r0, [r3]
|
||||||
|
69 .loc 1 113 19 view .LVU17
|
||||||
|
70 002c 0268 ldr r2, [r0]
|
||||||
|
71 .loc 1 113 25 view .LVU18
|
||||||
|
72 002e 22F48052 bic r2, r2, #4096
|
||||||
|
73 0032 0260 str r2, [r0]
|
||||||
|
114:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
115:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Set analog filter bit*/
|
||||||
|
116:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->Instance->CR1 |= AnalogFilter;
|
||||||
|
74 .loc 1 116 5 is_stmt 1 view .LVU19
|
||||||
|
75 .loc 1 116 9 is_stmt 0 view .LVU20
|
||||||
|
76 0034 1868 ldr r0, [r3]
|
||||||
|
77 .loc 1 116 19 view .LVU21
|
||||||
|
78 0036 0268 ldr r2, [r0]
|
||||||
|
79 .loc 1 116 25 view .LVU22
|
||||||
|
80 0038 1143 orrs r1, r1, r2
|
||||||
|
81 .LVL2:
|
||||||
|
82 .loc 1 116 25 view .LVU23
|
||||||
|
83 003a 0160 str r1, [r0]
|
||||||
|
117:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
118:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
|
||||||
|
84 .loc 1 118 5 is_stmt 1 view .LVU24
|
||||||
|
85 003c 1968 ldr r1, [r3]
|
||||||
|
86 003e 0A68 ldr r2, [r1]
|
||||||
|
87 0040 42F00102 orr r2, r2, #1
|
||||||
|
88 0044 0A60 str r2, [r1]
|
||||||
|
119:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
120:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
|
||||||
|
89 .loc 1 120 5 view .LVU25
|
||||||
|
90 .loc 1 120 17 is_stmt 0 view .LVU26
|
||||||
|
91 0046 2022 movs r2, #32
|
||||||
|
92 0048 83F84120 strb r2, [r3, #65]
|
||||||
|
121:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
122:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Unlocked */
|
||||||
|
123:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
|
||||||
|
93 .loc 1 123 5 is_stmt 1 view .LVU27
|
||||||
|
94 .loc 1 123 5 view .LVU28
|
||||||
|
95 004c 0020 movs r0, #0
|
||||||
|
96 004e 83F84000 strb r0, [r3, #64]
|
||||||
|
97 .loc 1 123 5 view .LVU29
|
||||||
|
124:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
125:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_OK;
|
||||||
|
98 .loc 1 125 5 view .LVU30
|
||||||
|
99 .loc 1 125 12 is_stmt 0 view .LVU31
|
||||||
|
100 0052 7047 bx lr
|
||||||
|
101 .LVL3:
|
||||||
|
102 .L3:
|
||||||
|
126:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
127:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** else
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
128:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
129:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_BUSY;
|
||||||
|
103 .loc 1 129 12 view .LVU32
|
||||||
|
104 0054 0220 movs r0, #2
|
||||||
|
105 .LVL4:
|
||||||
|
106 .loc 1 129 12 view .LVU33
|
||||||
|
107 0056 7047 bx lr
|
||||||
|
108 .LVL5:
|
||||||
|
109 .L4:
|
||||||
|
105:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
110 .loc 1 105 5 discriminator 1 view .LVU34
|
||||||
|
111 0058 0220 movs r0, #2
|
||||||
|
112 .LVL6:
|
||||||
|
130:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
131:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
113 .loc 1 131 1 view .LVU35
|
||||||
|
114 005a 7047 bx lr
|
||||||
|
115 .cfi_endproc
|
||||||
|
116 .LFE130:
|
||||||
|
118 .section .text.HAL_I2CEx_ConfigDigitalFilter,"ax",%progbits
|
||||||
|
119 .align 1
|
||||||
|
120 .global HAL_I2CEx_ConfigDigitalFilter
|
||||||
|
121 .syntax unified
|
||||||
|
122 .thumb
|
||||||
|
123 .thumb_func
|
||||||
|
125 HAL_I2CEx_ConfigDigitalFilter:
|
||||||
|
126 .LVL7:
|
||||||
|
127 .LFB131:
|
||||||
|
132:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
133:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
134:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Configure I2C Digital noise filter.
|
||||||
|
135:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
|
||||||
|
136:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
|
||||||
|
137:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param DigitalFilter Coefficient of digital noise filter between Min_Data=0x00 and Max_Data=0x
|
||||||
|
138:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @retval HAL status
|
||||||
|
139:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
140:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *hi2c, uint32_t DigitalFilter)
|
||||||
|
141:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
128 .loc 1 141 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.
|
||||||
|
133 .loc 1 141 1 is_stmt 0 view .LVU37
|
||||||
|
134 0000 0346 mov r3, r0
|
||||||
|
142:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** uint32_t tmpreg;
|
||||||
|
135 .loc 1 142 3 is_stmt 1 view .LVU38
|
||||||
|
143:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
144:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Check the parameters */
|
||||||
|
145:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance));
|
||||||
|
136 .loc 1 145 3 view .LVU39
|
||||||
|
146:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_DIGITAL_FILTER(DigitalFilter));
|
||||||
|
137 .loc 1 146 3 view .LVU40
|
||||||
|
147:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
148:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
|
||||||
|
138 .loc 1 148 3 view .LVU41
|
||||||
|
139 .loc 1 148 11 is_stmt 0 view .LVU42
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 6
|
||||||
|
|
||||||
|
|
||||||
|
140 0002 90F84120 ldrb r2, [r0, #65] @ zero_extendqisi2
|
||||||
|
141 0006 D2B2 uxtb r2, r2
|
||||||
|
142 .loc 1 148 6 view .LVU43
|
||||||
|
143 0008 202A cmp r2, #32
|
||||||
|
144 000a 21D1 bne .L7
|
||||||
|
149:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
150:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Locked */
|
||||||
|
151:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
|
||||||
|
145 .loc 1 151 5 is_stmt 1 view .LVU44
|
||||||
|
146 .loc 1 151 5 view .LVU45
|
||||||
|
147 000c 90F84020 ldrb r2, [r0, #64] @ zero_extendqisi2
|
||||||
|
148 0010 012A cmp r2, #1
|
||||||
|
149 0012 1FD0 beq .L8
|
||||||
|
150 .loc 1 151 5 discriminator 2 view .LVU46
|
||||||
|
151 0014 0122 movs r2, #1
|
||||||
|
152 0016 80F84020 strb r2, [r0, #64]
|
||||||
|
153 .loc 1 151 5 discriminator 2 view .LVU47
|
||||||
|
152:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
153:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
|
||||||
|
154 .loc 1 153 5 view .LVU48
|
||||||
|
155 .loc 1 153 17 is_stmt 0 view .LVU49
|
||||||
|
156 001a 2422 movs r2, #36
|
||||||
|
157 001c 80F84120 strb r2, [r0, #65]
|
||||||
|
154:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
155:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
|
||||||
|
156:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
|
||||||
|
158 .loc 1 156 5 is_stmt 1 view .LVU50
|
||||||
|
159 0020 0068 ldr r0, [r0]
|
||||||
|
160 .LVL8:
|
||||||
|
161 .loc 1 156 5 is_stmt 0 view .LVU51
|
||||||
|
162 0022 0268 ldr r2, [r0]
|
||||||
|
163 0024 22F00102 bic r2, r2, #1
|
||||||
|
164 0028 0260 str r2, [r0]
|
||||||
|
157:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
158:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Get the old register value */
|
||||||
|
159:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** tmpreg = hi2c->Instance->CR1;
|
||||||
|
165 .loc 1 159 5 is_stmt 1 view .LVU52
|
||||||
|
166 .loc 1 159 18 is_stmt 0 view .LVU53
|
||||||
|
167 002a 1868 ldr r0, [r3]
|
||||||
|
168 .loc 1 159 12 view .LVU54
|
||||||
|
169 002c 0268 ldr r2, [r0]
|
||||||
|
170 .LVL9:
|
||||||
|
160:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
161:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Reset I2Cx DNF bits [11:8] */
|
||||||
|
162:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** tmpreg &= ~(I2C_CR1_DNF);
|
||||||
|
171 .loc 1 162 5 is_stmt 1 view .LVU55
|
||||||
|
172 .loc 1 162 12 is_stmt 0 view .LVU56
|
||||||
|
173 002e 22F47062 bic r2, r2, #3840
|
||||||
|
174 .LVL10:
|
||||||
|
163:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
164:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Set I2Cx DNF coefficient */
|
||||||
|
165:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** tmpreg |= DigitalFilter << 8U;
|
||||||
|
175 .loc 1 165 5 is_stmt 1 view .LVU57
|
||||||
|
176 .loc 1 165 12 is_stmt 0 view .LVU58
|
||||||
|
177 0032 42EA0122 orr r2, r2, r1, lsl #8
|
||||||
|
178 .LVL11:
|
||||||
|
166:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 7
|
||||||
|
|
||||||
|
|
||||||
|
167:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Store the new register value */
|
||||||
|
168:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->Instance->CR1 = tmpreg;
|
||||||
|
179 .loc 1 168 5 is_stmt 1 view .LVU59
|
||||||
|
180 .loc 1 168 25 is_stmt 0 view .LVU60
|
||||||
|
181 0036 0260 str r2, [r0]
|
||||||
|
169:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
170:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
|
||||||
|
182 .loc 1 170 5 is_stmt 1 view .LVU61
|
||||||
|
183 0038 1968 ldr r1, [r3]
|
||||||
|
184 .LVL12:
|
||||||
|
185 .loc 1 170 5 is_stmt 0 view .LVU62
|
||||||
|
186 003a 0A68 ldr r2, [r1]
|
||||||
|
187 .LVL13:
|
||||||
|
188 .loc 1 170 5 view .LVU63
|
||||||
|
189 003c 42F00102 orr r2, r2, #1
|
||||||
|
190 0040 0A60 str r2, [r1]
|
||||||
|
191 .LVL14:
|
||||||
|
171:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
172:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
|
||||||
|
192 .loc 1 172 5 is_stmt 1 view .LVU64
|
||||||
|
193 .loc 1 172 17 is_stmt 0 view .LVU65
|
||||||
|
194 0042 2022 movs r2, #32
|
||||||
|
195 0044 83F84120 strb r2, [r3, #65]
|
||||||
|
173:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
174:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Unlocked */
|
||||||
|
175:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
|
||||||
|
196 .loc 1 175 5 is_stmt 1 view .LVU66
|
||||||
|
197 .loc 1 175 5 view .LVU67
|
||||||
|
198 0048 0020 movs r0, #0
|
||||||
|
199 004a 83F84000 strb r0, [r3, #64]
|
||||||
|
200 .loc 1 175 5 view .LVU68
|
||||||
|
176:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
177:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_OK;
|
||||||
|
201 .loc 1 177 5 view .LVU69
|
||||||
|
202 .loc 1 177 12 is_stmt 0 view .LVU70
|
||||||
|
203 004e 7047 bx lr
|
||||||
|
204 .LVL15:
|
||||||
|
205 .L7:
|
||||||
|
178:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
179:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** else
|
||||||
|
180:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
181:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_BUSY;
|
||||||
|
206 .loc 1 181 12 view .LVU71
|
||||||
|
207 0050 0220 movs r0, #2
|
||||||
|
208 .LVL16:
|
||||||
|
209 .loc 1 181 12 view .LVU72
|
||||||
|
210 0052 7047 bx lr
|
||||||
|
211 .LVL17:
|
||||||
|
212 .L8:
|
||||||
|
151:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
213 .loc 1 151 5 discriminator 1 view .LVU73
|
||||||
|
214 0054 0220 movs r0, #2
|
||||||
|
215 .LVL18:
|
||||||
|
182:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
183:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
216 .loc 1 183 1 view .LVU74
|
||||||
|
217 0056 7047 bx lr
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 8
|
||||||
|
|
||||||
|
|
||||||
|
218 .cfi_endproc
|
||||||
|
219 .LFE131:
|
||||||
|
221 .section .text.HAL_I2CEx_EnableWakeUp,"ax",%progbits
|
||||||
|
222 .align 1
|
||||||
|
223 .global HAL_I2CEx_EnableWakeUp
|
||||||
|
224 .syntax unified
|
||||||
|
225 .thumb
|
||||||
|
226 .thumb_func
|
||||||
|
228 HAL_I2CEx_EnableWakeUp:
|
||||||
|
229 .LVL19:
|
||||||
|
230 .LFB132:
|
||||||
|
184:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
185:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @}
|
||||||
|
186:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
187:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
188:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions_Group2 WakeUp Mode Functions
|
||||||
|
189:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief WakeUp Mode Functions
|
||||||
|
190:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
191:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @verbatim
|
||||||
|
192:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ===============================================================================
|
||||||
|
193:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ##### WakeUp Mode Functions #####
|
||||||
|
194:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ===============================================================================
|
||||||
|
195:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** [..] This section provides functions allowing to:
|
||||||
|
196:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Configure Wake Up Feature
|
||||||
|
197:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
198:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @endverbatim
|
||||||
|
199:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @{
|
||||||
|
200:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
201:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
202:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
203:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Enable I2C wakeup from Stop mode(s).
|
||||||
|
204:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
|
||||||
|
205:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
|
||||||
|
206:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @retval HAL status
|
||||||
|
207:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
208:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *hi2c)
|
||||||
|
209:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
231 .loc 1 209 1 is_stmt 1 view -0
|
||||||
|
232 .cfi_startproc
|
||||||
|
233 @ args = 0, pretend = 0, frame = 0
|
||||||
|
234 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
235 @ link register save eliminated.
|
||||||
|
236 .loc 1 209 1 is_stmt 0 view .LVU76
|
||||||
|
237 0000 0346 mov r3, r0
|
||||||
|
210:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Check the parameters */
|
||||||
|
211:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hi2c->Instance));
|
||||||
|
238 .loc 1 211 3 is_stmt 1 view .LVU77
|
||||||
|
212:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
213:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
|
||||||
|
239 .loc 1 213 3 view .LVU78
|
||||||
|
240 .loc 1 213 11 is_stmt 0 view .LVU79
|
||||||
|
241 0002 90F84120 ldrb r2, [r0, #65] @ zero_extendqisi2
|
||||||
|
242 0006 D2B2 uxtb r2, r2
|
||||||
|
243 .loc 1 213 6 view .LVU80
|
||||||
|
244 0008 202A cmp r2, #32
|
||||||
|
245 000a 1FD1 bne .L11
|
||||||
|
214:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 9
|
||||||
|
|
||||||
|
|
||||||
|
215:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Locked */
|
||||||
|
216:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
|
||||||
|
246 .loc 1 216 5 is_stmt 1 view .LVU81
|
||||||
|
247 .loc 1 216 5 view .LVU82
|
||||||
|
248 000c 90F84020 ldrb r2, [r0, #64] @ zero_extendqisi2
|
||||||
|
249 0010 012A cmp r2, #1
|
||||||
|
250 0012 1DD0 beq .L12
|
||||||
|
251 .loc 1 216 5 discriminator 2 view .LVU83
|
||||||
|
252 0014 0122 movs r2, #1
|
||||||
|
253 0016 80F84020 strb r2, [r0, #64]
|
||||||
|
254 .loc 1 216 5 discriminator 2 view .LVU84
|
||||||
|
217:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
218:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
|
||||||
|
255 .loc 1 218 5 view .LVU85
|
||||||
|
256 .loc 1 218 17 is_stmt 0 view .LVU86
|
||||||
|
257 001a 2422 movs r2, #36
|
||||||
|
258 001c 80F84120 strb r2, [r0, #65]
|
||||||
|
219:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
220:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
|
||||||
|
221:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
|
||||||
|
259 .loc 1 221 5 is_stmt 1 view .LVU87
|
||||||
|
260 0020 0168 ldr r1, [r0]
|
||||||
|
261 0022 0A68 ldr r2, [r1]
|
||||||
|
262 0024 22F00102 bic r2, r2, #1
|
||||||
|
263 0028 0A60 str r2, [r1]
|
||||||
|
222:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
223:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Enable wakeup from stop mode */
|
||||||
|
224:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->Instance->CR1 |= I2C_CR1_WUPEN;
|
||||||
|
264 .loc 1 224 5 view .LVU88
|
||||||
|
265 .loc 1 224 9 is_stmt 0 view .LVU89
|
||||||
|
266 002a 0168 ldr r1, [r0]
|
||||||
|
267 .loc 1 224 19 view .LVU90
|
||||||
|
268 002c 0A68 ldr r2, [r1]
|
||||||
|
269 .loc 1 224 25 view .LVU91
|
||||||
|
270 002e 42F48022 orr r2, r2, #262144
|
||||||
|
271 0032 0A60 str r2, [r1]
|
||||||
|
225:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
226:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
|
||||||
|
272 .loc 1 226 5 is_stmt 1 view .LVU92
|
||||||
|
273 0034 0168 ldr r1, [r0]
|
||||||
|
274 0036 0A68 ldr r2, [r1]
|
||||||
|
275 0038 42F00102 orr r2, r2, #1
|
||||||
|
276 003c 0A60 str r2, [r1]
|
||||||
|
227:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
228:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
|
||||||
|
277 .loc 1 228 5 view .LVU93
|
||||||
|
278 .loc 1 228 17 is_stmt 0 view .LVU94
|
||||||
|
279 003e 2022 movs r2, #32
|
||||||
|
280 0040 80F84120 strb r2, [r0, #65]
|
||||||
|
229:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
230:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Unlocked */
|
||||||
|
231:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
|
||||||
|
281 .loc 1 231 5 is_stmt 1 view .LVU95
|
||||||
|
282 .loc 1 231 5 view .LVU96
|
||||||
|
283 0044 0020 movs r0, #0
|
||||||
|
284 .LVL20:
|
||||||
|
285 .loc 1 231 5 is_stmt 0 view .LVU97
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 10
|
||||||
|
|
||||||
|
|
||||||
|
286 0046 83F84000 strb r0, [r3, #64]
|
||||||
|
287 .loc 1 231 5 is_stmt 1 view .LVU98
|
||||||
|
232:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
233:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_OK;
|
||||||
|
288 .loc 1 233 5 view .LVU99
|
||||||
|
289 .loc 1 233 12 is_stmt 0 view .LVU100
|
||||||
|
290 004a 7047 bx lr
|
||||||
|
291 .LVL21:
|
||||||
|
292 .L11:
|
||||||
|
234:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
235:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** else
|
||||||
|
236:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
237:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_BUSY;
|
||||||
|
293 .loc 1 237 12 view .LVU101
|
||||||
|
294 004c 0220 movs r0, #2
|
||||||
|
295 .LVL22:
|
||||||
|
296 .loc 1 237 12 view .LVU102
|
||||||
|
297 004e 7047 bx lr
|
||||||
|
298 .LVL23:
|
||||||
|
299 .L12:
|
||||||
|
216:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
300 .loc 1 216 5 discriminator 1 view .LVU103
|
||||||
|
301 0050 0220 movs r0, #2
|
||||||
|
302 .LVL24:
|
||||||
|
238:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
239:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
303 .loc 1 239 1 view .LVU104
|
||||||
|
304 0052 7047 bx lr
|
||||||
|
305 .cfi_endproc
|
||||||
|
306 .LFE132:
|
||||||
|
308 .section .text.HAL_I2CEx_DisableWakeUp,"ax",%progbits
|
||||||
|
309 .align 1
|
||||||
|
310 .global HAL_I2CEx_DisableWakeUp
|
||||||
|
311 .syntax unified
|
||||||
|
312 .thumb
|
||||||
|
313 .thumb_func
|
||||||
|
315 HAL_I2CEx_DisableWakeUp:
|
||||||
|
316 .LVL25:
|
||||||
|
317 .LFB133:
|
||||||
|
240:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
241:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
242:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Disable I2C wakeup from Stop mode(s).
|
||||||
|
243:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
|
||||||
|
244:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
|
||||||
|
245:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @retval HAL status
|
||||||
|
246:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
247:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *hi2c)
|
||||||
|
248:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
318 .loc 1 248 1 is_stmt 1 view -0
|
||||||
|
319 .cfi_startproc
|
||||||
|
320 @ args = 0, pretend = 0, frame = 0
|
||||||
|
321 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
322 @ link register save eliminated.
|
||||||
|
323 .loc 1 248 1 is_stmt 0 view .LVU106
|
||||||
|
324 0000 0346 mov r3, r0
|
||||||
|
249:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Check the parameters */
|
||||||
|
250:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hi2c->Instance));
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 11
|
||||||
|
|
||||||
|
|
||||||
|
325 .loc 1 250 3 is_stmt 1 view .LVU107
|
||||||
|
251:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
252:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
|
||||||
|
326 .loc 1 252 3 view .LVU108
|
||||||
|
327 .loc 1 252 11 is_stmt 0 view .LVU109
|
||||||
|
328 0002 90F84120 ldrb r2, [r0, #65] @ zero_extendqisi2
|
||||||
|
329 0006 D2B2 uxtb r2, r2
|
||||||
|
330 .loc 1 252 6 view .LVU110
|
||||||
|
331 0008 202A cmp r2, #32
|
||||||
|
332 000a 1FD1 bne .L15
|
||||||
|
253:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
254:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Locked */
|
||||||
|
255:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
|
||||||
|
333 .loc 1 255 5 is_stmt 1 view .LVU111
|
||||||
|
334 .loc 1 255 5 view .LVU112
|
||||||
|
335 000c 90F84020 ldrb r2, [r0, #64] @ zero_extendqisi2
|
||||||
|
336 0010 012A cmp r2, #1
|
||||||
|
337 0012 1DD0 beq .L16
|
||||||
|
338 .loc 1 255 5 discriminator 2 view .LVU113
|
||||||
|
339 0014 0122 movs r2, #1
|
||||||
|
340 0016 80F84020 strb r2, [r0, #64]
|
||||||
|
341 .loc 1 255 5 discriminator 2 view .LVU114
|
||||||
|
256:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
257:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
|
||||||
|
342 .loc 1 257 5 view .LVU115
|
||||||
|
343 .loc 1 257 17 is_stmt 0 view .LVU116
|
||||||
|
344 001a 2422 movs r2, #36
|
||||||
|
345 001c 80F84120 strb r2, [r0, #65]
|
||||||
|
258:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
259:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
|
||||||
|
260:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
|
||||||
|
346 .loc 1 260 5 is_stmt 1 view .LVU117
|
||||||
|
347 0020 0168 ldr r1, [r0]
|
||||||
|
348 0022 0A68 ldr r2, [r1]
|
||||||
|
349 0024 22F00102 bic r2, r2, #1
|
||||||
|
350 0028 0A60 str r2, [r1]
|
||||||
|
261:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
262:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Enable wakeup from stop mode */
|
||||||
|
263:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->Instance->CR1 &= ~(I2C_CR1_WUPEN);
|
||||||
|
351 .loc 1 263 5 view .LVU118
|
||||||
|
352 .loc 1 263 9 is_stmt 0 view .LVU119
|
||||||
|
353 002a 0168 ldr r1, [r0]
|
||||||
|
354 .loc 1 263 19 view .LVU120
|
||||||
|
355 002c 0A68 ldr r2, [r1]
|
||||||
|
356 .loc 1 263 25 view .LVU121
|
||||||
|
357 002e 22F48022 bic r2, r2, #262144
|
||||||
|
358 0032 0A60 str r2, [r1]
|
||||||
|
264:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
265:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
|
||||||
|
359 .loc 1 265 5 is_stmt 1 view .LVU122
|
||||||
|
360 0034 0168 ldr r1, [r0]
|
||||||
|
361 0036 0A68 ldr r2, [r1]
|
||||||
|
362 0038 42F00102 orr r2, r2, #1
|
||||||
|
363 003c 0A60 str r2, [r1]
|
||||||
|
266:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
267:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
|
||||||
|
364 .loc 1 267 5 view .LVU123
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 12
|
||||||
|
|
||||||
|
|
||||||
|
365 .loc 1 267 17 is_stmt 0 view .LVU124
|
||||||
|
366 003e 2022 movs r2, #32
|
||||||
|
367 0040 80F84120 strb r2, [r0, #65]
|
||||||
|
268:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
269:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Process Unlocked */
|
||||||
|
270:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
|
||||||
|
368 .loc 1 270 5 is_stmt 1 view .LVU125
|
||||||
|
369 .loc 1 270 5 view .LVU126
|
||||||
|
370 0044 0020 movs r0, #0
|
||||||
|
371 .LVL26:
|
||||||
|
372 .loc 1 270 5 is_stmt 0 view .LVU127
|
||||||
|
373 0046 83F84000 strb r0, [r3, #64]
|
||||||
|
374 .loc 1 270 5 is_stmt 1 view .LVU128
|
||||||
|
271:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
272:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_OK;
|
||||||
|
375 .loc 1 272 5 view .LVU129
|
||||||
|
376 .loc 1 272 12 is_stmt 0 view .LVU130
|
||||||
|
377 004a 7047 bx lr
|
||||||
|
378 .LVL27:
|
||||||
|
379 .L15:
|
||||||
|
273:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
274:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** else
|
||||||
|
275:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
276:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** return HAL_BUSY;
|
||||||
|
380 .loc 1 276 12 view .LVU131
|
||||||
|
381 004c 0220 movs r0, #2
|
||||||
|
382 .LVL28:
|
||||||
|
383 .loc 1 276 12 view .LVU132
|
||||||
|
384 004e 7047 bx lr
|
||||||
|
385 .LVL29:
|
||||||
|
386 .L16:
|
||||||
|
255:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
387 .loc 1 255 5 discriminator 1 view .LVU133
|
||||||
|
388 0050 0220 movs r0, #2
|
||||||
|
389 .LVL30:
|
||||||
|
277:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
278:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
390 .loc 1 278 1 view .LVU134
|
||||||
|
391 0052 7047 bx lr
|
||||||
|
392 .cfi_endproc
|
||||||
|
393 .LFE133:
|
||||||
|
395 .section .text.HAL_I2CEx_EnableFastModePlus,"ax",%progbits
|
||||||
|
396 .align 1
|
||||||
|
397 .global HAL_I2CEx_EnableFastModePlus
|
||||||
|
398 .syntax unified
|
||||||
|
399 .thumb
|
||||||
|
400 .thumb_func
|
||||||
|
402 HAL_I2CEx_EnableFastModePlus:
|
||||||
|
403 .LVL31:
|
||||||
|
404 .LFB134:
|
||||||
|
279:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
280:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @}
|
||||||
|
281:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
282:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
283:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions_Group3 Fast Mode Plus Functions
|
||||||
|
284:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Fast Mode Plus Functions
|
||||||
|
285:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** *
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 13
|
||||||
|
|
||||||
|
|
||||||
|
286:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @verbatim
|
||||||
|
287:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ===============================================================================
|
||||||
|
288:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ##### Fast Mode Plus Functions #####
|
||||||
|
289:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** ===============================================================================
|
||||||
|
290:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** [..] This section provides functions allowing to:
|
||||||
|
291:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** (+) Configure Fast Mode Plus
|
||||||
|
292:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
293:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** @endverbatim
|
||||||
|
294:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @{
|
||||||
|
295:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
296:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
297:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
298:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Enable the I2C fast mode plus driving capability.
|
||||||
|
299:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param ConfigFastModePlus Selects the pin.
|
||||||
|
300:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * This parameter can be one of the @ref I2CEx_FastModePlus values
|
||||||
|
301:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For I2C1, fast mode plus driving capability can be enabled on all selected
|
||||||
|
302:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * I2C1 pins using I2C_FASTMODEPLUS_I2C1 parameter or independently
|
||||||
|
303:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * on each one of the following pins PB6, PB7, PB8 and PB9.
|
||||||
|
304:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability
|
||||||
|
305:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * can be enabled only by using I2C_FASTMODEPLUS_I2C1 parameter.
|
||||||
|
306:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For all I2C2 pins fast mode plus driving capability can be enabled
|
||||||
|
307:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C2 parameter.
|
||||||
|
308:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For all I2C3 pins fast mode plus driving capability can be enabled
|
||||||
|
309:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C3 parameter.
|
||||||
|
310:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @retval None
|
||||||
|
311:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
312:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** void HAL_I2CEx_EnableFastModePlus(uint32_t ConfigFastModePlus)
|
||||||
|
313:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
405 .loc 1 313 1 is_stmt 1 view -0
|
||||||
|
406 .cfi_startproc
|
||||||
|
407 @ args = 0, pretend = 0, frame = 8
|
||||||
|
408 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
409 @ link register save eliminated.
|
||||||
|
410 .loc 1 313 1 is_stmt 0 view .LVU136
|
||||||
|
411 0000 82B0 sub sp, sp, #8
|
||||||
|
412 .cfi_def_cfa_offset 8
|
||||||
|
314:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Check the parameter */
|
||||||
|
315:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_FASTMODEPLUS(ConfigFastModePlus));
|
||||||
|
413 .loc 1 315 3 is_stmt 1 view .LVU137
|
||||||
|
316:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
317:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Enable SYSCFG clock */
|
||||||
|
318:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_RCC_SYSCFG_CLK_ENABLE();
|
||||||
|
414 .loc 1 318 3 view .LVU138
|
||||||
|
415 .LBB2:
|
||||||
|
416 .loc 1 318 3 view .LVU139
|
||||||
|
417 .loc 1 318 3 view .LVU140
|
||||||
|
418 0002 084B ldr r3, .L19
|
||||||
|
419 0004 9A69 ldr r2, [r3, #24]
|
||||||
|
420 0006 42F00102 orr r2, r2, #1
|
||||||
|
421 000a 9A61 str r2, [r3, #24]
|
||||||
|
422 .loc 1 318 3 view .LVU141
|
||||||
|
423 000c 9B69 ldr r3, [r3, #24]
|
||||||
|
424 000e 03F00103 and r3, r3, #1
|
||||||
|
425 0012 0193 str r3, [sp, #4]
|
||||||
|
426 .loc 1 318 3 view .LVU142
|
||||||
|
427 0014 019B ldr r3, [sp, #4]
|
||||||
|
428 .LBE2:
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 14
|
||||||
|
|
||||||
|
|
||||||
|
429 .loc 1 318 3 view .LVU143
|
||||||
|
319:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
320:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Enable fast mode plus driving capability for selected pin */
|
||||||
|
321:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** SET_BIT(SYSCFG->CFGR1, (uint32_t)ConfigFastModePlus);
|
||||||
|
430 .loc 1 321 3 view .LVU144
|
||||||
|
431 0016 044A ldr r2, .L19+4
|
||||||
|
432 0018 1368 ldr r3, [r2]
|
||||||
|
433 001a 0343 orrs r3, r3, r0
|
||||||
|
434 001c 1360 str r3, [r2]
|
||||||
|
322:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
435 .loc 1 322 1 is_stmt 0 view .LVU145
|
||||||
|
436 001e 02B0 add sp, sp, #8
|
||||||
|
437 .cfi_def_cfa_offset 0
|
||||||
|
438 @ sp needed
|
||||||
|
439 0020 7047 bx lr
|
||||||
|
440 .L20:
|
||||||
|
441 0022 00BF .align 2
|
||||||
|
442 .L19:
|
||||||
|
443 0024 00100240 .word 1073876992
|
||||||
|
444 0028 00000140 .word 1073807360
|
||||||
|
445 .cfi_endproc
|
||||||
|
446 .LFE134:
|
||||||
|
448 .section .text.HAL_I2CEx_DisableFastModePlus,"ax",%progbits
|
||||||
|
449 .align 1
|
||||||
|
450 .global HAL_I2CEx_DisableFastModePlus
|
||||||
|
451 .syntax unified
|
||||||
|
452 .thumb
|
||||||
|
453 .thumb_func
|
||||||
|
455 HAL_I2CEx_DisableFastModePlus:
|
||||||
|
456 .LVL32:
|
||||||
|
457 .LFB135:
|
||||||
|
323:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
324:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /**
|
||||||
|
325:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @brief Disable the I2C fast mode plus driving capability.
|
||||||
|
326:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @param ConfigFastModePlus Selects the pin.
|
||||||
|
327:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * This parameter can be one of the @ref I2CEx_FastModePlus values
|
||||||
|
328:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For I2C1, fast mode plus driving capability can be disabled on all selected
|
||||||
|
329:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * I2C1 pins using I2C_FASTMODEPLUS_I2C1 parameter or independently
|
||||||
|
330:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * on each one of the following pins PB6, PB7, PB8 and PB9.
|
||||||
|
331:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability
|
||||||
|
332:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * can be disabled only by using I2C_FASTMODEPLUS_I2C1 parameter.
|
||||||
|
333:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For all I2C2 pins fast mode plus driving capability can be disabled
|
||||||
|
334:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C2 parameter.
|
||||||
|
335:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @note For all I2C3 pins fast mode plus driving capability can be disabled
|
||||||
|
336:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C3 parameter.
|
||||||
|
337:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** * @retval None
|
||||||
|
338:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** */
|
||||||
|
339:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** void HAL_I2CEx_DisableFastModePlus(uint32_t ConfigFastModePlus)
|
||||||
|
340:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** {
|
||||||
|
458 .loc 1 340 1 is_stmt 1 view -0
|
||||||
|
459 .cfi_startproc
|
||||||
|
460 @ args = 0, pretend = 0, frame = 8
|
||||||
|
461 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
462 @ link register save eliminated.
|
||||||
|
463 .loc 1 340 1 is_stmt 0 view .LVU147
|
||||||
|
464 0000 82B0 sub sp, sp, #8
|
||||||
|
465 .cfi_def_cfa_offset 8
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 15
|
||||||
|
|
||||||
|
|
||||||
|
341:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Check the parameter */
|
||||||
|
342:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** assert_param(IS_I2C_FASTMODEPLUS(ConfigFastModePlus));
|
||||||
|
466 .loc 1 342 3 is_stmt 1 view .LVU148
|
||||||
|
343:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
344:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Enable SYSCFG clock */
|
||||||
|
345:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** __HAL_RCC_SYSCFG_CLK_ENABLE();
|
||||||
|
467 .loc 1 345 3 view .LVU149
|
||||||
|
468 .LBB3:
|
||||||
|
469 .loc 1 345 3 view .LVU150
|
||||||
|
470 .loc 1 345 3 view .LVU151
|
||||||
|
471 0002 084B ldr r3, .L23
|
||||||
|
472 0004 9A69 ldr r2, [r3, #24]
|
||||||
|
473 0006 42F00102 orr r2, r2, #1
|
||||||
|
474 000a 9A61 str r2, [r3, #24]
|
||||||
|
475 .loc 1 345 3 view .LVU152
|
||||||
|
476 000c 9B69 ldr r3, [r3, #24]
|
||||||
|
477 000e 03F00103 and r3, r3, #1
|
||||||
|
478 0012 0193 str r3, [sp, #4]
|
||||||
|
479 .loc 1 345 3 view .LVU153
|
||||||
|
480 0014 019B ldr r3, [sp, #4]
|
||||||
|
481 .LBE3:
|
||||||
|
482 .loc 1 345 3 view .LVU154
|
||||||
|
346:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c ****
|
||||||
|
347:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** /* Disable fast mode plus driving capability for selected pin */
|
||||||
|
348:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** CLEAR_BIT(SYSCFG->CFGR1, (uint32_t)ConfigFastModePlus);
|
||||||
|
483 .loc 1 348 3 view .LVU155
|
||||||
|
484 0016 044A ldr r2, .L23+4
|
||||||
|
485 0018 1368 ldr r3, [r2]
|
||||||
|
486 001a 23EA0003 bic r3, r3, r0
|
||||||
|
487 001e 1360 str r3, [r2]
|
||||||
|
349:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c **** }
|
||||||
|
488 .loc 1 349 1 is_stmt 0 view .LVU156
|
||||||
|
489 0020 02B0 add sp, sp, #8
|
||||||
|
490 .cfi_def_cfa_offset 0
|
||||||
|
491 @ sp needed
|
||||||
|
492 0022 7047 bx lr
|
||||||
|
493 .L24:
|
||||||
|
494 .align 2
|
||||||
|
495 .L23:
|
||||||
|
496 0024 00100240 .word 1073876992
|
||||||
|
497 0028 00000140 .word 1073807360
|
||||||
|
498 .cfi_endproc
|
||||||
|
499 .LFE135:
|
||||||
|
501 .text
|
||||||
|
502 .Letext0:
|
||||||
|
503 .file 2 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
504 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
505 .file 4 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h"
|
||||||
|
506 .file 5 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h"
|
||||||
|
507 .file 6 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h"
|
||||||
|
508 .file 7 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h"
|
||||||
|
ARM GAS /tmp/ccCBUPU1.s page 16
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 stm32f3xx_hal_i2c_ex.c
|
||||||
|
/tmp/ccCBUPU1.s:21 .text.HAL_I2CEx_ConfigAnalogFilter:00000000 $t
|
||||||
|
/tmp/ccCBUPU1.s:27 .text.HAL_I2CEx_ConfigAnalogFilter:00000000 HAL_I2CEx_ConfigAnalogFilter
|
||||||
|
/tmp/ccCBUPU1.s:119 .text.HAL_I2CEx_ConfigDigitalFilter:00000000 $t
|
||||||
|
/tmp/ccCBUPU1.s:125 .text.HAL_I2CEx_ConfigDigitalFilter:00000000 HAL_I2CEx_ConfigDigitalFilter
|
||||||
|
/tmp/ccCBUPU1.s:222 .text.HAL_I2CEx_EnableWakeUp:00000000 $t
|
||||||
|
/tmp/ccCBUPU1.s:228 .text.HAL_I2CEx_EnableWakeUp:00000000 HAL_I2CEx_EnableWakeUp
|
||||||
|
/tmp/ccCBUPU1.s:309 .text.HAL_I2CEx_DisableWakeUp:00000000 $t
|
||||||
|
/tmp/ccCBUPU1.s:315 .text.HAL_I2CEx_DisableWakeUp:00000000 HAL_I2CEx_DisableWakeUp
|
||||||
|
/tmp/ccCBUPU1.s:396 .text.HAL_I2CEx_EnableFastModePlus:00000000 $t
|
||||||
|
/tmp/ccCBUPU1.s:402 .text.HAL_I2CEx_EnableFastModePlus:00000000 HAL_I2CEx_EnableFastModePlus
|
||||||
|
/tmp/ccCBUPU1.s:443 .text.HAL_I2CEx_EnableFastModePlus:00000024 $d
|
||||||
|
/tmp/ccCBUPU1.s:449 .text.HAL_I2CEx_DisableFastModePlus:00000000 $t
|
||||||
|
/tmp/ccCBUPU1.s:455 .text.HAL_I2CEx_DisableFastModePlus:00000000 HAL_I2CEx_DisableFastModePlus
|
||||||
|
/tmp/ccCBUPU1.s:496 .text.HAL_I2CEx_DisableFastModePlus:00000024 $d
|
||||||
|
|
||||||
|
NO UNDEFINED SYMBOLS
|
BIN
build/stm32f3xx_hal_i2c_ex.o
Normal file
BIN
build/stm32f3xx_hal_i2c_ex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_msp.d
Normal file
66
build/stm32f3xx_hal_msp.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_msp.o: Core/Src/stm32f3xx_hal_msp.c Core/Inc/main.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Core/Inc/main.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
1822
build/stm32f3xx_hal_msp.lst
Normal file
1822
build/stm32f3xx_hal_msp.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_msp.o
Normal file
BIN
build/stm32f3xx_hal_msp.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_pwr.d
Normal file
66
build/stm32f3xx_hal_pwr.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_pwr.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
989
build/stm32f3xx_hal_pwr.lst
Normal file
989
build/stm32f3xx_hal_pwr.lst
Normal file
@ -0,0 +1,989 @@
|
|||||||
|
ARM GAS /tmp/cc53YuwZ.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.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c"
|
||||||
|
20 .section .text.HAL_PWR_DeInit,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global HAL_PWR_DeInit
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 HAL_PWR_DeInit:
|
||||||
|
28 .LFB130:
|
||||||
|
1:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
2:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ******************************************************************************
|
||||||
|
3:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @file stm32f3xx_hal_pwr.c
|
||||||
|
4:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @author MCD Application Team
|
||||||
|
5:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief PWR HAL module driver.
|
||||||
|
6:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This file provides firmware functions to manage the following
|
||||||
|
7:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * functionalities of the Power Controller (PWR) peripheral:
|
||||||
|
8:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * + Initialization/de-initialization functions
|
||||||
|
9:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * + Peripheral Control functions
|
||||||
|
10:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *
|
||||||
|
11:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ******************************************************************************
|
||||||
|
12:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @attention
|
||||||
|
13:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *
|
||||||
|
14:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * Copyright (c) 2016 STMicroelectronics.
|
||||||
|
15:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * All rights reserved.
|
||||||
|
16:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *
|
||||||
|
17:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
18:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * in the root directory of this software component.
|
||||||
|
19:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
20:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *
|
||||||
|
21:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ******************************************************************************
|
||||||
|
22:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
23:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
24:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Includes ------------------------------------------------------------------*/
|
||||||
|
25:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** #include "stm32f3xx_hal.h"
|
||||||
|
26:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
27:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /** @addtogroup STM32F3xx_HAL_Driver
|
||||||
|
28:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @{
|
||||||
|
29:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
30:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
31:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /** @defgroup PWR PWR
|
||||||
|
32:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief PWR HAL module driver
|
||||||
|
33:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @{
|
||||||
|
34:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
35:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
36:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** #ifdef HAL_PWR_MODULE_ENABLED
|
||||||
|
37:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
38:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Private typedef -----------------------------------------------------------*/
|
||||||
|
39:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Private define ------------------------------------------------------------*/
|
||||||
|
40:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Private macro -------------------------------------------------------------*/
|
||||||
|
41:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Private variables ---------------------------------------------------------*/
|
||||||
|
42:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
|
43:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Private functions ---------------------------------------------------------*/
|
||||||
|
44:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
45:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /** @defgroup PWR_Exported_Functions PWR Exported Functions
|
||||||
|
46:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @{
|
||||||
|
47:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
48:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
49:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /** @defgroup PWR_Exported_Functions_Group1 Initialization and de-initialization functions
|
||||||
|
50:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Initialization and de-initialization functions
|
||||||
|
51:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *
|
||||||
|
52:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** @verbatim
|
||||||
|
53:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ===============================================================================
|
||||||
|
54:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ##### Initialization and de-initialization functions #####
|
||||||
|
55:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ===============================================================================
|
||||||
|
56:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
57:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** After reset, the backup domain (RTC registers, RTC backup data
|
||||||
|
58:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** registers and backup SRAM) is protected against possible unwanted
|
||||||
|
59:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** write accesses.
|
||||||
|
60:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** To enable access to the RTC Domain and RTC registers, proceed as follows:
|
||||||
|
61:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Enable the Power Controller (PWR) APB1 interface clock using the
|
||||||
|
62:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __HAL_RCC_PWR_CLK_ENABLE() macro.
|
||||||
|
63:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Enable access to RTC domain using the HAL_PWR_EnableBkUpAccess() function.
|
||||||
|
64:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
65:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** @endverbatim
|
||||||
|
66:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @{
|
||||||
|
67:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
68:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
69:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
70:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Deinitializes the PWR peripheral registers to their default reset values.
|
||||||
|
71:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
72:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
73:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_DeInit(void)
|
||||||
|
74:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
29 .loc 1 74 1 view -0
|
||||||
|
30 .cfi_startproc
|
||||||
|
31 @ args = 0, pretend = 0, frame = 0
|
||||||
|
32 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
33 @ link register save eliminated.
|
||||||
|
75:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __HAL_RCC_PWR_FORCE_RESET();
|
||||||
|
34 .loc 1 75 3 view .LVU1
|
||||||
|
35 0000 044B ldr r3, .L2
|
||||||
|
36 0002 1A69 ldr r2, [r3, #16]
|
||||||
|
37 0004 42F08052 orr r2, r2, #268435456
|
||||||
|
38 0008 1A61 str r2, [r3, #16]
|
||||||
|
76:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __HAL_RCC_PWR_RELEASE_RESET();
|
||||||
|
39 .loc 1 76 3 view .LVU2
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
40 000a 1A69 ldr r2, [r3, #16]
|
||||||
|
41 000c 22F08052 bic r2, r2, #268435456
|
||||||
|
42 0010 1A61 str r2, [r3, #16]
|
||||||
|
77:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
43 .loc 1 77 1 is_stmt 0 view .LVU3
|
||||||
|
44 0012 7047 bx lr
|
||||||
|
45 .L3:
|
||||||
|
46 .align 2
|
||||||
|
47 .L2:
|
||||||
|
48 0014 00100240 .word 1073876992
|
||||||
|
49 .cfi_endproc
|
||||||
|
50 .LFE130:
|
||||||
|
52 .section .text.HAL_PWR_EnableBkUpAccess,"ax",%progbits
|
||||||
|
53 .align 1
|
||||||
|
54 .global HAL_PWR_EnableBkUpAccess
|
||||||
|
55 .syntax unified
|
||||||
|
56 .thumb
|
||||||
|
57 .thumb_func
|
||||||
|
59 HAL_PWR_EnableBkUpAccess:
|
||||||
|
60 .LFB131:
|
||||||
|
78:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
79:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
80:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Enables access to the backup domain (RTC registers, RTC
|
||||||
|
81:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * backup data registers and backup SRAM).
|
||||||
|
82:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note If the HSE divided by 32 is used as the RTC clock, the
|
||||||
|
83:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * Backup Domain Access should be kept enabled.
|
||||||
|
84:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
85:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
86:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnableBkUpAccess(void)
|
||||||
|
87:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
61 .loc 1 87 1 is_stmt 1 view -0
|
||||||
|
62 .cfi_startproc
|
||||||
|
63 @ args = 0, pretend = 0, frame = 0
|
||||||
|
64 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
65 @ link register save eliminated.
|
||||||
|
88:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SET_BIT(PWR->CR, PWR_CR_DBP);
|
||||||
|
66 .loc 1 88 3 view .LVU5
|
||||||
|
67 0000 024A ldr r2, .L5
|
||||||
|
68 0002 1368 ldr r3, [r2]
|
||||||
|
69 0004 43F48073 orr r3, r3, #256
|
||||||
|
70 0008 1360 str r3, [r2]
|
||||||
|
89:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
71 .loc 1 89 1 is_stmt 0 view .LVU6
|
||||||
|
72 000a 7047 bx lr
|
||||||
|
73 .L6:
|
||||||
|
74 .align 2
|
||||||
|
75 .L5:
|
||||||
|
76 000c 00700040 .word 1073770496
|
||||||
|
77 .cfi_endproc
|
||||||
|
78 .LFE131:
|
||||||
|
80 .section .text.HAL_PWR_DisableBkUpAccess,"ax",%progbits
|
||||||
|
81 .align 1
|
||||||
|
82 .global HAL_PWR_DisableBkUpAccess
|
||||||
|
83 .syntax unified
|
||||||
|
84 .thumb
|
||||||
|
85 .thumb_func
|
||||||
|
87 HAL_PWR_DisableBkUpAccess:
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
88 .LFB132:
|
||||||
|
90:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
91:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
92:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Disables access to the backup domain (RTC registers, RTC
|
||||||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * backup data registers and backup SRAM).
|
||||||
|
94:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note If the HSE divided by 32 is used as the RTC clock, the
|
||||||
|
95:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * Backup Domain Access should be kept enabled.
|
||||||
|
96:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
97:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
98:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_DisableBkUpAccess(void)
|
||||||
|
99:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
89 .loc 1 99 1 is_stmt 1 view -0
|
||||||
|
90 .cfi_startproc
|
||||||
|
91 @ args = 0, pretend = 0, frame = 0
|
||||||
|
92 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
93 @ link register save eliminated.
|
||||||
|
100:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** CLEAR_BIT(PWR->CR, PWR_CR_DBP);
|
||||||
|
94 .loc 1 100 3 view .LVU8
|
||||||
|
95 0000 024A ldr r2, .L8
|
||||||
|
96 0002 1368 ldr r3, [r2]
|
||||||
|
97 0004 23F48073 bic r3, r3, #256
|
||||||
|
98 0008 1360 str r3, [r2]
|
||||||
|
101:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
99 .loc 1 101 1 is_stmt 0 view .LVU9
|
||||||
|
100 000a 7047 bx lr
|
||||||
|
101 .L9:
|
||||||
|
102 .align 2
|
||||||
|
103 .L8:
|
||||||
|
104 000c 00700040 .word 1073770496
|
||||||
|
105 .cfi_endproc
|
||||||
|
106 .LFE132:
|
||||||
|
108 .section .text.HAL_PWR_EnableWakeUpPin,"ax",%progbits
|
||||||
|
109 .align 1
|
||||||
|
110 .global HAL_PWR_EnableWakeUpPin
|
||||||
|
111 .syntax unified
|
||||||
|
112 .thumb
|
||||||
|
113 .thumb_func
|
||||||
|
115 HAL_PWR_EnableWakeUpPin:
|
||||||
|
116 .LVL0:
|
||||||
|
117 .LFB133:
|
||||||
|
102:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
103:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
104:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @}
|
||||||
|
105:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
106:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
107:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /** @defgroup PWR_Exported_Functions_Group2 Peripheral Control functions
|
||||||
|
108:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Low Power modes configuration functions
|
||||||
|
109:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *
|
||||||
|
110:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** @verbatim
|
||||||
|
111:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
112:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ===============================================================================
|
||||||
|
113:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ##### Peripheral Control functions #####
|
||||||
|
114:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ===============================================================================
|
||||||
|
115:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
116:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** WakeUp pin configuration ***
|
||||||
|
117:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ================================
|
||||||
|
118:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
119:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) WakeUp pin is used to wakeup the system from Standby mode. This pin is
|
||||||
|
120:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** forced in input pull down configuration and is active on rising edges.
|
||||||
|
121:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) There are up to three WakeUp pins:
|
||||||
|
122:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++)WakeUp Pin 1 on PA.00.
|
||||||
|
123:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++)WakeUp Pin 2 on PC.13 (STM32F303xC, STM32F303xE only).
|
||||||
|
124:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++)WakeUp Pin 3 on PE.06.
|
||||||
|
125:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
126:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** Main and Backup Regulators configuration ***
|
||||||
|
127:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ================================================
|
||||||
|
128:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
129:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) When the backup domain is supplied by VDD (analog switch connected to VDD)
|
||||||
|
130:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** the backup SRAM is powered from VDD which replaces the VBAT power supply to
|
||||||
|
131:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** save battery life.
|
||||||
|
132:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
133:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) The backup SRAM is not mass erased by a tamper event. It is read
|
||||||
|
134:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** protected to prevent confidential data, such as cryptographic private
|
||||||
|
135:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** key, from being accessed. The backup SRAM can be erased only through
|
||||||
|
136:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** the Flash interface when a protection level change from level 1 to
|
||||||
|
137:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** level 0 is requested.
|
||||||
|
138:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** -@- Refer to the description of Read protection (RDP) in the Flash
|
||||||
|
139:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** programming manual.
|
||||||
|
140:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
141:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** Refer to the datasheets for more details.
|
||||||
|
142:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
143:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** Low Power modes configuration ***
|
||||||
|
144:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** =====================================
|
||||||
|
145:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
146:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The devices feature 3 low-power modes:
|
||||||
|
147:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Sleep mode: Cortex-M4 core stopped, peripherals kept running.
|
||||||
|
148:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Stop mode: all clocks are stopped, regulator running, regulator
|
||||||
|
149:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** in low power mode
|
||||||
|
150:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Standby mode: 1.2V domain powered off (mode not available on STM32F3x8 devices).
|
||||||
|
151:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
152:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** Sleep mode ***
|
||||||
|
153:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ==================
|
||||||
|
154:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
155:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Entry:
|
||||||
|
156:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The Sleep mode is entered by using the HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON, PWR_S
|
||||||
|
157:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** functions with
|
||||||
|
158:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction
|
||||||
|
159:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction
|
||||||
|
160:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
161:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Exit:
|
||||||
|
162:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) Any peripheral interrupt acknowledged by the nested vectored interrupt
|
||||||
|
163:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** controller (NVIC) can wake up the device from Sleep mode.
|
||||||
|
164:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
165:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** Stop mode ***
|
||||||
|
166:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** =================
|
||||||
|
167:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
168:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** In Stop mode, all clocks in the 1.8V domain are stopped, the PLL, the HSI,
|
||||||
|
169:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** and the HSE RC oscillators are disabled. Internal SRAM and register contents
|
||||||
|
170:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** are preserved.
|
||||||
|
171:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The voltage regulator can be configured either in normal or low-power mode to minimize the co
|
||||||
|
172:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
173:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Entry:
|
||||||
|
174:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The Stop mode is entered using the HAL_PWR_EnterSTOPMode(PWR_MAINREGULATOR_ON, PWR_STOPEN
|
||||||
|
175:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** function with:
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 6
|
||||||
|
|
||||||
|
|
||||||
|
176:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) Main regulator ON or
|
||||||
|
177:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) Low Power regulator ON.
|
||||||
|
178:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) PWR_STOPENTRY_WFI: enter STOP mode with WFI instruction or
|
||||||
|
179:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) PWR_STOPENTRY_WFE: enter STOP mode with WFE instruction
|
||||||
|
180:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Exit:
|
||||||
|
181:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) Any EXTI Line (Internal or External) configured in Interrupt/Event mode.
|
||||||
|
182:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) Some specific communication peripherals (CEC, USART, I2C) interrupts,
|
||||||
|
183:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** when programmed in wakeup mode (the peripheral must be
|
||||||
|
184:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** programmed in wakeup mode and the corresponding interrupt vector
|
||||||
|
185:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** must be enabled in the NVIC).
|
||||||
|
186:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
187:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** Standby mode ***
|
||||||
|
188:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** ====================
|
||||||
|
189:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
190:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The Standby mode allows to achieve the lowest power consumption. It is based
|
||||||
|
191:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** on the Cortex-M4 deep sleep mode, with the voltage regulator disabled.
|
||||||
|
192:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The 1.8V domain is consequently powered off. The PLL, the HSI oscillator and
|
||||||
|
193:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** the HSE oscillator are also switched off. SRAM and register contents are lost
|
||||||
|
194:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** except for the RTC registers, RTC backup registers, backup SRAM and Standby
|
||||||
|
195:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** circuitry.
|
||||||
|
196:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The voltage regulator is OFF.
|
||||||
|
197:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
198:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Entry:
|
||||||
|
199:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) The Standby mode is entered using the HAL_PWR_EnterSTANDBYMode() function.
|
||||||
|
200:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Exit:
|
||||||
|
201:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) WKUP pin rising edge, RTC alarm (Alarm A and Alarm B), RTC wakeup,
|
||||||
|
202:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** tamper event, time-stamp event, external reset in NRST pin, IWDG reset.
|
||||||
|
203:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
204:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** *** Auto-wakeup (AWU) from low-power mode ***
|
||||||
|
205:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** =============================================
|
||||||
|
206:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** [..]
|
||||||
|
207:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC
|
||||||
|
208:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** Wakeup event, a tamper event, a time-stamp event, or a comparator event,
|
||||||
|
209:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** without depending on an external interrupt (Auto-wakeup mode).
|
||||||
|
210:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
211:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) RTC auto-wakeup (AWU) from the Stop and Standby modes
|
||||||
|
212:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
213:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) To wake up from the Stop mode with an RTC alarm event, it is necessary to
|
||||||
|
214:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** configure the RTC to generate the RTC alarm using the HAL_RTC_SetAlarm_IT() function.
|
||||||
|
215:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
216:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) To wake up from the Stop mode with an RTC Tamper or time stamp event, it
|
||||||
|
217:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** is necessary to configure the RTC to detect the tamper or time stamp event using the
|
||||||
|
218:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** HAL_RTC_SetTimeStamp_IT() or HAL_RTC_SetTamper_IT() functions.
|
||||||
|
219:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
220:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) To wake up from the Stop mode with an RTC WakeUp event, it is necessary to
|
||||||
|
221:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** configure the RTC to generate the RTC WakeUp event using the HAL_RTC_SetWakeUpTimer_IT()
|
||||||
|
222:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
223:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+) Comparator auto-wakeup (AWU) from the Stop mode
|
||||||
|
224:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
225:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (++) To wake up from the Stop mode with a comparator wakeup event, it is necessary to:
|
||||||
|
226:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+++) Configure the EXTI Line associated with the comparator (example EXTI Line 22 for c
|
||||||
|
227:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** to be sensitive to to the selected edges (falling, rising or falling
|
||||||
|
228:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** and rising) (Interrupt or Event modes) using the EXTI_Init() function.
|
||||||
|
229:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** (+++) Configure the comparator to generate the event.
|
||||||
|
230:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** @endverbatim
|
||||||
|
231:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @{
|
||||||
|
232:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 7
|
||||||
|
|
||||||
|
|
||||||
|
233:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
234:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
235:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Enables the WakeUp PINx functionality.
|
||||||
|
236:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @param WakeUpPinx Specifies the Power Wake-Up pin to enable.
|
||||||
|
237:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This parameter can be value of :
|
||||||
|
238:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @ref PWR_WakeUp_Pins
|
||||||
|
239:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
240:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
241:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnableWakeUpPin(uint32_t WakeUpPinx)
|
||||||
|
242:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
118 .loc 1 242 1 is_stmt 1 view -0
|
||||||
|
119 .cfi_startproc
|
||||||
|
120 @ args = 0, pretend = 0, frame = 0
|
||||||
|
121 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
122 @ link register save eliminated.
|
||||||
|
243:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Check the parameters */
|
||||||
|
244:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** assert_param(IS_PWR_WAKEUP_PIN(WakeUpPinx));
|
||||||
|
123 .loc 1 244 3 view .LVU11
|
||||||
|
245:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Enable the EWUPx pin */
|
||||||
|
246:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SET_BIT(PWR->CSR, WakeUpPinx);
|
||||||
|
124 .loc 1 246 3 view .LVU12
|
||||||
|
125 0000 024A ldr r2, .L11
|
||||||
|
126 0002 5368 ldr r3, [r2, #4]
|
||||||
|
127 0004 0343 orrs r3, r3, r0
|
||||||
|
128 0006 5360 str r3, [r2, #4]
|
||||||
|
247:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
129 .loc 1 247 1 is_stmt 0 view .LVU13
|
||||||
|
130 0008 7047 bx lr
|
||||||
|
131 .L12:
|
||||||
|
132 000a 00BF .align 2
|
||||||
|
133 .L11:
|
||||||
|
134 000c 00700040 .word 1073770496
|
||||||
|
135 .cfi_endproc
|
||||||
|
136 .LFE133:
|
||||||
|
138 .section .text.HAL_PWR_DisableWakeUpPin,"ax",%progbits
|
||||||
|
139 .align 1
|
||||||
|
140 .global HAL_PWR_DisableWakeUpPin
|
||||||
|
141 .syntax unified
|
||||||
|
142 .thumb
|
||||||
|
143 .thumb_func
|
||||||
|
145 HAL_PWR_DisableWakeUpPin:
|
||||||
|
146 .LVL1:
|
||||||
|
147 .LFB134:
|
||||||
|
248:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
249:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
250:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Disables the WakeUp PINx functionality.
|
||||||
|
251:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @param WakeUpPinx Specifies the Power Wake-Up pin to disable.
|
||||||
|
252:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This parameter can be values of :
|
||||||
|
253:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @ref PWR_WakeUp_Pins
|
||||||
|
254:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
255:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
256:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_DisableWakeUpPin(uint32_t WakeUpPinx)
|
||||||
|
257:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
148 .loc 1 257 1 is_stmt 1 view -0
|
||||||
|
149 .cfi_startproc
|
||||||
|
150 @ args = 0, pretend = 0, frame = 0
|
||||||
|
151 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 8
|
||||||
|
|
||||||
|
|
||||||
|
152 @ link register save eliminated.
|
||||||
|
258:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Check the parameters */
|
||||||
|
259:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** assert_param(IS_PWR_WAKEUP_PIN(WakeUpPinx));
|
||||||
|
153 .loc 1 259 3 view .LVU15
|
||||||
|
260:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Disable the EWUPx pin */
|
||||||
|
261:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** CLEAR_BIT(PWR->CSR, WakeUpPinx);
|
||||||
|
154 .loc 1 261 3 view .LVU16
|
||||||
|
155 0000 024A ldr r2, .L14
|
||||||
|
156 0002 5368 ldr r3, [r2, #4]
|
||||||
|
157 0004 23EA0003 bic r3, r3, r0
|
||||||
|
158 0008 5360 str r3, [r2, #4]
|
||||||
|
262:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
159 .loc 1 262 1 is_stmt 0 view .LVU17
|
||||||
|
160 000a 7047 bx lr
|
||||||
|
161 .L15:
|
||||||
|
162 .align 2
|
||||||
|
163 .L14:
|
||||||
|
164 000c 00700040 .word 1073770496
|
||||||
|
165 .cfi_endproc
|
||||||
|
166 .LFE134:
|
||||||
|
168 .section .text.HAL_PWR_EnterSLEEPMode,"ax",%progbits
|
||||||
|
169 .align 1
|
||||||
|
170 .global HAL_PWR_EnterSLEEPMode
|
||||||
|
171 .syntax unified
|
||||||
|
172 .thumb
|
||||||
|
173 .thumb_func
|
||||||
|
175 HAL_PWR_EnterSLEEPMode:
|
||||||
|
176 .LVL2:
|
||||||
|
177 .LFB135:
|
||||||
|
263:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
264:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
265:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Enters Sleep mode.
|
||||||
|
266:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note In Sleep mode, all I/O pins keep the same state as in Run mode.
|
||||||
|
267:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @param Regulator Specifies the regulator state in SLEEP mode.
|
||||||
|
268:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This parameter can be one of the following values:
|
||||||
|
269:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_MAINREGULATOR_ON: SLEEP mode with regulator ON
|
||||||
|
270:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_LOWPOWERREGULATOR_ON: SLEEP mode with low power regulator ON
|
||||||
|
271:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note This parameter has no effect in F3 family and is just maintained to
|
||||||
|
272:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * offer full portability of other STM32 families software.
|
||||||
|
273:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @param SLEEPEntry Specifies if SLEEP mode is entered with WFI or WFE instruction.
|
||||||
|
274:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * When WFI entry is used, tick interrupt have to be disabled if not desired as
|
||||||
|
275:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * the interrupt wake up source.
|
||||||
|
276:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This parameter can be one of the following values:
|
||||||
|
277:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction
|
||||||
|
278:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction
|
||||||
|
279:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
280:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
281:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnterSLEEPMode(uint32_t Regulator, uint8_t SLEEPEntry)
|
||||||
|
282:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
178 .loc 1 282 1 is_stmt 1 view -0
|
||||||
|
179 .cfi_startproc
|
||||||
|
180 @ args = 0, pretend = 0, frame = 0
|
||||||
|
181 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
182 @ link register save eliminated.
|
||||||
|
283:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Check the parameters */
|
||||||
|
284:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** assert_param(IS_PWR_SLEEP_ENTRY(SLEEPEntry));
|
||||||
|
183 .loc 1 284 3 view .LVU19
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 9
|
||||||
|
|
||||||
|
|
||||||
|
285:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
286:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Clear SLEEPDEEP bit of Cortex System Control Register */
|
||||||
|
287:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SCB->SCR &= (uint32_t)~((uint32_t)SCB_SCR_SLEEPDEEP_Msk);
|
||||||
|
184 .loc 1 287 3 view .LVU20
|
||||||
|
185 .loc 1 287 6 is_stmt 0 view .LVU21
|
||||||
|
186 0000 064A ldr r2, .L20
|
||||||
|
187 0002 1369 ldr r3, [r2, #16]
|
||||||
|
188 .loc 1 287 12 view .LVU22
|
||||||
|
189 0004 23F00403 bic r3, r3, #4
|
||||||
|
190 0008 1361 str r3, [r2, #16]
|
||||||
|
288:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
289:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Select SLEEP mode entry -------------------------------------------------*/
|
||||||
|
290:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** if(SLEEPEntry == PWR_SLEEPENTRY_WFI)
|
||||||
|
191 .loc 1 290 3 is_stmt 1 view .LVU23
|
||||||
|
192 .loc 1 290 5 is_stmt 0 view .LVU24
|
||||||
|
193 000a 0129 cmp r1, #1
|
||||||
|
194 000c 03D0 beq .L19
|
||||||
|
291:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
292:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Request Wait For Interrupt */
|
||||||
|
293:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFI();
|
||||||
|
294:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
295:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** else
|
||||||
|
296:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
297:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Request Wait For Event */
|
||||||
|
298:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __SEV();
|
||||||
|
195 .loc 1 298 5 is_stmt 1 view .LVU25
|
||||||
|
196 .syntax unified
|
||||||
|
197 @ 298 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
198 000e 40BF sev
|
||||||
|
199 @ 0 "" 2
|
||||||
|
299:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFE();
|
||||||
|
200 .loc 1 299 5 view .LVU26
|
||||||
|
201 @ 299 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
202 0010 20BF wfe
|
||||||
|
203 @ 0 "" 2
|
||||||
|
300:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFE();
|
||||||
|
204 .loc 1 300 5 view .LVU27
|
||||||
|
205 @ 300 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
206 0012 20BF wfe
|
||||||
|
207 @ 0 "" 2
|
||||||
|
301:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
302:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
208 .loc 1 302 1 is_stmt 0 view .LVU28
|
||||||
|
209 .thumb
|
||||||
|
210 .syntax unified
|
||||||
|
211 0014 7047 bx lr
|
||||||
|
212 .L19:
|
||||||
|
293:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
213 .loc 1 293 5 is_stmt 1 view .LVU29
|
||||||
|
214 .syntax unified
|
||||||
|
215 @ 293 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
216 0016 30BF wfi
|
||||||
|
217 @ 0 "" 2
|
||||||
|
218 .thumb
|
||||||
|
219 .syntax unified
|
||||||
|
220 0018 7047 bx lr
|
||||||
|
221 .L21:
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 10
|
||||||
|
|
||||||
|
|
||||||
|
222 001a 00BF .align 2
|
||||||
|
223 .L20:
|
||||||
|
224 001c 00ED00E0 .word -536810240
|
||||||
|
225 .cfi_endproc
|
||||||
|
226 .LFE135:
|
||||||
|
228 .section .text.HAL_PWR_EnterSTOPMode,"ax",%progbits
|
||||||
|
229 .align 1
|
||||||
|
230 .global HAL_PWR_EnterSTOPMode
|
||||||
|
231 .syntax unified
|
||||||
|
232 .thumb
|
||||||
|
233 .thumb_func
|
||||||
|
235 HAL_PWR_EnterSTOPMode:
|
||||||
|
236 .LVL3:
|
||||||
|
237 .LFB136:
|
||||||
|
303:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
304:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
305:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Enters STOP mode.
|
||||||
|
306:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note In Stop mode, all I/O pins keep the same state as in Run mode.
|
||||||
|
307:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note When exiting Stop mode by issuing an interrupt or a wakeup event,
|
||||||
|
308:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * the HSI RC oscillator is selected as system clock.
|
||||||
|
309:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note When the voltage regulator operates in low power mode, an additional
|
||||||
|
310:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * startup delay is incurred when waking up from Stop mode.
|
||||||
|
311:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * By keeping the internal regulator ON during Stop mode, the consumption
|
||||||
|
312:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * is higher although the startup time is reduced.
|
||||||
|
313:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @param Regulator Specifies the regulator state in STOP mode.
|
||||||
|
314:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This parameter can be one of the following values:
|
||||||
|
315:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_MAINREGULATOR_ON: STOP mode with regulator ON
|
||||||
|
316:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_LOWPOWERREGULATOR_ON: STOP mode with low power regulator ON
|
||||||
|
317:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @param STOPEntry specifies if STOP mode in entered with WFI or WFE instruction.
|
||||||
|
318:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * This parameter can be one of the following values:
|
||||||
|
319:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_STOPENTRY_WFI:Enter STOP mode with WFI instruction
|
||||||
|
320:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @arg PWR_STOPENTRY_WFE: Enter STOP mode with WFE instruction
|
||||||
|
321:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
322:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
323:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnterSTOPMode(uint32_t Regulator, uint8_t STOPEntry)
|
||||||
|
324:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
238 .loc 1 324 1 view -0
|
||||||
|
239 .cfi_startproc
|
||||||
|
240 @ args = 0, pretend = 0, frame = 0
|
||||||
|
241 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
242 @ link register save eliminated.
|
||||||
|
325:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** uint32_t tmpreg = 0U;
|
||||||
|
243 .loc 1 325 3 view .LVU31
|
||||||
|
326:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
327:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Check the parameters */
|
||||||
|
328:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** assert_param(IS_PWR_REGULATOR(Regulator));
|
||||||
|
244 .loc 1 328 3 view .LVU32
|
||||||
|
329:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** assert_param(IS_PWR_STOP_ENTRY(STOPEntry));
|
||||||
|
245 .loc 1 329 3 view .LVU33
|
||||||
|
330:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
331:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Select the regulator state in STOP mode ---------------------------------*/
|
||||||
|
332:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** tmpreg = PWR->CR;
|
||||||
|
246 .loc 1 332 3 view .LVU34
|
||||||
|
247 .loc 1 332 10 is_stmt 0 view .LVU35
|
||||||
|
248 0000 0B4A ldr r2, .L26
|
||||||
|
249 0002 1368 ldr r3, [r2]
|
||||||
|
250 .LVL4:
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 11
|
||||||
|
|
||||||
|
|
||||||
|
333:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
334:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Clear PDDS and LPDS bits */
|
||||||
|
335:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** tmpreg &= (uint32_t)~(PWR_CR_PDDS | PWR_CR_LPDS);
|
||||||
|
251 .loc 1 335 3 is_stmt 1 view .LVU36
|
||||||
|
252 .loc 1 335 10 is_stmt 0 view .LVU37
|
||||||
|
253 0004 23F00303 bic r3, r3, #3
|
||||||
|
254 .LVL5:
|
||||||
|
336:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
337:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Set LPDS bit according to Regulator value */
|
||||||
|
338:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** tmpreg |= Regulator;
|
||||||
|
255 .loc 1 338 3 is_stmt 1 view .LVU38
|
||||||
|
256 .loc 1 338 10 is_stmt 0 view .LVU39
|
||||||
|
257 0008 0343 orrs r3, r3, r0
|
||||||
|
258 .LVL6:
|
||||||
|
339:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
340:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Store the new value */
|
||||||
|
341:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** PWR->CR = tmpreg;
|
||||||
|
259 .loc 1 341 3 is_stmt 1 view .LVU40
|
||||||
|
260 .loc 1 341 11 is_stmt 0 view .LVU41
|
||||||
|
261 000a 1360 str r3, [r2]
|
||||||
|
342:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
343:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Set SLEEPDEEP bit of Cortex System Control Register */
|
||||||
|
344:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;
|
||||||
|
262 .loc 1 344 3 is_stmt 1 view .LVU42
|
||||||
|
263 .loc 1 344 6 is_stmt 0 view .LVU43
|
||||||
|
264 000c 094A ldr r2, .L26+4
|
||||||
|
265 000e 1369 ldr r3, [r2, #16]
|
||||||
|
266 .LVL7:
|
||||||
|
267 .loc 1 344 12 view .LVU44
|
||||||
|
268 0010 43F00403 orr r3, r3, #4
|
||||||
|
269 0014 1361 str r3, [r2, #16]
|
||||||
|
270 .LVL8:
|
||||||
|
345:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
346:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Select STOP mode entry --------------------------------------------------*/
|
||||||
|
347:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** if(STOPEntry == PWR_STOPENTRY_WFI)
|
||||||
|
271 .loc 1 347 3 is_stmt 1 view .LVU45
|
||||||
|
272 .loc 1 347 5 is_stmt 0 view .LVU46
|
||||||
|
273 0016 0129 cmp r1, #1
|
||||||
|
274 0018 08D0 beq .L25
|
||||||
|
348:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
349:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Request Wait For Interrupt */
|
||||||
|
350:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFI();
|
||||||
|
351:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
352:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** else
|
||||||
|
353:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
354:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Request Wait For Event */
|
||||||
|
355:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __SEV();
|
||||||
|
275 .loc 1 355 5 is_stmt 1 view .LVU47
|
||||||
|
276 .syntax unified
|
||||||
|
277 @ 355 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
278 001a 40BF sev
|
||||||
|
279 @ 0 "" 2
|
||||||
|
356:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFE();
|
||||||
|
280 .loc 1 356 5 view .LVU48
|
||||||
|
281 @ 356 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
282 001c 20BF wfe
|
||||||
|
283 @ 0 "" 2
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 12
|
||||||
|
|
||||||
|
|
||||||
|
357:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFE();
|
||||||
|
284 .loc 1 357 5 view .LVU49
|
||||||
|
285 @ 357 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
286 001e 20BF wfe
|
||||||
|
287 @ 0 "" 2
|
||||||
|
288 .thumb
|
||||||
|
289 .syntax unified
|
||||||
|
290 .L24:
|
||||||
|
358:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
359:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
360:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Reset SLEEPDEEP bit of Cortex System Control Register */
|
||||||
|
361:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SCB->SCR &= (uint32_t)~((uint32_t)SCB_SCR_SLEEPDEEP_Msk);
|
||||||
|
291 .loc 1 361 3 view .LVU50
|
||||||
|
292 .loc 1 361 6 is_stmt 0 view .LVU51
|
||||||
|
293 0020 044A ldr r2, .L26+4
|
||||||
|
294 0022 1369 ldr r3, [r2, #16]
|
||||||
|
295 .loc 1 361 12 view .LVU52
|
||||||
|
296 0024 23F00403 bic r3, r3, #4
|
||||||
|
297 0028 1361 str r3, [r2, #16]
|
||||||
|
362:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
298 .loc 1 362 1 view .LVU53
|
||||||
|
299 002a 7047 bx lr
|
||||||
|
300 .L25:
|
||||||
|
350:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
301 .loc 1 350 5 is_stmt 1 view .LVU54
|
||||||
|
302 .syntax unified
|
||||||
|
303 @ 350 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
304 002c 30BF wfi
|
||||||
|
305 @ 0 "" 2
|
||||||
|
306 .thumb
|
||||||
|
307 .syntax unified
|
||||||
|
308 002e F7E7 b .L24
|
||||||
|
309 .L27:
|
||||||
|
310 .align 2
|
||||||
|
311 .L26:
|
||||||
|
312 0030 00700040 .word 1073770496
|
||||||
|
313 0034 00ED00E0 .word -536810240
|
||||||
|
314 .cfi_endproc
|
||||||
|
315 .LFE136:
|
||||||
|
317 .section .text.HAL_PWR_EnterSTANDBYMode,"ax",%progbits
|
||||||
|
318 .align 1
|
||||||
|
319 .global HAL_PWR_EnterSTANDBYMode
|
||||||
|
320 .syntax unified
|
||||||
|
321 .thumb
|
||||||
|
322 .thumb_func
|
||||||
|
324 HAL_PWR_EnterSTANDBYMode:
|
||||||
|
325 .LFB137:
|
||||||
|
363:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
364:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
365:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Enters STANDBY mode.
|
||||||
|
366:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note In Standby mode, all I/O pins are high impedance except for:
|
||||||
|
367:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * - Reset pad (still available),
|
||||||
|
368:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * - RTC alternate function pins if configured for tamper, time-stamp, RTC
|
||||||
|
369:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * Alarm out, or RTC clock calibration out,
|
||||||
|
370:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * - WKUP pins if enabled.
|
||||||
|
371:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
372:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 13
|
||||||
|
|
||||||
|
|
||||||
|
373:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnterSTANDBYMode(void)
|
||||||
|
374:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
326 .loc 1 374 1 view -0
|
||||||
|
327 .cfi_startproc
|
||||||
|
328 @ args = 0, pretend = 0, frame = 0
|
||||||
|
329 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
330 @ link register save eliminated.
|
||||||
|
375:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Select STANDBY mode */
|
||||||
|
376:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** PWR->CR |= PWR_CR_PDDS;
|
||||||
|
331 .loc 1 376 3 view .LVU56
|
||||||
|
332 .loc 1 376 6 is_stmt 0 view .LVU57
|
||||||
|
333 0000 054A ldr r2, .L29
|
||||||
|
334 0002 1368 ldr r3, [r2]
|
||||||
|
335 .loc 1 376 11 view .LVU58
|
||||||
|
336 0004 43F00203 orr r3, r3, #2
|
||||||
|
337 0008 1360 str r3, [r2]
|
||||||
|
377:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
378:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Set SLEEPDEEP bit of Cortex System Control Register */
|
||||||
|
379:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;
|
||||||
|
338 .loc 1 379 3 is_stmt 1 view .LVU59
|
||||||
|
339 .loc 1 379 6 is_stmt 0 view .LVU60
|
||||||
|
340 000a 044A ldr r2, .L29+4
|
||||||
|
341 000c 1369 ldr r3, [r2, #16]
|
||||||
|
342 .loc 1 379 12 view .LVU61
|
||||||
|
343 000e 43F00403 orr r3, r3, #4
|
||||||
|
344 0012 1361 str r3, [r2, #16]
|
||||||
|
380:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
381:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* This option is used to ensure that store operations are completed */
|
||||||
|
382:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** #if defined ( __CC_ARM)
|
||||||
|
383:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __force_stores();
|
||||||
|
384:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** #endif
|
||||||
|
385:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Request Wait For Interrupt */
|
||||||
|
386:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** __WFI();
|
||||||
|
345 .loc 1 386 3 is_stmt 1 view .LVU62
|
||||||
|
346 .syntax unified
|
||||||
|
347 @ 386 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c" 1
|
||||||
|
348 0014 30BF wfi
|
||||||
|
349 @ 0 "" 2
|
||||||
|
387:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
350 .loc 1 387 1 is_stmt 0 view .LVU63
|
||||||
|
351 .thumb
|
||||||
|
352 .syntax unified
|
||||||
|
353 0016 7047 bx lr
|
||||||
|
354 .L30:
|
||||||
|
355 .align 2
|
||||||
|
356 .L29:
|
||||||
|
357 0018 00700040 .word 1073770496
|
||||||
|
358 001c 00ED00E0 .word -536810240
|
||||||
|
359 .cfi_endproc
|
||||||
|
360 .LFE137:
|
||||||
|
362 .section .text.HAL_PWR_EnableSleepOnExit,"ax",%progbits
|
||||||
|
363 .align 1
|
||||||
|
364 .global HAL_PWR_EnableSleepOnExit
|
||||||
|
365 .syntax unified
|
||||||
|
366 .thumb
|
||||||
|
367 .thumb_func
|
||||||
|
369 HAL_PWR_EnableSleepOnExit:
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 14
|
||||||
|
|
||||||
|
|
||||||
|
370 .LFB138:
|
||||||
|
388:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
389:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
390:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Indicates Sleep-On-Exit when returning from Handler mode to Thread mode.
|
||||||
|
391:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note Set SLEEPONEXIT bit of SCR register. When this bit is set, the processor
|
||||||
|
392:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * re-enters SLEEP mode when an interruption handling is over.
|
||||||
|
393:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * Setting this bit is useful when the processor is expected to run only on
|
||||||
|
394:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * interruptions handling.
|
||||||
|
395:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
396:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
397:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnableSleepOnExit(void)
|
||||||
|
398:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
371 .loc 1 398 1 is_stmt 1 view -0
|
||||||
|
372 .cfi_startproc
|
||||||
|
373 @ args = 0, pretend = 0, frame = 0
|
||||||
|
374 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
375 @ link register save eliminated.
|
||||||
|
399:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Set SLEEPONEXIT bit of Cortex System Control Register */
|
||||||
|
400:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SET_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SLEEPONEXIT_Msk));
|
||||||
|
376 .loc 1 400 3 view .LVU65
|
||||||
|
377 0000 024A ldr r2, .L32
|
||||||
|
378 0002 1369 ldr r3, [r2, #16]
|
||||||
|
379 0004 43F00203 orr r3, r3, #2
|
||||||
|
380 0008 1361 str r3, [r2, #16]
|
||||||
|
401:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
381 .loc 1 401 1 is_stmt 0 view .LVU66
|
||||||
|
382 000a 7047 bx lr
|
||||||
|
383 .L33:
|
||||||
|
384 .align 2
|
||||||
|
385 .L32:
|
||||||
|
386 000c 00ED00E0 .word -536810240
|
||||||
|
387 .cfi_endproc
|
||||||
|
388 .LFE138:
|
||||||
|
390 .section .text.HAL_PWR_DisableSleepOnExit,"ax",%progbits
|
||||||
|
391 .align 1
|
||||||
|
392 .global HAL_PWR_DisableSleepOnExit
|
||||||
|
393 .syntax unified
|
||||||
|
394 .thumb
|
||||||
|
395 .thumb_func
|
||||||
|
397 HAL_PWR_DisableSleepOnExit:
|
||||||
|
398 .LFB139:
|
||||||
|
402:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
403:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
404:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
405:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Disables Sleep-On-Exit feature when returning from Handler mode to Thread mode.
|
||||||
|
406:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note Clears SLEEPONEXIT bit of SCR register. When this bit is set, the processor
|
||||||
|
407:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * re-enters SLEEP mode when an interruption handling is over.
|
||||||
|
408:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
409:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
410:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_DisableSleepOnExit(void)
|
||||||
|
411:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
399 .loc 1 411 1 is_stmt 1 view -0
|
||||||
|
400 .cfi_startproc
|
||||||
|
401 @ args = 0, pretend = 0, frame = 0
|
||||||
|
402 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
403 @ link register save eliminated.
|
||||||
|
412:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Clear SLEEPONEXIT bit of Cortex System Control Register */
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 15
|
||||||
|
|
||||||
|
|
||||||
|
413:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** CLEAR_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SLEEPONEXIT_Msk));
|
||||||
|
404 .loc 1 413 3 view .LVU68
|
||||||
|
405 0000 024A ldr r2, .L35
|
||||||
|
406 0002 1369 ldr r3, [r2, #16]
|
||||||
|
407 0004 23F00203 bic r3, r3, #2
|
||||||
|
408 0008 1361 str r3, [r2, #16]
|
||||||
|
414:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
409 .loc 1 414 1 is_stmt 0 view .LVU69
|
||||||
|
410 000a 7047 bx lr
|
||||||
|
411 .L36:
|
||||||
|
412 .align 2
|
||||||
|
413 .L35:
|
||||||
|
414 000c 00ED00E0 .word -536810240
|
||||||
|
415 .cfi_endproc
|
||||||
|
416 .LFE139:
|
||||||
|
418 .section .text.HAL_PWR_EnableSEVOnPend,"ax",%progbits
|
||||||
|
419 .align 1
|
||||||
|
420 .global HAL_PWR_EnableSEVOnPend
|
||||||
|
421 .syntax unified
|
||||||
|
422 .thumb
|
||||||
|
423 .thumb_func
|
||||||
|
425 HAL_PWR_EnableSEVOnPend:
|
||||||
|
426 .LFB140:
|
||||||
|
415:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
416:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
417:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
418:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
419:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Enables CORTEX M4 SEVONPEND bit.
|
||||||
|
420:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note Sets SEVONPEND bit of SCR register. When this bit is set, this causes
|
||||||
|
421:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * WFE to wake up when an interrupt moves from inactive to pended.
|
||||||
|
422:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
423:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
424:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_EnableSEVOnPend(void)
|
||||||
|
425:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
427 .loc 1 425 1 is_stmt 1 view -0
|
||||||
|
428 .cfi_startproc
|
||||||
|
429 @ args = 0, pretend = 0, frame = 0
|
||||||
|
430 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
431 @ link register save eliminated.
|
||||||
|
426:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Set SEVONPEND bit of Cortex System Control Register */
|
||||||
|
427:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** SET_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SEVONPEND_Msk));
|
||||||
|
432 .loc 1 427 3 view .LVU71
|
||||||
|
433 0000 024A ldr r2, .L38
|
||||||
|
434 0002 1369 ldr r3, [r2, #16]
|
||||||
|
435 0004 43F01003 orr r3, r3, #16
|
||||||
|
436 0008 1361 str r3, [r2, #16]
|
||||||
|
428:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
437 .loc 1 428 1 is_stmt 0 view .LVU72
|
||||||
|
438 000a 7047 bx lr
|
||||||
|
439 .L39:
|
||||||
|
440 .align 2
|
||||||
|
441 .L38:
|
||||||
|
442 000c 00ED00E0 .word -536810240
|
||||||
|
443 .cfi_endproc
|
||||||
|
444 .LFE140:
|
||||||
|
446 .section .text.HAL_PWR_DisableSEVOnPend,"ax",%progbits
|
||||||
|
447 .align 1
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 16
|
||||||
|
|
||||||
|
|
||||||
|
448 .global HAL_PWR_DisableSEVOnPend
|
||||||
|
449 .syntax unified
|
||||||
|
450 .thumb
|
||||||
|
451 .thumb_func
|
||||||
|
453 HAL_PWR_DisableSEVOnPend:
|
||||||
|
454 .LFB141:
|
||||||
|
429:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
430:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c ****
|
||||||
|
431:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /**
|
||||||
|
432:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @brief Disables CORTEX M4 SEVONPEND bit.
|
||||||
|
433:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @note Clears SEVONPEND bit of SCR register. When this bit is set, this causes
|
||||||
|
434:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * WFE to wake up when an interrupt moves from inactive to pended.
|
||||||
|
435:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** * @retval None
|
||||||
|
436:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** */
|
||||||
|
437:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** void HAL_PWR_DisableSEVOnPend(void)
|
||||||
|
438:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** {
|
||||||
|
455 .loc 1 438 1 is_stmt 1 view -0
|
||||||
|
456 .cfi_startproc
|
||||||
|
457 @ args = 0, pretend = 0, frame = 0
|
||||||
|
458 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
459 @ link register save eliminated.
|
||||||
|
439:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** /* Clear SEVONPEND bit of Cortex System Control Register */
|
||||||
|
440:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** CLEAR_BIT(SCB->SCR, ((uint32_t)SCB_SCR_SEVONPEND_Msk));
|
||||||
|
460 .loc 1 440 3 view .LVU74
|
||||||
|
461 0000 024A ldr r2, .L41
|
||||||
|
462 0002 1369 ldr r3, [r2, #16]
|
||||||
|
463 0004 23F01003 bic r3, r3, #16
|
||||||
|
464 0008 1361 str r3, [r2, #16]
|
||||||
|
441:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c **** }
|
||||||
|
465 .loc 1 441 1 is_stmt 0 view .LVU75
|
||||||
|
466 000a 7047 bx lr
|
||||||
|
467 .L42:
|
||||||
|
468 .align 2
|
||||||
|
469 .L41:
|
||||||
|
470 000c 00ED00E0 .word -536810240
|
||||||
|
471 .cfi_endproc
|
||||||
|
472 .LFE141:
|
||||||
|
474 .text
|
||||||
|
475 .Letext0:
|
||||||
|
476 .file 2 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
477 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
478 .file 4 "Drivers/CMSIS/Include/core_cm4.h"
|
||||||
|
479 .file 5 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h"
|
||||||
|
ARM GAS /tmp/cc53YuwZ.s page 17
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 stm32f3xx_hal_pwr.c
|
||||||
|
/tmp/cc53YuwZ.s:21 .text.HAL_PWR_DeInit:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:27 .text.HAL_PWR_DeInit:00000000 HAL_PWR_DeInit
|
||||||
|
/tmp/cc53YuwZ.s:48 .text.HAL_PWR_DeInit:00000014 $d
|
||||||
|
/tmp/cc53YuwZ.s:53 .text.HAL_PWR_EnableBkUpAccess:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:59 .text.HAL_PWR_EnableBkUpAccess:00000000 HAL_PWR_EnableBkUpAccess
|
||||||
|
/tmp/cc53YuwZ.s:76 .text.HAL_PWR_EnableBkUpAccess:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:81 .text.HAL_PWR_DisableBkUpAccess:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:87 .text.HAL_PWR_DisableBkUpAccess:00000000 HAL_PWR_DisableBkUpAccess
|
||||||
|
/tmp/cc53YuwZ.s:104 .text.HAL_PWR_DisableBkUpAccess:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:109 .text.HAL_PWR_EnableWakeUpPin:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:115 .text.HAL_PWR_EnableWakeUpPin:00000000 HAL_PWR_EnableWakeUpPin
|
||||||
|
/tmp/cc53YuwZ.s:134 .text.HAL_PWR_EnableWakeUpPin:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:139 .text.HAL_PWR_DisableWakeUpPin:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:145 .text.HAL_PWR_DisableWakeUpPin:00000000 HAL_PWR_DisableWakeUpPin
|
||||||
|
/tmp/cc53YuwZ.s:164 .text.HAL_PWR_DisableWakeUpPin:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:169 .text.HAL_PWR_EnterSLEEPMode:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:175 .text.HAL_PWR_EnterSLEEPMode:00000000 HAL_PWR_EnterSLEEPMode
|
||||||
|
/tmp/cc53YuwZ.s:224 .text.HAL_PWR_EnterSLEEPMode:0000001c $d
|
||||||
|
/tmp/cc53YuwZ.s:229 .text.HAL_PWR_EnterSTOPMode:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:235 .text.HAL_PWR_EnterSTOPMode:00000000 HAL_PWR_EnterSTOPMode
|
||||||
|
/tmp/cc53YuwZ.s:312 .text.HAL_PWR_EnterSTOPMode:00000030 $d
|
||||||
|
/tmp/cc53YuwZ.s:318 .text.HAL_PWR_EnterSTANDBYMode:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:324 .text.HAL_PWR_EnterSTANDBYMode:00000000 HAL_PWR_EnterSTANDBYMode
|
||||||
|
/tmp/cc53YuwZ.s:357 .text.HAL_PWR_EnterSTANDBYMode:00000018 $d
|
||||||
|
/tmp/cc53YuwZ.s:363 .text.HAL_PWR_EnableSleepOnExit:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:369 .text.HAL_PWR_EnableSleepOnExit:00000000 HAL_PWR_EnableSleepOnExit
|
||||||
|
/tmp/cc53YuwZ.s:386 .text.HAL_PWR_EnableSleepOnExit:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:391 .text.HAL_PWR_DisableSleepOnExit:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:397 .text.HAL_PWR_DisableSleepOnExit:00000000 HAL_PWR_DisableSleepOnExit
|
||||||
|
/tmp/cc53YuwZ.s:414 .text.HAL_PWR_DisableSleepOnExit:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:419 .text.HAL_PWR_EnableSEVOnPend:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:425 .text.HAL_PWR_EnableSEVOnPend:00000000 HAL_PWR_EnableSEVOnPend
|
||||||
|
/tmp/cc53YuwZ.s:442 .text.HAL_PWR_EnableSEVOnPend:0000000c $d
|
||||||
|
/tmp/cc53YuwZ.s:447 .text.HAL_PWR_DisableSEVOnPend:00000000 $t
|
||||||
|
/tmp/cc53YuwZ.s:453 .text.HAL_PWR_DisableSEVOnPend:00000000 HAL_PWR_DisableSEVOnPend
|
||||||
|
/tmp/cc53YuwZ.s:470 .text.HAL_PWR_DisableSEVOnPend:0000000c $d
|
||||||
|
|
||||||
|
NO UNDEFINED SYMBOLS
|
BIN
build/stm32f3xx_hal_pwr.o
Normal file
BIN
build/stm32f3xx_hal_pwr.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_pwr_ex.d
Normal file
66
build/stm32f3xx_hal_pwr_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_pwr_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
498
build/stm32f3xx_hal_pwr_ex.lst
Normal file
498
build/stm32f3xx_hal_pwr_ex.lst
Normal file
@ -0,0 +1,498 @@
|
|||||||
|
ARM GAS /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 /tmp/ccdEzH7M.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 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
241 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
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 /tmp/ccdEzH7M.s page 9
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 stm32f3xx_hal_pwr_ex.c
|
||||||
|
/tmp/ccdEzH7M.s:21 .text.HAL_PWR_ConfigPVD:00000000 $t
|
||||||
|
/tmp/ccdEzH7M.s:27 .text.HAL_PWR_ConfigPVD:00000000 HAL_PWR_ConfigPVD
|
||||||
|
/tmp/ccdEzH7M.s:114 .text.HAL_PWR_ConfigPVD:0000007c $d
|
||||||
|
/tmp/ccdEzH7M.s:120 .text.HAL_PWR_EnablePVD:00000000 $t
|
||||||
|
/tmp/ccdEzH7M.s:126 .text.HAL_PWR_EnablePVD:00000000 HAL_PWR_EnablePVD
|
||||||
|
/tmp/ccdEzH7M.s:143 .text.HAL_PWR_EnablePVD:0000000c $d
|
||||||
|
/tmp/ccdEzH7M.s:148 .text.HAL_PWR_DisablePVD:00000000 $t
|
||||||
|
/tmp/ccdEzH7M.s:154 .text.HAL_PWR_DisablePVD:00000000 HAL_PWR_DisablePVD
|
||||||
|
/tmp/ccdEzH7M.s:171 .text.HAL_PWR_DisablePVD:0000000c $d
|
||||||
|
/tmp/ccdEzH7M.s:176 .text.HAL_PWR_PVDCallback:00000000 $t
|
||||||
|
/tmp/ccdEzH7M.s:182 .text.HAL_PWR_PVDCallback:00000000 HAL_PWR_PVDCallback
|
||||||
|
/tmp/ccdEzH7M.s:195 .text.HAL_PWR_PVD_IRQHandler:00000000 $t
|
||||||
|
/tmp/ccdEzH7M.s:201 .text.HAL_PWR_PVD_IRQHandler:00000000 HAL_PWR_PVD_IRQHandler
|
||||||
|
/tmp/ccdEzH7M.s:234 .text.HAL_PWR_PVD_IRQHandler:0000001c $d
|
||||||
|
|
||||||
|
NO UNDEFINED SYMBOLS
|
BIN
build/stm32f3xx_hal_pwr_ex.o
Normal file
BIN
build/stm32f3xx_hal_pwr_ex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_rcc.d
Normal file
66
build/stm32f3xx_hal_rcc.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_rcc.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
6334
build/stm32f3xx_hal_rcc.lst
Normal file
6334
build/stm32f3xx_hal_rcc.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_rcc.o
Normal file
BIN
build/stm32f3xx_hal_rcc.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_rcc_ex.d
Normal file
66
build/stm32f3xx_hal_rcc_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_rcc_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
4848
build/stm32f3xx_hal_rcc_ex.lst
Normal file
4848
build/stm32f3xx_hal_rcc_ex.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_rcc_ex.o
Normal file
BIN
build/stm32f3xx_hal_rcc_ex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_spi.d
Normal file
66
build/stm32f3xx_hal_spi.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_spi.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
15304
build/stm32f3xx_hal_spi.lst
Normal file
15304
build/stm32f3xx_hal_spi.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_spi.o
Normal file
BIN
build/stm32f3xx_hal_spi.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_spi_ex.d
Normal file
66
build/stm32f3xx_hal_spi_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_spi_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
235
build/stm32f3xx_hal_spi_ex.lst
Normal file
235
build/stm32f3xx_hal_spi_ex.lst
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
ARM GAS /tmp/ccBq5tVX.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_spi_ex.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c"
|
||||||
|
20 .section .text.HAL_SPIEx_FlushRxFifo,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global HAL_SPIEx_FlushRxFifo
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 HAL_SPIEx_FlushRxFifo:
|
||||||
|
28 .LVL0:
|
||||||
|
29 .LFB130:
|
||||||
|
1:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /**
|
||||||
|
2:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** ******************************************************************************
|
||||||
|
3:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @file stm32f3xx_hal_spi_ex.c
|
||||||
|
4:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @author MCD Application Team
|
||||||
|
5:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @brief Extended SPI HAL module driver.
|
||||||
|
6:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * This file provides firmware functions to manage the following
|
||||||
|
7:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * SPI peripheral extended functionalities :
|
||||||
|
8:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * + IO operation functions
|
||||||
|
9:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** *
|
||||||
|
10:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** ******************************************************************************
|
||||||
|
11:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @attention
|
||||||
|
12:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** *
|
||||||
|
13:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * Copyright (c) 2016 STMicroelectronics.
|
||||||
|
14:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * All rights reserved.
|
||||||
|
15:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** *
|
||||||
|
16:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
17:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * in the root directory of this software component.
|
||||||
|
18:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
19:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** *
|
||||||
|
20:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** ******************************************************************************
|
||||||
|
21:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
22:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
23:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Includes ------------------------------------------------------------------*/
|
||||||
|
24:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** #include "stm32f3xx_hal.h"
|
||||||
|
25:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
26:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /** @addtogroup STM32F3xx_HAL_Driver
|
||||||
|
27:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @{
|
||||||
|
28:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
29:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
ARM GAS /tmp/ccBq5tVX.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
30:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /** @defgroup SPIEx SPIEx
|
||||||
|
31:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @brief SPI Extended HAL module driver
|
||||||
|
32:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @{
|
||||||
|
33:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
34:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** #ifdef HAL_SPI_MODULE_ENABLED
|
||||||
|
35:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
36:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Private typedef -----------------------------------------------------------*/
|
||||||
|
37:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Private defines -----------------------------------------------------------*/
|
||||||
|
38:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /** @defgroup SPIEx_Private_Constants SPIEx Private Constants
|
||||||
|
39:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @{
|
||||||
|
40:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
41:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** #define SPI_FIFO_SIZE 4UL
|
||||||
|
42:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /**
|
||||||
|
43:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @}
|
||||||
|
44:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
45:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
46:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Private macros ------------------------------------------------------------*/
|
||||||
|
47:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Private variables ---------------------------------------------------------*/
|
||||||
|
48:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
|
49:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /* Exported functions --------------------------------------------------------*/
|
||||||
|
50:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
51:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /** @defgroup SPIEx_Exported_Functions SPIEx Exported Functions
|
||||||
|
52:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @{
|
||||||
|
53:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
54:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
55:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /** @defgroup SPIEx_Exported_Functions_Group1 IO operation functions
|
||||||
|
56:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @brief Data transfers functions
|
||||||
|
57:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** *
|
||||||
|
58:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** @verbatim
|
||||||
|
59:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** ==============================================================================
|
||||||
|
60:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** ##### IO operation functions #####
|
||||||
|
61:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** ===============================================================================
|
||||||
|
62:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** [..]
|
||||||
|
63:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** This subsection provides a set of extended functions to manage the SPI
|
||||||
|
64:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** data transfers.
|
||||||
|
65:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
66:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** (#) Rx data flush function:
|
||||||
|
67:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** (++) HAL_SPIEx_FlushRxFifo()
|
||||||
|
68:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
69:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** @endverbatim
|
||||||
|
70:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @{
|
||||||
|
71:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
72:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c ****
|
||||||
|
73:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** /**
|
||||||
|
74:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @brief Flush the RX fifo.
|
||||||
|
75:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @param hspi pointer to a SPI_HandleTypeDef structure that contains
|
||||||
|
76:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * the configuration information for the specified SPI module.
|
||||||
|
77:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** * @retval HAL status
|
||||||
|
78:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** */
|
||||||
|
79:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** HAL_StatusTypeDef HAL_SPIEx_FlushRxFifo(SPI_HandleTypeDef *hspi)
|
||||||
|
80:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** {
|
||||||
|
30 .loc 1 80 1 view -0
|
||||||
|
31 .cfi_startproc
|
||||||
|
32 @ args = 0, pretend = 0, frame = 8
|
||||||
|
33 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
34 @ link register save eliminated.
|
||||||
|
81:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** __IO uint32_t tmpreg;
|
||||||
|
ARM GAS /tmp/ccBq5tVX.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
35 .loc 1 81 3 view .LVU1
|
||||||
|
82:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** uint8_t count = 0U;
|
||||||
|
36 .loc 1 82 3 view .LVU2
|
||||||
|
83:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** while ((hspi->Instance->SR & SPI_FLAG_FRLVL) != SPI_FRLVL_EMPTY)
|
||||||
|
37 .loc 1 83 3 view .LVU3
|
||||||
|
82:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** uint8_t count = 0U;
|
||||||
|
38 .loc 1 82 12 is_stmt 0 view .LVU4
|
||||||
|
39 0000 0023 movs r3, #0
|
||||||
|
40 .LVL1:
|
||||||
|
41 .loc 1 83 48 is_stmt 1 view .LVU5
|
||||||
|
42 .loc 1 83 15 is_stmt 0 view .LVU6
|
||||||
|
43 0002 0268 ldr r2, [r0]
|
||||||
|
44 .loc 1 83 25 view .LVU7
|
||||||
|
45 0004 9168 ldr r1, [r2, #8]
|
||||||
|
46 .loc 1 83 48 view .LVU8
|
||||||
|
47 0006 11F4C06F tst r1, #1536
|
||||||
|
48 000a 12D0 beq .L10
|
||||||
|
80:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** __IO uint32_t tmpreg;
|
||||||
|
49 .loc 1 80 1 view .LVU9
|
||||||
|
50 000c 82B0 sub sp, sp, #8
|
||||||
|
51 .cfi_def_cfa_offset 8
|
||||||
|
52 000e 04E0 b .L4
|
||||||
|
53 .L12:
|
||||||
|
54 .loc 1 83 48 is_stmt 1 view .LVU10
|
||||||
|
55 .loc 1 83 15 is_stmt 0 view .LVU11
|
||||||
|
56 0010 0268 ldr r2, [r0]
|
||||||
|
57 .loc 1 83 25 view .LVU12
|
||||||
|
58 0012 9168 ldr r1, [r2, #8]
|
||||||
|
59 .loc 1 83 48 view .LVU13
|
||||||
|
60 0014 11F4C06F tst r1, #1536
|
||||||
|
61 0018 09D0 beq .L11
|
||||||
|
62 .L4:
|
||||||
|
84:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** {
|
||||||
|
85:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** count++;
|
||||||
|
63 .loc 1 85 5 is_stmt 1 view .LVU14
|
||||||
|
64 .loc 1 85 10 is_stmt 0 view .LVU15
|
||||||
|
65 001a 0133 adds r3, r3, #1
|
||||||
|
66 .LVL2:
|
||||||
|
67 .loc 1 85 10 view .LVU16
|
||||||
|
68 001c DBB2 uxtb r3, r3
|
||||||
|
69 .LVL3:
|
||||||
|
86:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** tmpreg = hspi->Instance->DR;
|
||||||
|
70 .loc 1 86 5 is_stmt 1 view .LVU17
|
||||||
|
71 .loc 1 86 28 is_stmt 0 view .LVU18
|
||||||
|
72 001e D268 ldr r2, [r2, #12]
|
||||||
|
73 .loc 1 86 12 view .LVU19
|
||||||
|
74 0020 0192 str r2, [sp, #4]
|
||||||
|
87:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** UNUSED(tmpreg); /* To avoid GCC warning */
|
||||||
|
75 .loc 1 87 5 is_stmt 1 view .LVU20
|
||||||
|
76 0022 019A ldr r2, [sp, #4]
|
||||||
|
88:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** if (count == SPI_FIFO_SIZE)
|
||||||
|
77 .loc 1 88 5 view .LVU21
|
||||||
|
78 .loc 1 88 8 is_stmt 0 view .LVU22
|
||||||
|
79 0024 042B cmp r3, #4
|
||||||
|
80 0026 F3D1 bne .L12
|
||||||
|
89:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** {
|
||||||
|
90:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** return HAL_TIMEOUT;
|
||||||
|
ARM GAS /tmp/ccBq5tVX.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
81 .loc 1 90 14 view .LVU23
|
||||||
|
82 0028 0320 movs r0, #3
|
||||||
|
83 .LVL4:
|
||||||
|
84 .L3:
|
||||||
|
91:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** }
|
||||||
|
92:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** }
|
||||||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** return HAL_OK;
|
||||||
|
94:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** }
|
||||||
|
85 .loc 1 94 1 view .LVU24
|
||||||
|
86 002a 02B0 add sp, sp, #8
|
||||||
|
87 .cfi_remember_state
|
||||||
|
88 .cfi_def_cfa_offset 0
|
||||||
|
89 @ sp needed
|
||||||
|
90 002c 7047 bx lr
|
||||||
|
91 .LVL5:
|
||||||
|
92 .L11:
|
||||||
|
93 .cfi_restore_state
|
||||||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** }
|
||||||
|
94 .loc 1 93 10 view .LVU25
|
||||||
|
95 002e 0020 movs r0, #0
|
||||||
|
96 .LVL6:
|
||||||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** }
|
||||||
|
97 .loc 1 93 10 view .LVU26
|
||||||
|
98 0030 FBE7 b .L3
|
||||||
|
99 .LVL7:
|
||||||
|
100 .L10:
|
||||||
|
101 .cfi_def_cfa_offset 0
|
||||||
|
93:Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c **** }
|
||||||
|
102 .loc 1 93 10 view .LVU27
|
||||||
|
103 0032 0020 movs r0, #0
|
||||||
|
104 .LVL8:
|
||||||
|
105 .loc 1 94 1 view .LVU28
|
||||||
|
106 0034 7047 bx lr
|
||||||
|
107 .cfi_endproc
|
||||||
|
108 .LFE130:
|
||||||
|
110 .text
|
||||||
|
111 .Letext0:
|
||||||
|
112 .file 2 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
113 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
114 .file 4 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h"
|
||||||
|
115 .file 5 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h"
|
||||||
|
116 .file 6 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h"
|
||||||
|
117 .file 7 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h"
|
||||||
|
ARM GAS /tmp/ccBq5tVX.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 stm32f3xx_hal_spi_ex.c
|
||||||
|
/tmp/ccBq5tVX.s:21 .text.HAL_SPIEx_FlushRxFifo:00000000 $t
|
||||||
|
/tmp/ccBq5tVX.s:27 .text.HAL_SPIEx_FlushRxFifo:00000000 HAL_SPIEx_FlushRxFifo
|
||||||
|
|
||||||
|
NO UNDEFINED SYMBOLS
|
BIN
build/stm32f3xx_hal_spi_ex.o
Normal file
BIN
build/stm32f3xx_hal_spi_ex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_tim.d
Normal file
66
build/stm32f3xx_hal_tim.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_tim.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
30084
build/stm32f3xx_hal_tim.lst
Normal file
30084
build/stm32f3xx_hal_tim.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_tim.o
Normal file
BIN
build/stm32f3xx_hal_tim.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_tim_ex.d
Normal file
66
build/stm32f3xx_hal_tim_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_tim_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
10298
build/stm32f3xx_hal_tim_ex.lst
Normal file
10298
build/stm32f3xx_hal_tim_ex.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_tim_ex.o
Normal file
BIN
build/stm32f3xx_hal_tim_ex.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_uart.d
Normal file
66
build/stm32f3xx_hal_uart.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_uart.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
19979
build/stm32f3xx_hal_uart.lst
Normal file
19979
build/stm32f3xx_hal_uart.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_uart.o
Normal file
BIN
build/stm32f3xx_hal_uart.o
Normal file
Binary file not shown.
66
build/stm32f3xx_hal_uart_ex.d
Normal file
66
build/stm32f3xx_hal_uart_ex.d
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
build/stm32f3xx_hal_uart_ex.o: \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_uart_ex.c \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
3703
build/stm32f3xx_hal_uart_ex.lst
Normal file
3703
build/stm32f3xx_hal_uart_ex.lst
Normal file
File diff suppressed because it is too large
Load Diff
BIN
build/stm32f3xx_hal_uart_ex.o
Normal file
BIN
build/stm32f3xx_hal_uart_ex.o
Normal file
Binary file not shown.
68
build/stm32f3xx_it.d
Normal file
68
build/stm32f3xx_it.d
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
build/stm32f3xx_it.o: Core/Src/stm32f3xx_it.c Core/Inc/main.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h \
|
||||||
|
Core/Inc/stm32f3xx_it.h
|
||||||
|
Core/Inc/main.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
||||||
|
Core/Inc/stm32f3xx_it.h:
|
445
build/stm32f3xx_it.lst
Normal file
445
build/stm32f3xx_it.lst
Normal file
@ -0,0 +1,445 @@
|
|||||||
|
ARM GAS /tmp/cccBVWnx.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_it.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Core/Src/stm32f3xx_it.c"
|
||||||
|
20 .section .text.NMI_Handler,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global NMI_Handler
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 NMI_Handler:
|
||||||
|
28 .LFB130:
|
||||||
|
1:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN Header */
|
||||||
|
2:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
3:Core/Src/stm32f3xx_it.c **** ******************************************************************************
|
||||||
|
4:Core/Src/stm32f3xx_it.c **** * @file stm32f3xx_it.c
|
||||||
|
5:Core/Src/stm32f3xx_it.c **** * @brief Interrupt Service Routines.
|
||||||
|
6:Core/Src/stm32f3xx_it.c **** ******************************************************************************
|
||||||
|
7:Core/Src/stm32f3xx_it.c **** * @attention
|
||||||
|
8:Core/Src/stm32f3xx_it.c **** *
|
||||||
|
9:Core/Src/stm32f3xx_it.c **** * Copyright (c) 2024 STMicroelectronics.
|
||||||
|
10:Core/Src/stm32f3xx_it.c **** * All rights reserved.
|
||||||
|
11:Core/Src/stm32f3xx_it.c **** *
|
||||||
|
12:Core/Src/stm32f3xx_it.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
13:Core/Src/stm32f3xx_it.c **** * in the root directory of this software component.
|
||||||
|
14:Core/Src/stm32f3xx_it.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
15:Core/Src/stm32f3xx_it.c **** *
|
||||||
|
16:Core/Src/stm32f3xx_it.c **** ******************************************************************************
|
||||||
|
17:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
18:Core/Src/stm32f3xx_it.c **** /* USER CODE END Header */
|
||||||
|
19:Core/Src/stm32f3xx_it.c ****
|
||||||
|
20:Core/Src/stm32f3xx_it.c **** /* Includes ------------------------------------------------------------------*/
|
||||||
|
21:Core/Src/stm32f3xx_it.c **** #include "main.h"
|
||||||
|
22:Core/Src/stm32f3xx_it.c **** #include "stm32f3xx_it.h"
|
||||||
|
23:Core/Src/stm32f3xx_it.c **** /* Private includes ----------------------------------------------------------*/
|
||||||
|
24:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN Includes */
|
||||||
|
25:Core/Src/stm32f3xx_it.c **** /* USER CODE END Includes */
|
||||||
|
26:Core/Src/stm32f3xx_it.c ****
|
||||||
|
27:Core/Src/stm32f3xx_it.c **** /* Private typedef -----------------------------------------------------------*/
|
||||||
|
28:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN TD */
|
||||||
|
29:Core/Src/stm32f3xx_it.c ****
|
||||||
|
30:Core/Src/stm32f3xx_it.c **** /* USER CODE END TD */
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
31:Core/Src/stm32f3xx_it.c ****
|
||||||
|
32:Core/Src/stm32f3xx_it.c **** /* Private define ------------------------------------------------------------*/
|
||||||
|
33:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN PD */
|
||||||
|
34:Core/Src/stm32f3xx_it.c ****
|
||||||
|
35:Core/Src/stm32f3xx_it.c **** /* USER CODE END PD */
|
||||||
|
36:Core/Src/stm32f3xx_it.c ****
|
||||||
|
37:Core/Src/stm32f3xx_it.c **** /* Private macro -------------------------------------------------------------*/
|
||||||
|
38:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN PM */
|
||||||
|
39:Core/Src/stm32f3xx_it.c ****
|
||||||
|
40:Core/Src/stm32f3xx_it.c **** /* USER CODE END PM */
|
||||||
|
41:Core/Src/stm32f3xx_it.c ****
|
||||||
|
42:Core/Src/stm32f3xx_it.c **** /* Private variables ---------------------------------------------------------*/
|
||||||
|
43:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN PV */
|
||||||
|
44:Core/Src/stm32f3xx_it.c ****
|
||||||
|
45:Core/Src/stm32f3xx_it.c **** /* USER CODE END PV */
|
||||||
|
46:Core/Src/stm32f3xx_it.c ****
|
||||||
|
47:Core/Src/stm32f3xx_it.c **** /* Private function prototypes -----------------------------------------------*/
|
||||||
|
48:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN PFP */
|
||||||
|
49:Core/Src/stm32f3xx_it.c ****
|
||||||
|
50:Core/Src/stm32f3xx_it.c **** /* USER CODE END PFP */
|
||||||
|
51:Core/Src/stm32f3xx_it.c ****
|
||||||
|
52:Core/Src/stm32f3xx_it.c **** /* Private user code ---------------------------------------------------------*/
|
||||||
|
53:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN 0 */
|
||||||
|
54:Core/Src/stm32f3xx_it.c ****
|
||||||
|
55:Core/Src/stm32f3xx_it.c **** /* USER CODE END 0 */
|
||||||
|
56:Core/Src/stm32f3xx_it.c ****
|
||||||
|
57:Core/Src/stm32f3xx_it.c **** /* External variables --------------------------------------------------------*/
|
||||||
|
58:Core/Src/stm32f3xx_it.c ****
|
||||||
|
59:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN EV */
|
||||||
|
60:Core/Src/stm32f3xx_it.c ****
|
||||||
|
61:Core/Src/stm32f3xx_it.c **** /* USER CODE END EV */
|
||||||
|
62:Core/Src/stm32f3xx_it.c ****
|
||||||
|
63:Core/Src/stm32f3xx_it.c **** /******************************************************************************/
|
||||||
|
64:Core/Src/stm32f3xx_it.c **** /* Cortex-M4 Processor Interruption and Exception Handlers */
|
||||||
|
65:Core/Src/stm32f3xx_it.c **** /******************************************************************************/
|
||||||
|
66:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
67:Core/Src/stm32f3xx_it.c **** * @brief This function handles Non maskable interrupt.
|
||||||
|
68:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
69:Core/Src/stm32f3xx_it.c **** void NMI_Handler(void)
|
||||||
|
70:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
29 .loc 1 70 1 view -0
|
||||||
|
30 .cfi_startproc
|
||||||
|
31 @ Volatile: function does not return.
|
||||||
|
32 @ args = 0, pretend = 0, frame = 0
|
||||||
|
33 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
34 @ link register save eliminated.
|
||||||
|
35 .L2:
|
||||||
|
71:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN NonMaskableInt_IRQn 0 */
|
||||||
|
72:Core/Src/stm32f3xx_it.c ****
|
||||||
|
73:Core/Src/stm32f3xx_it.c **** /* USER CODE END NonMaskableInt_IRQn 0 */
|
||||||
|
74:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN NonMaskableInt_IRQn 1 */
|
||||||
|
75:Core/Src/stm32f3xx_it.c **** while (1)
|
||||||
|
36 .loc 1 75 4 view .LVU1
|
||||||
|
76:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
77:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
37 .loc 1 77 3 view .LVU2
|
||||||
|
75:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
38 .loc 1 75 10 view .LVU3
|
||||||
|
39 0000 FEE7 b .L2
|
||||||
|
40 .cfi_endproc
|
||||||
|
41 .LFE130:
|
||||||
|
43 .section .text.HardFault_Handler,"ax",%progbits
|
||||||
|
44 .align 1
|
||||||
|
45 .global HardFault_Handler
|
||||||
|
46 .syntax unified
|
||||||
|
47 .thumb
|
||||||
|
48 .thumb_func
|
||||||
|
50 HardFault_Handler:
|
||||||
|
51 .LFB131:
|
||||||
|
78:Core/Src/stm32f3xx_it.c **** /* USER CODE END NonMaskableInt_IRQn 1 */
|
||||||
|
79:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
80:Core/Src/stm32f3xx_it.c ****
|
||||||
|
81:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
82:Core/Src/stm32f3xx_it.c **** * @brief This function handles Hard fault interrupt.
|
||||||
|
83:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
84:Core/Src/stm32f3xx_it.c **** void HardFault_Handler(void)
|
||||||
|
85:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
52 .loc 1 85 1 view -0
|
||||||
|
53 .cfi_startproc
|
||||||
|
54 @ Volatile: function does not return.
|
||||||
|
55 @ args = 0, pretend = 0, frame = 0
|
||||||
|
56 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
57 @ link register save eliminated.
|
||||||
|
58 .L4:
|
||||||
|
86:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN HardFault_IRQn 0 */
|
||||||
|
87:Core/Src/stm32f3xx_it.c ****
|
||||||
|
88:Core/Src/stm32f3xx_it.c **** /* USER CODE END HardFault_IRQn 0 */
|
||||||
|
89:Core/Src/stm32f3xx_it.c **** while (1)
|
||||||
|
59 .loc 1 89 3 view .LVU5
|
||||||
|
90:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
91:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN W1_HardFault_IRQn 0 */
|
||||||
|
92:Core/Src/stm32f3xx_it.c **** /* USER CODE END W1_HardFault_IRQn 0 */
|
||||||
|
93:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
60 .loc 1 93 3 view .LVU6
|
||||||
|
89:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
61 .loc 1 89 9 view .LVU7
|
||||||
|
62 0000 FEE7 b .L4
|
||||||
|
63 .cfi_endproc
|
||||||
|
64 .LFE131:
|
||||||
|
66 .section .text.MemManage_Handler,"ax",%progbits
|
||||||
|
67 .align 1
|
||||||
|
68 .global MemManage_Handler
|
||||||
|
69 .syntax unified
|
||||||
|
70 .thumb
|
||||||
|
71 .thumb_func
|
||||||
|
73 MemManage_Handler:
|
||||||
|
74 .LFB132:
|
||||||
|
94:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
95:Core/Src/stm32f3xx_it.c ****
|
||||||
|
96:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
97:Core/Src/stm32f3xx_it.c **** * @brief This function handles Memory management fault.
|
||||||
|
98:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
99:Core/Src/stm32f3xx_it.c **** void MemManage_Handler(void)
|
||||||
|
100:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
75 .loc 1 100 1 view -0
|
||||||
|
76 .cfi_startproc
|
||||||
|
77 @ Volatile: function does not return.
|
||||||
|
78 @ args = 0, pretend = 0, frame = 0
|
||||||
|
79 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
80 @ link register save eliminated.
|
||||||
|
81 .L6:
|
||||||
|
101:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN MemoryManagement_IRQn 0 */
|
||||||
|
102:Core/Src/stm32f3xx_it.c ****
|
||||||
|
103:Core/Src/stm32f3xx_it.c **** /* USER CODE END MemoryManagement_IRQn 0 */
|
||||||
|
104:Core/Src/stm32f3xx_it.c **** while (1)
|
||||||
|
82 .loc 1 104 3 view .LVU9
|
||||||
|
105:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
106:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN W1_MemoryManagement_IRQn 0 */
|
||||||
|
107:Core/Src/stm32f3xx_it.c **** /* USER CODE END W1_MemoryManagement_IRQn 0 */
|
||||||
|
108:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
83 .loc 1 108 3 view .LVU10
|
||||||
|
104:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
84 .loc 1 104 9 view .LVU11
|
||||||
|
85 0000 FEE7 b .L6
|
||||||
|
86 .cfi_endproc
|
||||||
|
87 .LFE132:
|
||||||
|
89 .section .text.BusFault_Handler,"ax",%progbits
|
||||||
|
90 .align 1
|
||||||
|
91 .global BusFault_Handler
|
||||||
|
92 .syntax unified
|
||||||
|
93 .thumb
|
||||||
|
94 .thumb_func
|
||||||
|
96 BusFault_Handler:
|
||||||
|
97 .LFB133:
|
||||||
|
109:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
110:Core/Src/stm32f3xx_it.c ****
|
||||||
|
111:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
112:Core/Src/stm32f3xx_it.c **** * @brief This function handles Pre-fetch fault, memory access fault.
|
||||||
|
113:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
114:Core/Src/stm32f3xx_it.c **** void BusFault_Handler(void)
|
||||||
|
115:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
98 .loc 1 115 1 view -0
|
||||||
|
99 .cfi_startproc
|
||||||
|
100 @ Volatile: function does not return.
|
||||||
|
101 @ args = 0, pretend = 0, frame = 0
|
||||||
|
102 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
103 @ link register save eliminated.
|
||||||
|
104 .L8:
|
||||||
|
116:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN BusFault_IRQn 0 */
|
||||||
|
117:Core/Src/stm32f3xx_it.c ****
|
||||||
|
118:Core/Src/stm32f3xx_it.c **** /* USER CODE END BusFault_IRQn 0 */
|
||||||
|
119:Core/Src/stm32f3xx_it.c **** while (1)
|
||||||
|
105 .loc 1 119 3 view .LVU13
|
||||||
|
120:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
121:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN W1_BusFault_IRQn 0 */
|
||||||
|
122:Core/Src/stm32f3xx_it.c **** /* USER CODE END W1_BusFault_IRQn 0 */
|
||||||
|
123:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
106 .loc 1 123 3 view .LVU14
|
||||||
|
119:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
107 .loc 1 119 9 view .LVU15
|
||||||
|
108 0000 FEE7 b .L8
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
109 .cfi_endproc
|
||||||
|
110 .LFE133:
|
||||||
|
112 .section .text.UsageFault_Handler,"ax",%progbits
|
||||||
|
113 .align 1
|
||||||
|
114 .global UsageFault_Handler
|
||||||
|
115 .syntax unified
|
||||||
|
116 .thumb
|
||||||
|
117 .thumb_func
|
||||||
|
119 UsageFault_Handler:
|
||||||
|
120 .LFB134:
|
||||||
|
124:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
125:Core/Src/stm32f3xx_it.c ****
|
||||||
|
126:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
127:Core/Src/stm32f3xx_it.c **** * @brief This function handles Undefined instruction or illegal state.
|
||||||
|
128:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
129:Core/Src/stm32f3xx_it.c **** void UsageFault_Handler(void)
|
||||||
|
130:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
121 .loc 1 130 1 view -0
|
||||||
|
122 .cfi_startproc
|
||||||
|
123 @ Volatile: function does not return.
|
||||||
|
124 @ args = 0, pretend = 0, frame = 0
|
||||||
|
125 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
126 @ link register save eliminated.
|
||||||
|
127 .L10:
|
||||||
|
131:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN UsageFault_IRQn 0 */
|
||||||
|
132:Core/Src/stm32f3xx_it.c ****
|
||||||
|
133:Core/Src/stm32f3xx_it.c **** /* USER CODE END UsageFault_IRQn 0 */
|
||||||
|
134:Core/Src/stm32f3xx_it.c **** while (1)
|
||||||
|
128 .loc 1 134 3 view .LVU17
|
||||||
|
135:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
136:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN W1_UsageFault_IRQn 0 */
|
||||||
|
137:Core/Src/stm32f3xx_it.c **** /* USER CODE END W1_UsageFault_IRQn 0 */
|
||||||
|
138:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
129 .loc 1 138 3 view .LVU18
|
||||||
|
134:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
130 .loc 1 134 9 view .LVU19
|
||||||
|
131 0000 FEE7 b .L10
|
||||||
|
132 .cfi_endproc
|
||||||
|
133 .LFE134:
|
||||||
|
135 .section .text.SVC_Handler,"ax",%progbits
|
||||||
|
136 .align 1
|
||||||
|
137 .global SVC_Handler
|
||||||
|
138 .syntax unified
|
||||||
|
139 .thumb
|
||||||
|
140 .thumb_func
|
||||||
|
142 SVC_Handler:
|
||||||
|
143 .LFB135:
|
||||||
|
139:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
140:Core/Src/stm32f3xx_it.c ****
|
||||||
|
141:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
142:Core/Src/stm32f3xx_it.c **** * @brief This function handles System service call via SWI instruction.
|
||||||
|
143:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
144:Core/Src/stm32f3xx_it.c **** void SVC_Handler(void)
|
||||||
|
145:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
144 .loc 1 145 1 view -0
|
||||||
|
145 .cfi_startproc
|
||||||
|
146 @ args = 0, pretend = 0, frame = 0
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 6
|
||||||
|
|
||||||
|
|
||||||
|
147 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
148 @ link register save eliminated.
|
||||||
|
146:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN SVCall_IRQn 0 */
|
||||||
|
147:Core/Src/stm32f3xx_it.c ****
|
||||||
|
148:Core/Src/stm32f3xx_it.c **** /* USER CODE END SVCall_IRQn 0 */
|
||||||
|
149:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN SVCall_IRQn 1 */
|
||||||
|
150:Core/Src/stm32f3xx_it.c ****
|
||||||
|
151:Core/Src/stm32f3xx_it.c **** /* USER CODE END SVCall_IRQn 1 */
|
||||||
|
152:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
149 .loc 1 152 1 view .LVU21
|
||||||
|
150 0000 7047 bx lr
|
||||||
|
151 .cfi_endproc
|
||||||
|
152 .LFE135:
|
||||||
|
154 .section .text.DebugMon_Handler,"ax",%progbits
|
||||||
|
155 .align 1
|
||||||
|
156 .global DebugMon_Handler
|
||||||
|
157 .syntax unified
|
||||||
|
158 .thumb
|
||||||
|
159 .thumb_func
|
||||||
|
161 DebugMon_Handler:
|
||||||
|
162 .LFB136:
|
||||||
|
153:Core/Src/stm32f3xx_it.c ****
|
||||||
|
154:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
155:Core/Src/stm32f3xx_it.c **** * @brief This function handles Debug monitor.
|
||||||
|
156:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
157:Core/Src/stm32f3xx_it.c **** void DebugMon_Handler(void)
|
||||||
|
158:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
163 .loc 1 158 1 view -0
|
||||||
|
164 .cfi_startproc
|
||||||
|
165 @ args = 0, pretend = 0, frame = 0
|
||||||
|
166 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
167 @ link register save eliminated.
|
||||||
|
159:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN DebugMonitor_IRQn 0 */
|
||||||
|
160:Core/Src/stm32f3xx_it.c ****
|
||||||
|
161:Core/Src/stm32f3xx_it.c **** /* USER CODE END DebugMonitor_IRQn 0 */
|
||||||
|
162:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN DebugMonitor_IRQn 1 */
|
||||||
|
163:Core/Src/stm32f3xx_it.c ****
|
||||||
|
164:Core/Src/stm32f3xx_it.c **** /* USER CODE END DebugMonitor_IRQn 1 */
|
||||||
|
165:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
168 .loc 1 165 1 view .LVU23
|
||||||
|
169 0000 7047 bx lr
|
||||||
|
170 .cfi_endproc
|
||||||
|
171 .LFE136:
|
||||||
|
173 .section .text.PendSV_Handler,"ax",%progbits
|
||||||
|
174 .align 1
|
||||||
|
175 .global PendSV_Handler
|
||||||
|
176 .syntax unified
|
||||||
|
177 .thumb
|
||||||
|
178 .thumb_func
|
||||||
|
180 PendSV_Handler:
|
||||||
|
181 .LFB137:
|
||||||
|
166:Core/Src/stm32f3xx_it.c ****
|
||||||
|
167:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
168:Core/Src/stm32f3xx_it.c **** * @brief This function handles Pendable request for system service.
|
||||||
|
169:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
170:Core/Src/stm32f3xx_it.c **** void PendSV_Handler(void)
|
||||||
|
171:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 7
|
||||||
|
|
||||||
|
|
||||||
|
182 .loc 1 171 1 view -0
|
||||||
|
183 .cfi_startproc
|
||||||
|
184 @ args = 0, pretend = 0, frame = 0
|
||||||
|
185 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
186 @ link register save eliminated.
|
||||||
|
172:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN PendSV_IRQn 0 */
|
||||||
|
173:Core/Src/stm32f3xx_it.c ****
|
||||||
|
174:Core/Src/stm32f3xx_it.c **** /* USER CODE END PendSV_IRQn 0 */
|
||||||
|
175:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN PendSV_IRQn 1 */
|
||||||
|
176:Core/Src/stm32f3xx_it.c ****
|
||||||
|
177:Core/Src/stm32f3xx_it.c **** /* USER CODE END PendSV_IRQn 1 */
|
||||||
|
178:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
187 .loc 1 178 1 view .LVU25
|
||||||
|
188 0000 7047 bx lr
|
||||||
|
189 .cfi_endproc
|
||||||
|
190 .LFE137:
|
||||||
|
192 .section .text.SysTick_Handler,"ax",%progbits
|
||||||
|
193 .align 1
|
||||||
|
194 .global SysTick_Handler
|
||||||
|
195 .syntax unified
|
||||||
|
196 .thumb
|
||||||
|
197 .thumb_func
|
||||||
|
199 SysTick_Handler:
|
||||||
|
200 .LFB138:
|
||||||
|
179:Core/Src/stm32f3xx_it.c ****
|
||||||
|
180:Core/Src/stm32f3xx_it.c **** /**
|
||||||
|
181:Core/Src/stm32f3xx_it.c **** * @brief This function handles System tick timer.
|
||||||
|
182:Core/Src/stm32f3xx_it.c **** */
|
||||||
|
183:Core/Src/stm32f3xx_it.c **** void SysTick_Handler(void)
|
||||||
|
184:Core/Src/stm32f3xx_it.c **** {
|
||||||
|
201 .loc 1 184 1 view -0
|
||||||
|
202 .cfi_startproc
|
||||||
|
203 @ args = 0, pretend = 0, frame = 0
|
||||||
|
204 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
205 0000 08B5 push {r3, lr}
|
||||||
|
206 .cfi_def_cfa_offset 8
|
||||||
|
207 .cfi_offset 3, -8
|
||||||
|
208 .cfi_offset 14, -4
|
||||||
|
185:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN SysTick_IRQn 0 */
|
||||||
|
186:Core/Src/stm32f3xx_it.c ****
|
||||||
|
187:Core/Src/stm32f3xx_it.c **** /* USER CODE END SysTick_IRQn 0 */
|
||||||
|
188:Core/Src/stm32f3xx_it.c **** HAL_IncTick();
|
||||||
|
209 .loc 1 188 3 view .LVU27
|
||||||
|
210 0002 FFF7FEFF bl HAL_IncTick
|
||||||
|
211 .LVL0:
|
||||||
|
189:Core/Src/stm32f3xx_it.c **** /* USER CODE BEGIN SysTick_IRQn 1 */
|
||||||
|
190:Core/Src/stm32f3xx_it.c ****
|
||||||
|
191:Core/Src/stm32f3xx_it.c **** /* USER CODE END SysTick_IRQn 1 */
|
||||||
|
192:Core/Src/stm32f3xx_it.c **** }
|
||||||
|
212 .loc 1 192 1 is_stmt 0 view .LVU28
|
||||||
|
213 0006 08BD pop {r3, pc}
|
||||||
|
214 .cfi_endproc
|
||||||
|
215 .LFE138:
|
||||||
|
217 .text
|
||||||
|
218 .Letext0:
|
||||||
|
219 .file 2 "Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h"
|
||||||
|
ARM GAS /tmp/cccBVWnx.s page 8
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 stm32f3xx_it.c
|
||||||
|
/tmp/cccBVWnx.s:21 .text.NMI_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:27 .text.NMI_Handler:00000000 NMI_Handler
|
||||||
|
/tmp/cccBVWnx.s:44 .text.HardFault_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:50 .text.HardFault_Handler:00000000 HardFault_Handler
|
||||||
|
/tmp/cccBVWnx.s:67 .text.MemManage_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:73 .text.MemManage_Handler:00000000 MemManage_Handler
|
||||||
|
/tmp/cccBVWnx.s:90 .text.BusFault_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:96 .text.BusFault_Handler:00000000 BusFault_Handler
|
||||||
|
/tmp/cccBVWnx.s:113 .text.UsageFault_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:119 .text.UsageFault_Handler:00000000 UsageFault_Handler
|
||||||
|
/tmp/cccBVWnx.s:136 .text.SVC_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:142 .text.SVC_Handler:00000000 SVC_Handler
|
||||||
|
/tmp/cccBVWnx.s:155 .text.DebugMon_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:161 .text.DebugMon_Handler:00000000 DebugMon_Handler
|
||||||
|
/tmp/cccBVWnx.s:174 .text.PendSV_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:180 .text.PendSV_Handler:00000000 PendSV_Handler
|
||||||
|
/tmp/cccBVWnx.s:193 .text.SysTick_Handler:00000000 $t
|
||||||
|
/tmp/cccBVWnx.s:199 .text.SysTick_Handler:00000000 SysTick_Handler
|
||||||
|
|
||||||
|
UNDEFINED SYMBOLS
|
||||||
|
HAL_IncTick
|
BIN
build/stm32f3xx_it.o
Normal file
BIN
build/stm32f3xx_it.o
Normal file
Binary file not shown.
1
build/syscalls.d
Normal file
1
build/syscalls.d
Normal file
@ -0,0 +1 @@
|
|||||||
|
build/syscalls.o: Core/Src/syscalls.c
|
861
build/syscalls.lst
Normal file
861
build/syscalls.lst
Normal file
@ -0,0 +1,861 @@
|
|||||||
|
ARM GAS /tmp/cc0T5371.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 "syscalls.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Core/Src/syscalls.c"
|
||||||
|
20 .section .text.initialise_monitor_handles,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global initialise_monitor_handles
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 initialise_monitor_handles:
|
||||||
|
28 .LFB25:
|
||||||
|
1:Core/Src/syscalls.c **** /**
|
||||||
|
2:Core/Src/syscalls.c **** ******************************************************************************
|
||||||
|
3:Core/Src/syscalls.c **** * @file syscalls.c
|
||||||
|
4:Core/Src/syscalls.c **** * @author Auto-generated by STM32CubeMX
|
||||||
|
5:Core/Src/syscalls.c **** * @brief Minimal System calls file
|
||||||
|
6:Core/Src/syscalls.c **** *
|
||||||
|
7:Core/Src/syscalls.c **** * For more information about which c-functions
|
||||||
|
8:Core/Src/syscalls.c **** * need which of these lowlevel functions
|
||||||
|
9:Core/Src/syscalls.c **** * please consult the Newlib libc-manual
|
||||||
|
10:Core/Src/syscalls.c **** ******************************************************************************
|
||||||
|
11:Core/Src/syscalls.c **** * @attention
|
||||||
|
12:Core/Src/syscalls.c **** *
|
||||||
|
13:Core/Src/syscalls.c **** * Copyright (c) 2020-2024 STMicroelectronics.
|
||||||
|
14:Core/Src/syscalls.c **** * All rights reserved.
|
||||||
|
15:Core/Src/syscalls.c **** *
|
||||||
|
16:Core/Src/syscalls.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
17:Core/Src/syscalls.c **** * in the root directory of this software component.
|
||||||
|
18:Core/Src/syscalls.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
19:Core/Src/syscalls.c **** *
|
||||||
|
20:Core/Src/syscalls.c **** ******************************************************************************
|
||||||
|
21:Core/Src/syscalls.c **** */
|
||||||
|
22:Core/Src/syscalls.c ****
|
||||||
|
23:Core/Src/syscalls.c **** /* Includes */
|
||||||
|
24:Core/Src/syscalls.c **** #include <sys/stat.h>
|
||||||
|
25:Core/Src/syscalls.c **** #include <stdlib.h>
|
||||||
|
26:Core/Src/syscalls.c **** #include <errno.h>
|
||||||
|
27:Core/Src/syscalls.c **** #include <stdio.h>
|
||||||
|
28:Core/Src/syscalls.c **** #include <signal.h>
|
||||||
|
29:Core/Src/syscalls.c **** #include <time.h>
|
||||||
|
30:Core/Src/syscalls.c **** #include <sys/time.h>
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
31:Core/Src/syscalls.c **** #include <sys/times.h>
|
||||||
|
32:Core/Src/syscalls.c ****
|
||||||
|
33:Core/Src/syscalls.c ****
|
||||||
|
34:Core/Src/syscalls.c **** /* Variables */
|
||||||
|
35:Core/Src/syscalls.c **** extern int __io_putchar(int ch) __attribute__((weak));
|
||||||
|
36:Core/Src/syscalls.c **** extern int __io_getchar(void) __attribute__((weak));
|
||||||
|
37:Core/Src/syscalls.c ****
|
||||||
|
38:Core/Src/syscalls.c ****
|
||||||
|
39:Core/Src/syscalls.c **** char *__env[1] = { 0 };
|
||||||
|
40:Core/Src/syscalls.c **** char **environ = __env;
|
||||||
|
41:Core/Src/syscalls.c ****
|
||||||
|
42:Core/Src/syscalls.c ****
|
||||||
|
43:Core/Src/syscalls.c **** /* Functions */
|
||||||
|
44:Core/Src/syscalls.c **** void initialise_monitor_handles()
|
||||||
|
45:Core/Src/syscalls.c **** {
|
||||||
|
29 .loc 1 45 1 view -0
|
||||||
|
30 .cfi_startproc
|
||||||
|
31 @ args = 0, pretend = 0, frame = 0
|
||||||
|
32 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
33 @ link register save eliminated.
|
||||||
|
46:Core/Src/syscalls.c **** }
|
||||||
|
34 .loc 1 46 1 view .LVU1
|
||||||
|
35 0000 7047 bx lr
|
||||||
|
36 .cfi_endproc
|
||||||
|
37 .LFE25:
|
||||||
|
39 .section .text._getpid,"ax",%progbits
|
||||||
|
40 .align 1
|
||||||
|
41 .global _getpid
|
||||||
|
42 .syntax unified
|
||||||
|
43 .thumb
|
||||||
|
44 .thumb_func
|
||||||
|
46 _getpid:
|
||||||
|
47 .LFB26:
|
||||||
|
47:Core/Src/syscalls.c ****
|
||||||
|
48:Core/Src/syscalls.c **** int _getpid(void)
|
||||||
|
49:Core/Src/syscalls.c **** {
|
||||||
|
48 .loc 1 49 1 view -0
|
||||||
|
49 .cfi_startproc
|
||||||
|
50 @ args = 0, pretend = 0, frame = 0
|
||||||
|
51 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
52 @ link register save eliminated.
|
||||||
|
50:Core/Src/syscalls.c **** return 1;
|
||||||
|
53 .loc 1 50 3 view .LVU3
|
||||||
|
51:Core/Src/syscalls.c **** }
|
||||||
|
54 .loc 1 51 1 is_stmt 0 view .LVU4
|
||||||
|
55 0000 0120 movs r0, #1
|
||||||
|
56 0002 7047 bx lr
|
||||||
|
57 .cfi_endproc
|
||||||
|
58 .LFE26:
|
||||||
|
60 .section .text._kill,"ax",%progbits
|
||||||
|
61 .align 1
|
||||||
|
62 .global _kill
|
||||||
|
63 .syntax unified
|
||||||
|
64 .thumb
|
||||||
|
65 .thumb_func
|
||||||
|
67 _kill:
|
||||||
|
68 .LVL0:
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
69 .LFB27:
|
||||||
|
52:Core/Src/syscalls.c ****
|
||||||
|
53:Core/Src/syscalls.c **** int _kill(int pid, int sig)
|
||||||
|
54:Core/Src/syscalls.c **** {
|
||||||
|
70 .loc 1 54 1 is_stmt 1 view -0
|
||||||
|
71 .cfi_startproc
|
||||||
|
72 @ args = 0, pretend = 0, frame = 0
|
||||||
|
73 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
74 .loc 1 54 1 is_stmt 0 view .LVU6
|
||||||
|
75 0000 08B5 push {r3, lr}
|
||||||
|
76 .cfi_def_cfa_offset 8
|
||||||
|
77 .cfi_offset 3, -8
|
||||||
|
78 .cfi_offset 14, -4
|
||||||
|
55:Core/Src/syscalls.c **** (void)pid;
|
||||||
|
79 .loc 1 55 3 is_stmt 1 view .LVU7
|
||||||
|
56:Core/Src/syscalls.c **** (void)sig;
|
||||||
|
80 .loc 1 56 3 view .LVU8
|
||||||
|
57:Core/Src/syscalls.c **** errno = EINVAL;
|
||||||
|
81 .loc 1 57 3 view .LVU9
|
||||||
|
82 0002 FFF7FEFF bl __errno
|
||||||
|
83 .LVL1:
|
||||||
|
84 .loc 1 57 9 is_stmt 0 discriminator 1 view .LVU10
|
||||||
|
85 0006 1623 movs r3, #22
|
||||||
|
86 0008 0360 str r3, [r0]
|
||||||
|
58:Core/Src/syscalls.c **** return -1;
|
||||||
|
87 .loc 1 58 3 is_stmt 1 view .LVU11
|
||||||
|
59:Core/Src/syscalls.c **** }
|
||||||
|
88 .loc 1 59 1 is_stmt 0 view .LVU12
|
||||||
|
89 000a 4FF0FF30 mov r0, #-1
|
||||||
|
90 000e 08BD pop {r3, pc}
|
||||||
|
91 .cfi_endproc
|
||||||
|
92 .LFE27:
|
||||||
|
94 .section .text._exit,"ax",%progbits
|
||||||
|
95 .align 1
|
||||||
|
96 .global _exit
|
||||||
|
97 .syntax unified
|
||||||
|
98 .thumb
|
||||||
|
99 .thumb_func
|
||||||
|
101 _exit:
|
||||||
|
102 .LVL2:
|
||||||
|
103 .LFB28:
|
||||||
|
60:Core/Src/syscalls.c ****
|
||||||
|
61:Core/Src/syscalls.c **** void _exit (int status)
|
||||||
|
62:Core/Src/syscalls.c **** {
|
||||||
|
104 .loc 1 62 1 is_stmt 1 view -0
|
||||||
|
105 .cfi_startproc
|
||||||
|
106 @ Volatile: function does not return.
|
||||||
|
107 @ args = 0, pretend = 0, frame = 0
|
||||||
|
108 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
109 .loc 1 62 1 is_stmt 0 view .LVU14
|
||||||
|
110 0000 08B5 push {r3, lr}
|
||||||
|
111 .cfi_def_cfa_offset 8
|
||||||
|
112 .cfi_offset 3, -8
|
||||||
|
113 .cfi_offset 14, -4
|
||||||
|
63:Core/Src/syscalls.c **** _kill(status, -1);
|
||||||
|
114 .loc 1 63 3 is_stmt 1 view .LVU15
|
||||||
|
115 0002 4FF0FF31 mov r1, #-1
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
116 0006 FFF7FEFF bl _kill
|
||||||
|
117 .LVL3:
|
||||||
|
118 .L6:
|
||||||
|
64:Core/Src/syscalls.c **** while (1) {} /* Make sure we hang here */
|
||||||
|
119 .loc 1 64 3 view .LVU16
|
||||||
|
120 .loc 1 64 14 view .LVU17
|
||||||
|
121 .loc 1 64 9 view .LVU18
|
||||||
|
122 000a FEE7 b .L6
|
||||||
|
123 .cfi_endproc
|
||||||
|
124 .LFE28:
|
||||||
|
126 .section .text._read,"ax",%progbits
|
||||||
|
127 .align 1
|
||||||
|
128 .weak _read
|
||||||
|
129 .syntax unified
|
||||||
|
130 .thumb
|
||||||
|
131 .thumb_func
|
||||||
|
133 _read:
|
||||||
|
134 .LVL4:
|
||||||
|
135 .LFB29:
|
||||||
|
65:Core/Src/syscalls.c **** }
|
||||||
|
66:Core/Src/syscalls.c ****
|
||||||
|
67:Core/Src/syscalls.c **** __attribute__((weak)) int _read(int file, char *ptr, int len)
|
||||||
|
68:Core/Src/syscalls.c **** {
|
||||||
|
136 .loc 1 68 1 view -0
|
||||||
|
137 .cfi_startproc
|
||||||
|
138 @ args = 0, pretend = 0, frame = 0
|
||||||
|
139 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
140 .loc 1 68 1 is_stmt 0 view .LVU20
|
||||||
|
141 0000 70B5 push {r4, r5, r6, lr}
|
||||||
|
142 .cfi_def_cfa_offset 16
|
||||||
|
143 .cfi_offset 4, -16
|
||||||
|
144 .cfi_offset 5, -12
|
||||||
|
145 .cfi_offset 6, -8
|
||||||
|
146 .cfi_offset 14, -4
|
||||||
|
147 0002 0C46 mov r4, r1
|
||||||
|
148 0004 1646 mov r6, r2
|
||||||
|
69:Core/Src/syscalls.c **** (void)file;
|
||||||
|
149 .loc 1 69 3 is_stmt 1 view .LVU21
|
||||||
|
70:Core/Src/syscalls.c **** int DataIdx;
|
||||||
|
150 .loc 1 70 3 view .LVU22
|
||||||
|
71:Core/Src/syscalls.c ****
|
||||||
|
72:Core/Src/syscalls.c **** for (DataIdx = 0; DataIdx < len; DataIdx++)
|
||||||
|
151 .loc 1 72 3 view .LVU23
|
||||||
|
152 .LVL5:
|
||||||
|
153 .loc 1 72 16 is_stmt 0 view .LVU24
|
||||||
|
154 0006 0025 movs r5, #0
|
||||||
|
155 .loc 1 72 3 view .LVU25
|
||||||
|
156 0008 06E0 b .L9
|
||||||
|
157 .LVL6:
|
||||||
|
158 .L10:
|
||||||
|
73:Core/Src/syscalls.c **** {
|
||||||
|
74:Core/Src/syscalls.c **** *ptr++ = __io_getchar();
|
||||||
|
159 .loc 1 74 5 is_stmt 1 view .LVU26
|
||||||
|
160 .loc 1 74 14 is_stmt 0 view .LVU27
|
||||||
|
161 000a FFF7FEFF bl __io_getchar
|
||||||
|
162 .LVL7:
|
||||||
|
163 .loc 1 74 9 discriminator 1 view .LVU28
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
164 000e 2146 mov r1, r4
|
||||||
|
165 .LVL8:
|
||||||
|
166 .loc 1 74 12 discriminator 1 view .LVU29
|
||||||
|
167 0010 01F8010B strb r0, [r1], #1
|
||||||
|
168 .LVL9:
|
||||||
|
72:Core/Src/syscalls.c **** {
|
||||||
|
169 .loc 1 72 43 is_stmt 1 discriminator 3 view .LVU30
|
||||||
|
170 0014 0135 adds r5, r5, #1
|
||||||
|
171 .LVL10:
|
||||||
|
172 .loc 1 74 9 is_stmt 0 discriminator 1 view .LVU31
|
||||||
|
173 0016 0C46 mov r4, r1
|
||||||
|
174 .LVL11:
|
||||||
|
175 .L9:
|
||||||
|
72:Core/Src/syscalls.c **** {
|
||||||
|
176 .loc 1 72 29 is_stmt 1 discriminator 1 view .LVU32
|
||||||
|
177 0018 B542 cmp r5, r6
|
||||||
|
178 001a F6DB blt .L10
|
||||||
|
75:Core/Src/syscalls.c **** }
|
||||||
|
76:Core/Src/syscalls.c ****
|
||||||
|
77:Core/Src/syscalls.c **** return len;
|
||||||
|
179 .loc 1 77 3 view .LVU33
|
||||||
|
78:Core/Src/syscalls.c **** }
|
||||||
|
180 .loc 1 78 1 is_stmt 0 view .LVU34
|
||||||
|
181 001c 3046 mov r0, r6
|
||||||
|
182 001e 70BD pop {r4, r5, r6, pc}
|
||||||
|
183 .loc 1 78 1 view .LVU35
|
||||||
|
184 .cfi_endproc
|
||||||
|
185 .LFE29:
|
||||||
|
187 .section .text._write,"ax",%progbits
|
||||||
|
188 .align 1
|
||||||
|
189 .weak _write
|
||||||
|
190 .syntax unified
|
||||||
|
191 .thumb
|
||||||
|
192 .thumb_func
|
||||||
|
194 _write:
|
||||||
|
195 .LVL12:
|
||||||
|
196 .LFB30:
|
||||||
|
79:Core/Src/syscalls.c ****
|
||||||
|
80:Core/Src/syscalls.c **** __attribute__((weak)) int _write(int file, char *ptr, int len)
|
||||||
|
81:Core/Src/syscalls.c **** {
|
||||||
|
197 .loc 1 81 1 is_stmt 1 view -0
|
||||||
|
198 .cfi_startproc
|
||||||
|
199 @ args = 0, pretend = 0, frame = 0
|
||||||
|
200 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
201 .loc 1 81 1 is_stmt 0 view .LVU37
|
||||||
|
202 0000 70B5 push {r4, r5, r6, lr}
|
||||||
|
203 .cfi_def_cfa_offset 16
|
||||||
|
204 .cfi_offset 4, -16
|
||||||
|
205 .cfi_offset 5, -12
|
||||||
|
206 .cfi_offset 6, -8
|
||||||
|
207 .cfi_offset 14, -4
|
||||||
|
208 0002 0C46 mov r4, r1
|
||||||
|
209 0004 1646 mov r6, r2
|
||||||
|
82:Core/Src/syscalls.c **** (void)file;
|
||||||
|
210 .loc 1 82 3 is_stmt 1 view .LVU38
|
||||||
|
83:Core/Src/syscalls.c **** int DataIdx;
|
||||||
|
211 .loc 1 83 3 view .LVU39
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 6
|
||||||
|
|
||||||
|
|
||||||
|
84:Core/Src/syscalls.c ****
|
||||||
|
85:Core/Src/syscalls.c **** for (DataIdx = 0; DataIdx < len; DataIdx++)
|
||||||
|
212 .loc 1 85 3 view .LVU40
|
||||||
|
213 .LVL13:
|
||||||
|
214 .loc 1 85 16 is_stmt 0 view .LVU41
|
||||||
|
215 0006 0025 movs r5, #0
|
||||||
|
216 .loc 1 85 3 view .LVU42
|
||||||
|
217 0008 04E0 b .L13
|
||||||
|
218 .LVL14:
|
||||||
|
219 .L14:
|
||||||
|
86:Core/Src/syscalls.c **** {
|
||||||
|
87:Core/Src/syscalls.c **** __io_putchar(*ptr++);
|
||||||
|
220 .loc 1 87 5 is_stmt 1 view .LVU43
|
||||||
|
221 .loc 1 87 5 is_stmt 0 view .LVU44
|
||||||
|
222 000a 14F8010B ldrb r0, [r4], #1 @ zero_extendqisi2
|
||||||
|
223 .LVL15:
|
||||||
|
224 .loc 1 87 5 view .LVU45
|
||||||
|
225 000e FFF7FEFF bl __io_putchar
|
||||||
|
226 .LVL16:
|
||||||
|
85:Core/Src/syscalls.c **** {
|
||||||
|
227 .loc 1 85 43 is_stmt 1 discriminator 3 view .LVU46
|
||||||
|
228 0012 0135 adds r5, r5, #1
|
||||||
|
229 .LVL17:
|
||||||
|
230 .L13:
|
||||||
|
85:Core/Src/syscalls.c **** {
|
||||||
|
231 .loc 1 85 29 discriminator 1 view .LVU47
|
||||||
|
232 0014 B542 cmp r5, r6
|
||||||
|
233 0016 F8DB blt .L14
|
||||||
|
88:Core/Src/syscalls.c **** }
|
||||||
|
89:Core/Src/syscalls.c **** return len;
|
||||||
|
234 .loc 1 89 3 view .LVU48
|
||||||
|
90:Core/Src/syscalls.c **** }
|
||||||
|
235 .loc 1 90 1 is_stmt 0 view .LVU49
|
||||||
|
236 0018 3046 mov r0, r6
|
||||||
|
237 001a 70BD pop {r4, r5, r6, pc}
|
||||||
|
238 .loc 1 90 1 view .LVU50
|
||||||
|
239 .cfi_endproc
|
||||||
|
240 .LFE30:
|
||||||
|
242 .section .text._close,"ax",%progbits
|
||||||
|
243 .align 1
|
||||||
|
244 .global _close
|
||||||
|
245 .syntax unified
|
||||||
|
246 .thumb
|
||||||
|
247 .thumb_func
|
||||||
|
249 _close:
|
||||||
|
250 .LVL18:
|
||||||
|
251 .LFB31:
|
||||||
|
91:Core/Src/syscalls.c ****
|
||||||
|
92:Core/Src/syscalls.c **** int _close(int file)
|
||||||
|
93:Core/Src/syscalls.c **** {
|
||||||
|
252 .loc 1 93 1 is_stmt 1 view -0
|
||||||
|
253 .cfi_startproc
|
||||||
|
254 @ args = 0, pretend = 0, frame = 0
|
||||||
|
255 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
256 @ link register save eliminated.
|
||||||
|
94:Core/Src/syscalls.c **** (void)file;
|
||||||
|
257 .loc 1 94 3 view .LVU52
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 7
|
||||||
|
|
||||||
|
|
||||||
|
95:Core/Src/syscalls.c **** return -1;
|
||||||
|
258 .loc 1 95 3 view .LVU53
|
||||||
|
96:Core/Src/syscalls.c **** }
|
||||||
|
259 .loc 1 96 1 is_stmt 0 view .LVU54
|
||||||
|
260 0000 4FF0FF30 mov r0, #-1
|
||||||
|
261 .LVL19:
|
||||||
|
262 .loc 1 96 1 view .LVU55
|
||||||
|
263 0004 7047 bx lr
|
||||||
|
264 .cfi_endproc
|
||||||
|
265 .LFE31:
|
||||||
|
267 .section .text._fstat,"ax",%progbits
|
||||||
|
268 .align 1
|
||||||
|
269 .global _fstat
|
||||||
|
270 .syntax unified
|
||||||
|
271 .thumb
|
||||||
|
272 .thumb_func
|
||||||
|
274 _fstat:
|
||||||
|
275 .LVL20:
|
||||||
|
276 .LFB32:
|
||||||
|
97:Core/Src/syscalls.c ****
|
||||||
|
98:Core/Src/syscalls.c ****
|
||||||
|
99:Core/Src/syscalls.c **** int _fstat(int file, struct stat *st)
|
||||||
|
100:Core/Src/syscalls.c **** {
|
||||||
|
277 .loc 1 100 1 is_stmt 1 view -0
|
||||||
|
278 .cfi_startproc
|
||||||
|
279 @ args = 0, pretend = 0, frame = 0
|
||||||
|
280 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
281 @ link register save eliminated.
|
||||||
|
101:Core/Src/syscalls.c **** (void)file;
|
||||||
|
282 .loc 1 101 3 view .LVU57
|
||||||
|
102:Core/Src/syscalls.c **** st->st_mode = S_IFCHR;
|
||||||
|
283 .loc 1 102 3 view .LVU58
|
||||||
|
284 .loc 1 102 15 is_stmt 0 view .LVU59
|
||||||
|
285 0000 4FF40053 mov r3, #8192
|
||||||
|
286 0004 4B60 str r3, [r1, #4]
|
||||||
|
103:Core/Src/syscalls.c **** return 0;
|
||||||
|
287 .loc 1 103 3 is_stmt 1 view .LVU60
|
||||||
|
104:Core/Src/syscalls.c **** }
|
||||||
|
288 .loc 1 104 1 is_stmt 0 view .LVU61
|
||||||
|
289 0006 0020 movs r0, #0
|
||||||
|
290 .LVL21:
|
||||||
|
291 .loc 1 104 1 view .LVU62
|
||||||
|
292 0008 7047 bx lr
|
||||||
|
293 .cfi_endproc
|
||||||
|
294 .LFE32:
|
||||||
|
296 .section .text._isatty,"ax",%progbits
|
||||||
|
297 .align 1
|
||||||
|
298 .global _isatty
|
||||||
|
299 .syntax unified
|
||||||
|
300 .thumb
|
||||||
|
301 .thumb_func
|
||||||
|
303 _isatty:
|
||||||
|
304 .LVL22:
|
||||||
|
305 .LFB33:
|
||||||
|
105:Core/Src/syscalls.c ****
|
||||||
|
106:Core/Src/syscalls.c **** int _isatty(int file)
|
||||||
|
107:Core/Src/syscalls.c **** {
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 8
|
||||||
|
|
||||||
|
|
||||||
|
306 .loc 1 107 1 is_stmt 1 view -0
|
||||||
|
307 .cfi_startproc
|
||||||
|
308 @ args = 0, pretend = 0, frame = 0
|
||||||
|
309 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
310 @ link register save eliminated.
|
||||||
|
108:Core/Src/syscalls.c **** (void)file;
|
||||||
|
311 .loc 1 108 3 view .LVU64
|
||||||
|
109:Core/Src/syscalls.c **** return 1;
|
||||||
|
312 .loc 1 109 3 view .LVU65
|
||||||
|
110:Core/Src/syscalls.c **** }
|
||||||
|
313 .loc 1 110 1 is_stmt 0 view .LVU66
|
||||||
|
314 0000 0120 movs r0, #1
|
||||||
|
315 .LVL23:
|
||||||
|
316 .loc 1 110 1 view .LVU67
|
||||||
|
317 0002 7047 bx lr
|
||||||
|
318 .cfi_endproc
|
||||||
|
319 .LFE33:
|
||||||
|
321 .section .text._lseek,"ax",%progbits
|
||||||
|
322 .align 1
|
||||||
|
323 .global _lseek
|
||||||
|
324 .syntax unified
|
||||||
|
325 .thumb
|
||||||
|
326 .thumb_func
|
||||||
|
328 _lseek:
|
||||||
|
329 .LVL24:
|
||||||
|
330 .LFB34:
|
||||||
|
111:Core/Src/syscalls.c ****
|
||||||
|
112:Core/Src/syscalls.c **** int _lseek(int file, int ptr, int dir)
|
||||||
|
113:Core/Src/syscalls.c **** {
|
||||||
|
331 .loc 1 113 1 is_stmt 1 view -0
|
||||||
|
332 .cfi_startproc
|
||||||
|
333 @ args = 0, pretend = 0, frame = 0
|
||||||
|
334 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
335 @ link register save eliminated.
|
||||||
|
114:Core/Src/syscalls.c **** (void)file;
|
||||||
|
336 .loc 1 114 3 view .LVU69
|
||||||
|
115:Core/Src/syscalls.c **** (void)ptr;
|
||||||
|
337 .loc 1 115 3 view .LVU70
|
||||||
|
116:Core/Src/syscalls.c **** (void)dir;
|
||||||
|
338 .loc 1 116 3 view .LVU71
|
||||||
|
117:Core/Src/syscalls.c **** return 0;
|
||||||
|
339 .loc 1 117 3 view .LVU72
|
||||||
|
118:Core/Src/syscalls.c **** }
|
||||||
|
340 .loc 1 118 1 is_stmt 0 view .LVU73
|
||||||
|
341 0000 0020 movs r0, #0
|
||||||
|
342 .LVL25:
|
||||||
|
343 .loc 1 118 1 view .LVU74
|
||||||
|
344 0002 7047 bx lr
|
||||||
|
345 .cfi_endproc
|
||||||
|
346 .LFE34:
|
||||||
|
348 .section .text._open,"ax",%progbits
|
||||||
|
349 .align 1
|
||||||
|
350 .global _open
|
||||||
|
351 .syntax unified
|
||||||
|
352 .thumb
|
||||||
|
353 .thumb_func
|
||||||
|
355 _open:
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 9
|
||||||
|
|
||||||
|
|
||||||
|
356 .LVL26:
|
||||||
|
357 .LFB35:
|
||||||
|
119:Core/Src/syscalls.c ****
|
||||||
|
120:Core/Src/syscalls.c **** int _open(char *path, int flags, ...)
|
||||||
|
121:Core/Src/syscalls.c **** {
|
||||||
|
358 .loc 1 121 1 is_stmt 1 view -0
|
||||||
|
359 .cfi_startproc
|
||||||
|
360 @ args = 4, pretend = 12, frame = 0
|
||||||
|
361 @ frame_needed = 0, uses_anonymous_args = 1
|
||||||
|
362 @ link register save eliminated.
|
||||||
|
363 .loc 1 121 1 is_stmt 0 view .LVU76
|
||||||
|
364 0000 0EB4 push {r1, r2, r3}
|
||||||
|
365 .cfi_def_cfa_offset 12
|
||||||
|
366 .cfi_offset 1, -12
|
||||||
|
367 .cfi_offset 2, -8
|
||||||
|
368 .cfi_offset 3, -4
|
||||||
|
122:Core/Src/syscalls.c **** (void)path;
|
||||||
|
369 .loc 1 122 3 is_stmt 1 view .LVU77
|
||||||
|
123:Core/Src/syscalls.c **** (void)flags;
|
||||||
|
370 .loc 1 123 3 view .LVU78
|
||||||
|
124:Core/Src/syscalls.c **** /* Pretend like we always fail */
|
||||||
|
125:Core/Src/syscalls.c **** return -1;
|
||||||
|
371 .loc 1 125 3 view .LVU79
|
||||||
|
126:Core/Src/syscalls.c **** }
|
||||||
|
372 .loc 1 126 1 is_stmt 0 view .LVU80
|
||||||
|
373 0002 4FF0FF30 mov r0, #-1
|
||||||
|
374 .LVL27:
|
||||||
|
375 .loc 1 126 1 view .LVU81
|
||||||
|
376 0006 03B0 add sp, sp, #12
|
||||||
|
377 .cfi_restore 3
|
||||||
|
378 .cfi_restore 2
|
||||||
|
379 .cfi_restore 1
|
||||||
|
380 .cfi_def_cfa_offset 0
|
||||||
|
381 0008 7047 bx lr
|
||||||
|
382 .cfi_endproc
|
||||||
|
383 .LFE35:
|
||||||
|
385 .section .text._wait,"ax",%progbits
|
||||||
|
386 .align 1
|
||||||
|
387 .global _wait
|
||||||
|
388 .syntax unified
|
||||||
|
389 .thumb
|
||||||
|
390 .thumb_func
|
||||||
|
392 _wait:
|
||||||
|
393 .LVL28:
|
||||||
|
394 .LFB36:
|
||||||
|
127:Core/Src/syscalls.c ****
|
||||||
|
128:Core/Src/syscalls.c **** int _wait(int *status)
|
||||||
|
129:Core/Src/syscalls.c **** {
|
||||||
|
395 .loc 1 129 1 is_stmt 1 view -0
|
||||||
|
396 .cfi_startproc
|
||||||
|
397 @ args = 0, pretend = 0, frame = 0
|
||||||
|
398 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
399 .loc 1 129 1 is_stmt 0 view .LVU83
|
||||||
|
400 0000 08B5 push {r3, lr}
|
||||||
|
401 .cfi_def_cfa_offset 8
|
||||||
|
402 .cfi_offset 3, -8
|
||||||
|
403 .cfi_offset 14, -4
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 10
|
||||||
|
|
||||||
|
|
||||||
|
130:Core/Src/syscalls.c **** (void)status;
|
||||||
|
404 .loc 1 130 3 is_stmt 1 view .LVU84
|
||||||
|
131:Core/Src/syscalls.c **** errno = ECHILD;
|
||||||
|
405 .loc 1 131 3 view .LVU85
|
||||||
|
406 0002 FFF7FEFF bl __errno
|
||||||
|
407 .LVL29:
|
||||||
|
408 .loc 1 131 9 is_stmt 0 discriminator 1 view .LVU86
|
||||||
|
409 0006 0A23 movs r3, #10
|
||||||
|
410 0008 0360 str r3, [r0]
|
||||||
|
132:Core/Src/syscalls.c **** return -1;
|
||||||
|
411 .loc 1 132 3 is_stmt 1 view .LVU87
|
||||||
|
133:Core/Src/syscalls.c **** }
|
||||||
|
412 .loc 1 133 1 is_stmt 0 view .LVU88
|
||||||
|
413 000a 4FF0FF30 mov r0, #-1
|
||||||
|
414 000e 08BD pop {r3, pc}
|
||||||
|
415 .cfi_endproc
|
||||||
|
416 .LFE36:
|
||||||
|
418 .section .text._unlink,"ax",%progbits
|
||||||
|
419 .align 1
|
||||||
|
420 .global _unlink
|
||||||
|
421 .syntax unified
|
||||||
|
422 .thumb
|
||||||
|
423 .thumb_func
|
||||||
|
425 _unlink:
|
||||||
|
426 .LVL30:
|
||||||
|
427 .LFB37:
|
||||||
|
134:Core/Src/syscalls.c ****
|
||||||
|
135:Core/Src/syscalls.c **** int _unlink(char *name)
|
||||||
|
136:Core/Src/syscalls.c **** {
|
||||||
|
428 .loc 1 136 1 is_stmt 1 view -0
|
||||||
|
429 .cfi_startproc
|
||||||
|
430 @ args = 0, pretend = 0, frame = 0
|
||||||
|
431 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
432 .loc 1 136 1 is_stmt 0 view .LVU90
|
||||||
|
433 0000 08B5 push {r3, lr}
|
||||||
|
434 .cfi_def_cfa_offset 8
|
||||||
|
435 .cfi_offset 3, -8
|
||||||
|
436 .cfi_offset 14, -4
|
||||||
|
137:Core/Src/syscalls.c **** (void)name;
|
||||||
|
437 .loc 1 137 3 is_stmt 1 view .LVU91
|
||||||
|
138:Core/Src/syscalls.c **** errno = ENOENT;
|
||||||
|
438 .loc 1 138 3 view .LVU92
|
||||||
|
439 0002 FFF7FEFF bl __errno
|
||||||
|
440 .LVL31:
|
||||||
|
441 .loc 1 138 9 is_stmt 0 discriminator 1 view .LVU93
|
||||||
|
442 0006 0223 movs r3, #2
|
||||||
|
443 0008 0360 str r3, [r0]
|
||||||
|
139:Core/Src/syscalls.c **** return -1;
|
||||||
|
444 .loc 1 139 3 is_stmt 1 view .LVU94
|
||||||
|
140:Core/Src/syscalls.c **** }
|
||||||
|
445 .loc 1 140 1 is_stmt 0 view .LVU95
|
||||||
|
446 000a 4FF0FF30 mov r0, #-1
|
||||||
|
447 000e 08BD pop {r3, pc}
|
||||||
|
448 .cfi_endproc
|
||||||
|
449 .LFE37:
|
||||||
|
451 .section .text._times,"ax",%progbits
|
||||||
|
452 .align 1
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 11
|
||||||
|
|
||||||
|
|
||||||
|
453 .global _times
|
||||||
|
454 .syntax unified
|
||||||
|
455 .thumb
|
||||||
|
456 .thumb_func
|
||||||
|
458 _times:
|
||||||
|
459 .LVL32:
|
||||||
|
460 .LFB38:
|
||||||
|
141:Core/Src/syscalls.c ****
|
||||||
|
142:Core/Src/syscalls.c **** int _times(struct tms *buf)
|
||||||
|
143:Core/Src/syscalls.c **** {
|
||||||
|
461 .loc 1 143 1 is_stmt 1 view -0
|
||||||
|
462 .cfi_startproc
|
||||||
|
463 @ args = 0, pretend = 0, frame = 0
|
||||||
|
464 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
465 @ link register save eliminated.
|
||||||
|
144:Core/Src/syscalls.c **** (void)buf;
|
||||||
|
466 .loc 1 144 3 view .LVU97
|
||||||
|
145:Core/Src/syscalls.c **** return -1;
|
||||||
|
467 .loc 1 145 3 view .LVU98
|
||||||
|
146:Core/Src/syscalls.c **** }
|
||||||
|
468 .loc 1 146 1 is_stmt 0 view .LVU99
|
||||||
|
469 0000 4FF0FF30 mov r0, #-1
|
||||||
|
470 .LVL33:
|
||||||
|
471 .loc 1 146 1 view .LVU100
|
||||||
|
472 0004 7047 bx lr
|
||||||
|
473 .cfi_endproc
|
||||||
|
474 .LFE38:
|
||||||
|
476 .section .text._stat,"ax",%progbits
|
||||||
|
477 .align 1
|
||||||
|
478 .global _stat
|
||||||
|
479 .syntax unified
|
||||||
|
480 .thumb
|
||||||
|
481 .thumb_func
|
||||||
|
483 _stat:
|
||||||
|
484 .LVL34:
|
||||||
|
485 .LFB39:
|
||||||
|
147:Core/Src/syscalls.c ****
|
||||||
|
148:Core/Src/syscalls.c **** int _stat(char *file, struct stat *st)
|
||||||
|
149:Core/Src/syscalls.c **** {
|
||||||
|
486 .loc 1 149 1 is_stmt 1 view -0
|
||||||
|
487 .cfi_startproc
|
||||||
|
488 @ args = 0, pretend = 0, frame = 0
|
||||||
|
489 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
490 @ link register save eliminated.
|
||||||
|
150:Core/Src/syscalls.c **** (void)file;
|
||||||
|
491 .loc 1 150 3 view .LVU102
|
||||||
|
151:Core/Src/syscalls.c **** st->st_mode = S_IFCHR;
|
||||||
|
492 .loc 1 151 3 view .LVU103
|
||||||
|
493 .loc 1 151 15 is_stmt 0 view .LVU104
|
||||||
|
494 0000 4FF40053 mov r3, #8192
|
||||||
|
495 0004 4B60 str r3, [r1, #4]
|
||||||
|
152:Core/Src/syscalls.c **** return 0;
|
||||||
|
496 .loc 1 152 3 is_stmt 1 view .LVU105
|
||||||
|
153:Core/Src/syscalls.c **** }
|
||||||
|
497 .loc 1 153 1 is_stmt 0 view .LVU106
|
||||||
|
498 0006 0020 movs r0, #0
|
||||||
|
499 .LVL35:
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 12
|
||||||
|
|
||||||
|
|
||||||
|
500 .loc 1 153 1 view .LVU107
|
||||||
|
501 0008 7047 bx lr
|
||||||
|
502 .cfi_endproc
|
||||||
|
503 .LFE39:
|
||||||
|
505 .section .text._link,"ax",%progbits
|
||||||
|
506 .align 1
|
||||||
|
507 .global _link
|
||||||
|
508 .syntax unified
|
||||||
|
509 .thumb
|
||||||
|
510 .thumb_func
|
||||||
|
512 _link:
|
||||||
|
513 .LVL36:
|
||||||
|
514 .LFB40:
|
||||||
|
154:Core/Src/syscalls.c ****
|
||||||
|
155:Core/Src/syscalls.c **** int _link(char *old, char *new)
|
||||||
|
156:Core/Src/syscalls.c **** {
|
||||||
|
515 .loc 1 156 1 is_stmt 1 view -0
|
||||||
|
516 .cfi_startproc
|
||||||
|
517 @ args = 0, pretend = 0, frame = 0
|
||||||
|
518 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
519 .loc 1 156 1 is_stmt 0 view .LVU109
|
||||||
|
520 0000 08B5 push {r3, lr}
|
||||||
|
521 .cfi_def_cfa_offset 8
|
||||||
|
522 .cfi_offset 3, -8
|
||||||
|
523 .cfi_offset 14, -4
|
||||||
|
157:Core/Src/syscalls.c **** (void)old;
|
||||||
|
524 .loc 1 157 3 is_stmt 1 view .LVU110
|
||||||
|
158:Core/Src/syscalls.c **** (void)new;
|
||||||
|
525 .loc 1 158 3 view .LVU111
|
||||||
|
159:Core/Src/syscalls.c **** errno = EMLINK;
|
||||||
|
526 .loc 1 159 3 view .LVU112
|
||||||
|
527 0002 FFF7FEFF bl __errno
|
||||||
|
528 .LVL37:
|
||||||
|
529 .loc 1 159 9 is_stmt 0 discriminator 1 view .LVU113
|
||||||
|
530 0006 1F23 movs r3, #31
|
||||||
|
531 0008 0360 str r3, [r0]
|
||||||
|
160:Core/Src/syscalls.c **** return -1;
|
||||||
|
532 .loc 1 160 3 is_stmt 1 view .LVU114
|
||||||
|
161:Core/Src/syscalls.c **** }
|
||||||
|
533 .loc 1 161 1 is_stmt 0 view .LVU115
|
||||||
|
534 000a 4FF0FF30 mov r0, #-1
|
||||||
|
535 000e 08BD pop {r3, pc}
|
||||||
|
536 .cfi_endproc
|
||||||
|
537 .LFE40:
|
||||||
|
539 .section .text._fork,"ax",%progbits
|
||||||
|
540 .align 1
|
||||||
|
541 .global _fork
|
||||||
|
542 .syntax unified
|
||||||
|
543 .thumb
|
||||||
|
544 .thumb_func
|
||||||
|
546 _fork:
|
||||||
|
547 .LFB41:
|
||||||
|
162:Core/Src/syscalls.c ****
|
||||||
|
163:Core/Src/syscalls.c **** int _fork(void)
|
||||||
|
164:Core/Src/syscalls.c **** {
|
||||||
|
548 .loc 1 164 1 is_stmt 1 view -0
|
||||||
|
549 .cfi_startproc
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 13
|
||||||
|
|
||||||
|
|
||||||
|
550 @ args = 0, pretend = 0, frame = 0
|
||||||
|
551 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
552 0000 08B5 push {r3, lr}
|
||||||
|
553 .cfi_def_cfa_offset 8
|
||||||
|
554 .cfi_offset 3, -8
|
||||||
|
555 .cfi_offset 14, -4
|
||||||
|
165:Core/Src/syscalls.c **** errno = EAGAIN;
|
||||||
|
556 .loc 1 165 3 view .LVU117
|
||||||
|
557 0002 FFF7FEFF bl __errno
|
||||||
|
558 .LVL38:
|
||||||
|
559 .loc 1 165 9 is_stmt 0 discriminator 1 view .LVU118
|
||||||
|
560 0006 0B23 movs r3, #11
|
||||||
|
561 0008 0360 str r3, [r0]
|
||||||
|
166:Core/Src/syscalls.c **** return -1;
|
||||||
|
562 .loc 1 166 3 is_stmt 1 view .LVU119
|
||||||
|
167:Core/Src/syscalls.c **** }
|
||||||
|
563 .loc 1 167 1 is_stmt 0 view .LVU120
|
||||||
|
564 000a 4FF0FF30 mov r0, #-1
|
||||||
|
565 000e 08BD pop {r3, pc}
|
||||||
|
566 .cfi_endproc
|
||||||
|
567 .LFE41:
|
||||||
|
569 .section .text._execve,"ax",%progbits
|
||||||
|
570 .align 1
|
||||||
|
571 .global _execve
|
||||||
|
572 .syntax unified
|
||||||
|
573 .thumb
|
||||||
|
574 .thumb_func
|
||||||
|
576 _execve:
|
||||||
|
577 .LVL39:
|
||||||
|
578 .LFB42:
|
||||||
|
168:Core/Src/syscalls.c ****
|
||||||
|
169:Core/Src/syscalls.c **** int _execve(char *name, char **argv, char **env)
|
||||||
|
170:Core/Src/syscalls.c **** {
|
||||||
|
579 .loc 1 170 1 is_stmt 1 view -0
|
||||||
|
580 .cfi_startproc
|
||||||
|
581 @ args = 0, pretend = 0, frame = 0
|
||||||
|
582 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
583 .loc 1 170 1 is_stmt 0 view .LVU122
|
||||||
|
584 0000 08B5 push {r3, lr}
|
||||||
|
585 .cfi_def_cfa_offset 8
|
||||||
|
586 .cfi_offset 3, -8
|
||||||
|
587 .cfi_offset 14, -4
|
||||||
|
171:Core/Src/syscalls.c **** (void)name;
|
||||||
|
588 .loc 1 171 3 is_stmt 1 view .LVU123
|
||||||
|
172:Core/Src/syscalls.c **** (void)argv;
|
||||||
|
589 .loc 1 172 3 view .LVU124
|
||||||
|
173:Core/Src/syscalls.c **** (void)env;
|
||||||
|
590 .loc 1 173 3 view .LVU125
|
||||||
|
174:Core/Src/syscalls.c **** errno = ENOMEM;
|
||||||
|
591 .loc 1 174 3 view .LVU126
|
||||||
|
592 0002 FFF7FEFF bl __errno
|
||||||
|
593 .LVL40:
|
||||||
|
594 .loc 1 174 9 is_stmt 0 discriminator 1 view .LVU127
|
||||||
|
595 0006 0C23 movs r3, #12
|
||||||
|
596 0008 0360 str r3, [r0]
|
||||||
|
175:Core/Src/syscalls.c **** return -1;
|
||||||
|
597 .loc 1 175 3 is_stmt 1 view .LVU128
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 14
|
||||||
|
|
||||||
|
|
||||||
|
176:Core/Src/syscalls.c **** }
|
||||||
|
598 .loc 1 176 1 is_stmt 0 view .LVU129
|
||||||
|
599 000a 4FF0FF30 mov r0, #-1
|
||||||
|
600 000e 08BD pop {r3, pc}
|
||||||
|
601 .cfi_endproc
|
||||||
|
602 .LFE42:
|
||||||
|
604 .global environ
|
||||||
|
605 .section .data.environ,"aw"
|
||||||
|
606 .align 2
|
||||||
|
609 environ:
|
||||||
|
610 0000 00000000 .word __env
|
||||||
|
611 .global __env
|
||||||
|
612 .section .bss.__env,"aw",%nobits
|
||||||
|
613 .align 2
|
||||||
|
616 __env:
|
||||||
|
617 0000 00000000 .space 4
|
||||||
|
618 .weak __io_putchar
|
||||||
|
619 .weak __io_getchar
|
||||||
|
620 .text
|
||||||
|
621 .Letext0:
|
||||||
|
622 .file 2 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
623 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
624 .file 4 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
625 .file 5 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
626 .file 6 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
627 .file 7 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
628 .file 8 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
629 .file 9 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
ARM GAS /tmp/cc0T5371.s page 15
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 syscalls.c
|
||||||
|
/tmp/cc0T5371.s:21 .text.initialise_monitor_handles:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:27 .text.initialise_monitor_handles:00000000 initialise_monitor_handles
|
||||||
|
/tmp/cc0T5371.s:40 .text._getpid:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:46 .text._getpid:00000000 _getpid
|
||||||
|
/tmp/cc0T5371.s:61 .text._kill:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:67 .text._kill:00000000 _kill
|
||||||
|
/tmp/cc0T5371.s:95 .text._exit:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:101 .text._exit:00000000 _exit
|
||||||
|
/tmp/cc0T5371.s:127 .text._read:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:133 .text._read:00000000 _read
|
||||||
|
/tmp/cc0T5371.s:188 .text._write:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:194 .text._write:00000000 _write
|
||||||
|
/tmp/cc0T5371.s:243 .text._close:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:249 .text._close:00000000 _close
|
||||||
|
/tmp/cc0T5371.s:268 .text._fstat:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:274 .text._fstat:00000000 _fstat
|
||||||
|
/tmp/cc0T5371.s:297 .text._isatty:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:303 .text._isatty:00000000 _isatty
|
||||||
|
/tmp/cc0T5371.s:322 .text._lseek:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:328 .text._lseek:00000000 _lseek
|
||||||
|
/tmp/cc0T5371.s:349 .text._open:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:355 .text._open:00000000 _open
|
||||||
|
/tmp/cc0T5371.s:386 .text._wait:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:392 .text._wait:00000000 _wait
|
||||||
|
/tmp/cc0T5371.s:419 .text._unlink:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:425 .text._unlink:00000000 _unlink
|
||||||
|
/tmp/cc0T5371.s:452 .text._times:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:458 .text._times:00000000 _times
|
||||||
|
/tmp/cc0T5371.s:477 .text._stat:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:483 .text._stat:00000000 _stat
|
||||||
|
/tmp/cc0T5371.s:506 .text._link:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:512 .text._link:00000000 _link
|
||||||
|
/tmp/cc0T5371.s:540 .text._fork:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:546 .text._fork:00000000 _fork
|
||||||
|
/tmp/cc0T5371.s:570 .text._execve:00000000 $t
|
||||||
|
/tmp/cc0T5371.s:576 .text._execve:00000000 _execve
|
||||||
|
/tmp/cc0T5371.s:609 .data.environ:00000000 environ
|
||||||
|
/tmp/cc0T5371.s:606 .data.environ:00000000 $d
|
||||||
|
/tmp/cc0T5371.s:616 .bss.__env:00000000 __env
|
||||||
|
/tmp/cc0T5371.s:613 .bss.__env:00000000 $d
|
||||||
|
|
||||||
|
UNDEFINED SYMBOLS
|
||||||
|
__errno
|
||||||
|
__io_getchar
|
||||||
|
__io_putchar
|
BIN
build/syscalls.o
Normal file
BIN
build/syscalls.o
Normal file
Binary file not shown.
1
build/sysmem.d
Normal file
1
build/sysmem.d
Normal file
@ -0,0 +1 @@
|
|||||||
|
build/sysmem.o: Core/Src/sysmem.c
|
232
build/sysmem.lst
Normal file
232
build/sysmem.lst
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
ARM GAS /tmp/ccAdIMir.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 "sysmem.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Core/Src/sysmem.c"
|
||||||
|
20 .section .text._sbrk,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global _sbrk
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 _sbrk:
|
||||||
|
28 .LVL0:
|
||||||
|
29 .LFB0:
|
||||||
|
1:Core/Src/sysmem.c **** /**
|
||||||
|
2:Core/Src/sysmem.c **** ******************************************************************************
|
||||||
|
3:Core/Src/sysmem.c **** * @file sysmem.c
|
||||||
|
4:Core/Src/sysmem.c **** * @author Generated by STM32CubeMX
|
||||||
|
5:Core/Src/sysmem.c **** * @brief System Memory calls file
|
||||||
|
6:Core/Src/sysmem.c **** *
|
||||||
|
7:Core/Src/sysmem.c **** * For more information about which C functions
|
||||||
|
8:Core/Src/sysmem.c **** * need which of these lowlevel functions
|
||||||
|
9:Core/Src/sysmem.c **** * please consult the newlib libc manual
|
||||||
|
10:Core/Src/sysmem.c **** ******************************************************************************
|
||||||
|
11:Core/Src/sysmem.c **** * @attention
|
||||||
|
12:Core/Src/sysmem.c **** *
|
||||||
|
13:Core/Src/sysmem.c **** * Copyright (c) 2024 STMicroelectronics.
|
||||||
|
14:Core/Src/sysmem.c **** * All rights reserved.
|
||||||
|
15:Core/Src/sysmem.c **** *
|
||||||
|
16:Core/Src/sysmem.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
17:Core/Src/sysmem.c **** * in the root directory of this software component.
|
||||||
|
18:Core/Src/sysmem.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
19:Core/Src/sysmem.c **** *
|
||||||
|
20:Core/Src/sysmem.c **** ******************************************************************************
|
||||||
|
21:Core/Src/sysmem.c **** */
|
||||||
|
22:Core/Src/sysmem.c ****
|
||||||
|
23:Core/Src/sysmem.c **** /* Includes */
|
||||||
|
24:Core/Src/sysmem.c **** #include <errno.h>
|
||||||
|
25:Core/Src/sysmem.c **** #include <stdint.h>
|
||||||
|
26:Core/Src/sysmem.c ****
|
||||||
|
27:Core/Src/sysmem.c **** /**
|
||||||
|
28:Core/Src/sysmem.c **** * Pointer to the current high watermark of the heap usage
|
||||||
|
29:Core/Src/sysmem.c **** */
|
||||||
|
ARM GAS /tmp/ccAdIMir.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
30:Core/Src/sysmem.c **** static uint8_t *__sbrk_heap_end = NULL;
|
||||||
|
31:Core/Src/sysmem.c ****
|
||||||
|
32:Core/Src/sysmem.c **** /**
|
||||||
|
33:Core/Src/sysmem.c **** * @brief _sbrk() allocates memory to the newlib heap and is used by malloc
|
||||||
|
34:Core/Src/sysmem.c **** * and others from the C library
|
||||||
|
35:Core/Src/sysmem.c **** *
|
||||||
|
36:Core/Src/sysmem.c **** * @verbatim
|
||||||
|
37:Core/Src/sysmem.c **** * ############################################################################
|
||||||
|
38:Core/Src/sysmem.c **** * # .data # .bss # newlib heap # MSP stack #
|
||||||
|
39:Core/Src/sysmem.c **** * # # # # Reserved by _Min_Stack_Size #
|
||||||
|
40:Core/Src/sysmem.c **** * ############################################################################
|
||||||
|
41:Core/Src/sysmem.c **** * ^-- RAM start ^-- _end _estack, RAM end --^
|
||||||
|
42:Core/Src/sysmem.c **** * @endverbatim
|
||||||
|
43:Core/Src/sysmem.c **** *
|
||||||
|
44:Core/Src/sysmem.c **** * This implementation starts allocating at the '_end' linker symbol
|
||||||
|
45:Core/Src/sysmem.c **** * The '_Min_Stack_Size' linker symbol reserves a memory for the MSP stack
|
||||||
|
46:Core/Src/sysmem.c **** * The implementation considers '_estack' linker symbol to be RAM end
|
||||||
|
47:Core/Src/sysmem.c **** * NOTE: If the MSP stack, at any point during execution, grows larger than the
|
||||||
|
48:Core/Src/sysmem.c **** * reserved size, please increase the '_Min_Stack_Size'.
|
||||||
|
49:Core/Src/sysmem.c **** *
|
||||||
|
50:Core/Src/sysmem.c **** * @param incr Memory size
|
||||||
|
51:Core/Src/sysmem.c **** * @return Pointer to allocated memory
|
||||||
|
52:Core/Src/sysmem.c **** */
|
||||||
|
53:Core/Src/sysmem.c **** void *_sbrk(ptrdiff_t incr)
|
||||||
|
54:Core/Src/sysmem.c **** {
|
||||||
|
30 .loc 1 54 1 view -0
|
||||||
|
31 .cfi_startproc
|
||||||
|
32 @ args = 0, pretend = 0, frame = 0
|
||||||
|
33 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
34 .loc 1 54 1 is_stmt 0 view .LVU1
|
||||||
|
35 0000 10B5 push {r4, lr}
|
||||||
|
36 .cfi_def_cfa_offset 8
|
||||||
|
37 .cfi_offset 4, -8
|
||||||
|
38 .cfi_offset 14, -4
|
||||||
|
39 0002 0346 mov r3, r0
|
||||||
|
55:Core/Src/sysmem.c **** extern uint8_t _end; /* Symbol defined in the linker script */
|
||||||
|
40 .loc 1 55 3 is_stmt 1 view .LVU2
|
||||||
|
56:Core/Src/sysmem.c **** extern uint8_t _estack; /* Symbol defined in the linker script */
|
||||||
|
41 .loc 1 56 3 view .LVU3
|
||||||
|
57:Core/Src/sysmem.c **** extern uint32_t _Min_Stack_Size; /* Symbol defined in the linker script */
|
||||||
|
42 .loc 1 57 3 view .LVU4
|
||||||
|
58:Core/Src/sysmem.c **** const uint32_t stack_limit = (uint32_t)&_estack - (uint32_t)&_Min_Stack_Size;
|
||||||
|
43 .loc 1 58 3 view .LVU5
|
||||||
|
44 .LVL1:
|
||||||
|
59:Core/Src/sysmem.c **** const uint8_t *max_heap = (uint8_t *)stack_limit;
|
||||||
|
45 .loc 1 59 3 view .LVU6
|
||||||
|
58:Core/Src/sysmem.c **** const uint32_t stack_limit = (uint32_t)&_estack - (uint32_t)&_Min_Stack_Size;
|
||||||
|
46 .loc 1 58 51 is_stmt 0 view .LVU7
|
||||||
|
47 0004 0C4A ldr r2, .L8
|
||||||
|
48 0006 0D49 ldr r1, .L8+4
|
||||||
|
49 .LVL2:
|
||||||
|
60:Core/Src/sysmem.c **** uint8_t *prev_heap_end;
|
||||||
|
50 .loc 1 60 3 is_stmt 1 view .LVU8
|
||||||
|
61:Core/Src/sysmem.c ****
|
||||||
|
62:Core/Src/sysmem.c **** /* Initialize heap end at first call */
|
||||||
|
63:Core/Src/sysmem.c **** if (NULL == __sbrk_heap_end)
|
||||||
|
51 .loc 1 63 3 view .LVU9
|
||||||
|
ARM GAS /tmp/ccAdIMir.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
52 .loc 1 63 12 is_stmt 0 view .LVU10
|
||||||
|
53 0008 0D48 ldr r0, .L8+8
|
||||||
|
54 .LVL3:
|
||||||
|
55 .loc 1 63 12 view .LVU11
|
||||||
|
56 000a 0068 ldr r0, [r0]
|
||||||
|
57 .loc 1 63 6 view .LVU12
|
||||||
|
58 000c 40B1 cbz r0, .L6
|
||||||
|
59 .L2:
|
||||||
|
64:Core/Src/sysmem.c **** {
|
||||||
|
65:Core/Src/sysmem.c **** __sbrk_heap_end = &_end;
|
||||||
|
66:Core/Src/sysmem.c **** }
|
||||||
|
67:Core/Src/sysmem.c ****
|
||||||
|
68:Core/Src/sysmem.c **** /* Protect heap from growing into the reserved MSP stack */
|
||||||
|
69:Core/Src/sysmem.c **** if (__sbrk_heap_end + incr > max_heap)
|
||||||
|
60 .loc 1 69 3 is_stmt 1 view .LVU13
|
||||||
|
61 .loc 1 69 23 is_stmt 0 view .LVU14
|
||||||
|
62 000e 0C48 ldr r0, .L8+8
|
||||||
|
63 0010 0068 ldr r0, [r0]
|
||||||
|
64 0012 0344 add r3, r3, r0
|
||||||
|
65 .LVL4:
|
||||||
|
66 .loc 1 69 6 view .LVU15
|
||||||
|
67 0014 521A subs r2, r2, r1
|
||||||
|
68 0016 9342 cmp r3, r2
|
||||||
|
69 0018 06D8 bhi .L7
|
||||||
|
70:Core/Src/sysmem.c **** {
|
||||||
|
71:Core/Src/sysmem.c **** errno = ENOMEM;
|
||||||
|
72:Core/Src/sysmem.c **** return (void *)-1;
|
||||||
|
73:Core/Src/sysmem.c **** }
|
||||||
|
74:Core/Src/sysmem.c ****
|
||||||
|
75:Core/Src/sysmem.c **** prev_heap_end = __sbrk_heap_end;
|
||||||
|
70 .loc 1 75 3 is_stmt 1 view .LVU16
|
||||||
|
71 .LVL5:
|
||||||
|
76:Core/Src/sysmem.c **** __sbrk_heap_end += incr;
|
||||||
|
72 .loc 1 76 3 view .LVU17
|
||||||
|
73 .loc 1 76 19 is_stmt 0 view .LVU18
|
||||||
|
74 001a 094A ldr r2, .L8+8
|
||||||
|
75 001c 1360 str r3, [r2]
|
||||||
|
77:Core/Src/sysmem.c ****
|
||||||
|
78:Core/Src/sysmem.c **** return (void *)prev_heap_end;
|
||||||
|
76 .loc 1 78 3 is_stmt 1 view .LVU19
|
||||||
|
77 .LVL6:
|
||||||
|
78 .L1:
|
||||||
|
79:Core/Src/sysmem.c **** }
|
||||||
|
79 .loc 1 79 1 is_stmt 0 view .LVU20
|
||||||
|
80 001e 10BD pop {r4, pc}
|
||||||
|
81 .LVL7:
|
||||||
|
82 .L6:
|
||||||
|
65:Core/Src/sysmem.c **** }
|
||||||
|
83 .loc 1 65 5 is_stmt 1 view .LVU21
|
||||||
|
65:Core/Src/sysmem.c **** }
|
||||||
|
84 .loc 1 65 21 is_stmt 0 view .LVU22
|
||||||
|
85 0020 0748 ldr r0, .L8+8
|
||||||
|
86 0022 084C ldr r4, .L8+12
|
||||||
|
87 0024 0460 str r4, [r0]
|
||||||
|
88 0026 F2E7 b .L2
|
||||||
|
89 .LVL8:
|
||||||
|
90 .L7:
|
||||||
|
ARM GAS /tmp/ccAdIMir.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
71:Core/Src/sysmem.c **** return (void *)-1;
|
||||||
|
91 .loc 1 71 5 is_stmt 1 view .LVU23
|
||||||
|
92 0028 FFF7FEFF bl __errno
|
||||||
|
93 .LVL9:
|
||||||
|
71:Core/Src/sysmem.c **** return (void *)-1;
|
||||||
|
94 .loc 1 71 11 is_stmt 0 discriminator 1 view .LVU24
|
||||||
|
95 002c 0C23 movs r3, #12
|
||||||
|
96 002e 0360 str r3, [r0]
|
||||||
|
72:Core/Src/sysmem.c **** }
|
||||||
|
97 .loc 1 72 5 is_stmt 1 view .LVU25
|
||||||
|
72:Core/Src/sysmem.c **** }
|
||||||
|
98 .loc 1 72 12 is_stmt 0 view .LVU26
|
||||||
|
99 0030 4FF0FF30 mov r0, #-1
|
||||||
|
100 0034 F3E7 b .L1
|
||||||
|
101 .L9:
|
||||||
|
102 0036 00BF .align 2
|
||||||
|
103 .L8:
|
||||||
|
104 0038 00000000 .word _estack
|
||||||
|
105 003c 00000000 .word _Min_Stack_Size
|
||||||
|
106 0040 00000000 .word __sbrk_heap_end
|
||||||
|
107 0044 00000000 .word _end
|
||||||
|
108 .cfi_endproc
|
||||||
|
109 .LFE0:
|
||||||
|
111 .section .bss.__sbrk_heap_end,"aw",%nobits
|
||||||
|
112 .align 2
|
||||||
|
115 __sbrk_heap_end:
|
||||||
|
116 0000 00000000 .space 4
|
||||||
|
117 .text
|
||||||
|
118 .Letext0:
|
||||||
|
119 .file 2 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
120 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
121 .file 4 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
122 .file 5 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
ARM GAS /tmp/ccAdIMir.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 sysmem.c
|
||||||
|
/tmp/ccAdIMir.s:21 .text._sbrk:00000000 $t
|
||||||
|
/tmp/ccAdIMir.s:27 .text._sbrk:00000000 _sbrk
|
||||||
|
/tmp/ccAdIMir.s:104 .text._sbrk:00000038 $d
|
||||||
|
/tmp/ccAdIMir.s:115 .bss.__sbrk_heap_end:00000000 __sbrk_heap_end
|
||||||
|
/tmp/ccAdIMir.s:112 .bss.__sbrk_heap_end:00000000 $d
|
||||||
|
|
||||||
|
UNDEFINED SYMBOLS
|
||||||
|
__errno
|
||||||
|
_estack
|
||||||
|
_Min_Stack_Size
|
||||||
|
_end
|
BIN
build/sysmem.o
Normal file
BIN
build/sysmem.o
Normal file
Binary file not shown.
65
build/system_stm32f3xx.d
Normal file
65
build/system_stm32f3xx.d
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
build/system_stm32f3xx.o: Core/Src/system_stm32f3xx.c \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h \
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h Drivers/CMSIS/Include/cmsis_version.h \
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h \
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h \
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h \
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f3xx.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h:
|
||||||
|
Drivers/CMSIS/Include/core_cm4.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_version.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_compiler.h:
|
||||||
|
Drivers/CMSIS/Include/cmsis_gcc.h:
|
||||||
|
Drivers/CMSIS/Include/mpu_armv7.h:
|
||||||
|
Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal.h:
|
||||||
|
Core/Inc/stm32f3xx_hal_conf.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_def.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_rcc_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_gpio_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_exti.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_dma_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_cortex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_can.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_flash_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_i2c_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_pwr_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_spi_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_tim_ex.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart.h:
|
||||||
|
Drivers/STM32F3xx_HAL_Driver/Inc/stm32f3xx_hal_uart_ex.h:
|
574
build/system_stm32f3xx.lst
Normal file
574
build/system_stm32f3xx.lst
Normal file
@ -0,0 +1,574 @@
|
|||||||
|
ARM GAS /tmp/ccZxkiP3.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 "system_stm32f3xx.c"
|
||||||
|
16 .text
|
||||||
|
17 .Ltext0:
|
||||||
|
18 .cfi_sections .debug_frame
|
||||||
|
19 .file 1 "Core/Src/system_stm32f3xx.c"
|
||||||
|
20 .section .text.SystemInit,"ax",%progbits
|
||||||
|
21 .align 1
|
||||||
|
22 .global SystemInit
|
||||||
|
23 .syntax unified
|
||||||
|
24 .thumb
|
||||||
|
25 .thumb_func
|
||||||
|
27 SystemInit:
|
||||||
|
28 .LFB130:
|
||||||
|
1:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
2:Core/Src/system_stm32f3xx.c **** ******************************************************************************
|
||||||
|
3:Core/Src/system_stm32f3xx.c **** * @file system_stm32f3xx.c
|
||||||
|
4:Core/Src/system_stm32f3xx.c **** * @author MCD Application Team
|
||||||
|
5:Core/Src/system_stm32f3xx.c **** * @brief CMSIS Cortex-M4 Device Peripheral Access Layer System Source File.
|
||||||
|
6:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
7:Core/Src/system_stm32f3xx.c **** * 1. This file provides two functions and one global variable to be called from
|
||||||
|
8:Core/Src/system_stm32f3xx.c **** * user application:
|
||||||
|
9:Core/Src/system_stm32f3xx.c **** * - SystemInit(): This function is called at startup just after reset and
|
||||||
|
10:Core/Src/system_stm32f3xx.c **** * before branch to main program. This call is made inside
|
||||||
|
11:Core/Src/system_stm32f3xx.c **** * the "startup_stm32f3xx.s" file.
|
||||||
|
12:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
13:Core/Src/system_stm32f3xx.c **** * - SystemCoreClock variable: Contains the core clock (HCLK), it can be used
|
||||||
|
14:Core/Src/system_stm32f3xx.c **** * by the user application to setup the SysTick
|
||||||
|
15:Core/Src/system_stm32f3xx.c **** * timer or configure other parameters.
|
||||||
|
16:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
17:Core/Src/system_stm32f3xx.c **** * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must
|
||||||
|
18:Core/Src/system_stm32f3xx.c **** * be called whenever the core clock is changed
|
||||||
|
19:Core/Src/system_stm32f3xx.c **** * during program execution.
|
||||||
|
20:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
21:Core/Src/system_stm32f3xx.c **** * 2. After each device reset the HSI (8 MHz) is used as system clock source.
|
||||||
|
22:Core/Src/system_stm32f3xx.c **** * Then SystemInit() function is called, in "startup_stm32f3xx.s" file, to
|
||||||
|
23:Core/Src/system_stm32f3xx.c **** * configure the system clock before to branch to main program.
|
||||||
|
24:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
25:Core/Src/system_stm32f3xx.c **** * 3. This file configures the system clock as follows:
|
||||||
|
26:Core/Src/system_stm32f3xx.c **** *=============================================================================
|
||||||
|
27:Core/Src/system_stm32f3xx.c **** * Supported STM32F3xx device
|
||||||
|
28:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
29:Core/Src/system_stm32f3xx.c **** * System Clock source | HSI
|
||||||
|
30:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 2
|
||||||
|
|
||||||
|
|
||||||
|
31:Core/Src/system_stm32f3xx.c **** * SYSCLK(Hz) | 8000000
|
||||||
|
32:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
33:Core/Src/system_stm32f3xx.c **** * HCLK(Hz) | 8000000
|
||||||
|
34:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
35:Core/Src/system_stm32f3xx.c **** * AHB Prescaler | 1
|
||||||
|
36:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
37:Core/Src/system_stm32f3xx.c **** * APB2 Prescaler | 1
|
||||||
|
38:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
39:Core/Src/system_stm32f3xx.c **** * APB1 Prescaler | 1
|
||||||
|
40:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
41:Core/Src/system_stm32f3xx.c **** * USB Clock | DISABLE
|
||||||
|
42:Core/Src/system_stm32f3xx.c **** *-----------------------------------------------------------------------------
|
||||||
|
43:Core/Src/system_stm32f3xx.c **** *=============================================================================
|
||||||
|
44:Core/Src/system_stm32f3xx.c **** ******************************************************************************
|
||||||
|
45:Core/Src/system_stm32f3xx.c **** * @attention
|
||||||
|
46:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
47:Core/Src/system_stm32f3xx.c **** * Copyright (c) 2016 STMicroelectronics.
|
||||||
|
48:Core/Src/system_stm32f3xx.c **** * All rights reserved.
|
||||||
|
49:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
50:Core/Src/system_stm32f3xx.c **** * This software is licensed under terms that can be found in the LICENSE file
|
||||||
|
51:Core/Src/system_stm32f3xx.c **** * in the root directory of this software component.
|
||||||
|
52:Core/Src/system_stm32f3xx.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
|
||||||
|
53:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
54:Core/Src/system_stm32f3xx.c **** ******************************************************************************
|
||||||
|
55:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
56:Core/Src/system_stm32f3xx.c ****
|
||||||
|
57:Core/Src/system_stm32f3xx.c **** /** @addtogroup CMSIS
|
||||||
|
58:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
59:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
60:Core/Src/system_stm32f3xx.c ****
|
||||||
|
61:Core/Src/system_stm32f3xx.c **** /** @addtogroup stm32f3xx_system
|
||||||
|
62:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
63:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
64:Core/Src/system_stm32f3xx.c ****
|
||||||
|
65:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_Includes
|
||||||
|
66:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
67:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
68:Core/Src/system_stm32f3xx.c ****
|
||||||
|
69:Core/Src/system_stm32f3xx.c **** #include "stm32f3xx.h"
|
||||||
|
70:Core/Src/system_stm32f3xx.c ****
|
||||||
|
71:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
72:Core/Src/system_stm32f3xx.c **** * @}
|
||||||
|
73:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
74:Core/Src/system_stm32f3xx.c ****
|
||||||
|
75:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_TypesDefinitions
|
||||||
|
76:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
77:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
78:Core/Src/system_stm32f3xx.c ****
|
||||||
|
79:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
80:Core/Src/system_stm32f3xx.c **** * @}
|
||||||
|
81:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
82:Core/Src/system_stm32f3xx.c ****
|
||||||
|
83:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_Defines
|
||||||
|
84:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
85:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
86:Core/Src/system_stm32f3xx.c **** #if !defined (HSE_VALUE)
|
||||||
|
87:Core/Src/system_stm32f3xx.c **** #define HSE_VALUE ((uint32_t)8000000) /*!< Default value of the External oscillator in Hz.
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 3
|
||||||
|
|
||||||
|
|
||||||
|
88:Core/Src/system_stm32f3xx.c **** This value can be provided and adapted by the user
|
||||||
|
89:Core/Src/system_stm32f3xx.c **** #endif /* HSE_VALUE */
|
||||||
|
90:Core/Src/system_stm32f3xx.c ****
|
||||||
|
91:Core/Src/system_stm32f3xx.c **** #if !defined (HSI_VALUE)
|
||||||
|
92:Core/Src/system_stm32f3xx.c **** #define HSI_VALUE ((uint32_t)8000000) /*!< Default value of the Internal oscillator in Hz.
|
||||||
|
93:Core/Src/system_stm32f3xx.c **** This value can be provided and adapted by the user
|
||||||
|
94:Core/Src/system_stm32f3xx.c **** #endif /* HSI_VALUE */
|
||||||
|
95:Core/Src/system_stm32f3xx.c ****
|
||||||
|
96:Core/Src/system_stm32f3xx.c **** /* Note: Following vector table addresses must be defined in line with linker
|
||||||
|
97:Core/Src/system_stm32f3xx.c **** configuration. */
|
||||||
|
98:Core/Src/system_stm32f3xx.c **** /*!< Uncomment the following line if you need to relocate the vector table
|
||||||
|
99:Core/Src/system_stm32f3xx.c **** anywhere in Flash or Sram, else the vector table is kept at the automatic
|
||||||
|
100:Core/Src/system_stm32f3xx.c **** remap of boot address selected */
|
||||||
|
101:Core/Src/system_stm32f3xx.c **** /* #define USER_VECT_TAB_ADDRESS */
|
||||||
|
102:Core/Src/system_stm32f3xx.c ****
|
||||||
|
103:Core/Src/system_stm32f3xx.c **** #if defined(USER_VECT_TAB_ADDRESS)
|
||||||
|
104:Core/Src/system_stm32f3xx.c **** /*!< Uncomment the following line if you need to relocate your vector Table
|
||||||
|
105:Core/Src/system_stm32f3xx.c **** in Sram else user remap will be done in Flash. */
|
||||||
|
106:Core/Src/system_stm32f3xx.c **** /* #define VECT_TAB_SRAM */
|
||||||
|
107:Core/Src/system_stm32f3xx.c **** #if defined(VECT_TAB_SRAM)
|
||||||
|
108:Core/Src/system_stm32f3xx.c **** #define VECT_TAB_BASE_ADDRESS SRAM_BASE /*!< Vector Table base address field.
|
||||||
|
109:Core/Src/system_stm32f3xx.c **** This value must be a multiple of 0x200. */
|
||||||
|
110:Core/Src/system_stm32f3xx.c **** #define VECT_TAB_OFFSET 0x00000000U /*!< Vector Table base offset field.
|
||||||
|
111:Core/Src/system_stm32f3xx.c **** This value must be a multiple of 0x200. */
|
||||||
|
112:Core/Src/system_stm32f3xx.c **** #else
|
||||||
|
113:Core/Src/system_stm32f3xx.c **** #define VECT_TAB_BASE_ADDRESS FLASH_BASE /*!< Vector Table base address field.
|
||||||
|
114:Core/Src/system_stm32f3xx.c **** This value must be a multiple of 0x200. */
|
||||||
|
115:Core/Src/system_stm32f3xx.c **** #define VECT_TAB_OFFSET 0x00000000U /*!< Vector Table base offset field.
|
||||||
|
116:Core/Src/system_stm32f3xx.c **** This value must be a multiple of 0x200. */
|
||||||
|
117:Core/Src/system_stm32f3xx.c **** #endif /* VECT_TAB_SRAM */
|
||||||
|
118:Core/Src/system_stm32f3xx.c **** #endif /* USER_VECT_TAB_ADDRESS */
|
||||||
|
119:Core/Src/system_stm32f3xx.c ****
|
||||||
|
120:Core/Src/system_stm32f3xx.c **** /******************************************************************************/
|
||||||
|
121:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
122:Core/Src/system_stm32f3xx.c **** * @}
|
||||||
|
123:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
124:Core/Src/system_stm32f3xx.c ****
|
||||||
|
125:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_Macros
|
||||||
|
126:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
127:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
128:Core/Src/system_stm32f3xx.c ****
|
||||||
|
129:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
130:Core/Src/system_stm32f3xx.c **** * @}
|
||||||
|
131:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
132:Core/Src/system_stm32f3xx.c ****
|
||||||
|
133:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_Variables
|
||||||
|
134:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
135:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
136:Core/Src/system_stm32f3xx.c **** /* This variable is updated in three ways:
|
||||||
|
137:Core/Src/system_stm32f3xx.c **** 1) by calling CMSIS function SystemCoreClockUpdate()
|
||||||
|
138:Core/Src/system_stm32f3xx.c **** 2) by calling HAL API function HAL_RCC_GetHCLKFreq()
|
||||||
|
139:Core/Src/system_stm32f3xx.c **** 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
|
||||||
|
140:Core/Src/system_stm32f3xx.c **** Note: If you use this function to configure the system clock there is no need to
|
||||||
|
141:Core/Src/system_stm32f3xx.c **** call the 2 first functions listed above, since SystemCoreClock variable is
|
||||||
|
142:Core/Src/system_stm32f3xx.c **** updated automatically.
|
||||||
|
143:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
144:Core/Src/system_stm32f3xx.c **** uint32_t SystemCoreClock = 8000000;
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 4
|
||||||
|
|
||||||
|
|
||||||
|
145:Core/Src/system_stm32f3xx.c ****
|
||||||
|
146:Core/Src/system_stm32f3xx.c **** const uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9};
|
||||||
|
147:Core/Src/system_stm32f3xx.c **** const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4};
|
||||||
|
148:Core/Src/system_stm32f3xx.c ****
|
||||||
|
149:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
150:Core/Src/system_stm32f3xx.c **** * @}
|
||||||
|
151:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
152:Core/Src/system_stm32f3xx.c ****
|
||||||
|
153:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_FunctionPrototypes
|
||||||
|
154:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
155:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
156:Core/Src/system_stm32f3xx.c ****
|
||||||
|
157:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
158:Core/Src/system_stm32f3xx.c **** * @}
|
||||||
|
159:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
160:Core/Src/system_stm32f3xx.c ****
|
||||||
|
161:Core/Src/system_stm32f3xx.c **** /** @addtogroup STM32F3xx_System_Private_Functions
|
||||||
|
162:Core/Src/system_stm32f3xx.c **** * @{
|
||||||
|
163:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
164:Core/Src/system_stm32f3xx.c ****
|
||||||
|
165:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
166:Core/Src/system_stm32f3xx.c **** * @brief Setup the microcontroller system
|
||||||
|
167:Core/Src/system_stm32f3xx.c **** * @param None
|
||||||
|
168:Core/Src/system_stm32f3xx.c **** * @retval None
|
||||||
|
169:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
170:Core/Src/system_stm32f3xx.c **** void SystemInit(void)
|
||||||
|
171:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
29 .loc 1 171 1 view -0
|
||||||
|
30 .cfi_startproc
|
||||||
|
31 @ args = 0, pretend = 0, frame = 0
|
||||||
|
32 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
33 @ link register save eliminated.
|
||||||
|
172:Core/Src/system_stm32f3xx.c **** /* FPU settings --------------------------------------------------------------*/
|
||||||
|
173:Core/Src/system_stm32f3xx.c **** #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
|
||||||
|
174:Core/Src/system_stm32f3xx.c **** SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */
|
||||||
|
34 .loc 1 174 3 view .LVU1
|
||||||
|
35 .loc 1 174 6 is_stmt 0 view .LVU2
|
||||||
|
36 0000 034A ldr r2, .L2
|
||||||
|
37 0002 D2F88830 ldr r3, [r2, #136]
|
||||||
|
38 .loc 1 174 14 view .LVU3
|
||||||
|
39 0006 43F47003 orr r3, r3, #15728640
|
||||||
|
40 000a C2F88830 str r3, [r2, #136]
|
||||||
|
175:Core/Src/system_stm32f3xx.c **** #endif
|
||||||
|
176:Core/Src/system_stm32f3xx.c ****
|
||||||
|
177:Core/Src/system_stm32f3xx.c **** /* Configure the Vector Table location -------------------------------------*/
|
||||||
|
178:Core/Src/system_stm32f3xx.c **** #if defined(USER_VECT_TAB_ADDRESS)
|
||||||
|
179:Core/Src/system_stm32f3xx.c **** SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM
|
||||||
|
180:Core/Src/system_stm32f3xx.c **** #endif /* USER_VECT_TAB_ADDRESS */
|
||||||
|
181:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
41 .loc 1 181 1 view .LVU4
|
||||||
|
42 000e 7047 bx lr
|
||||||
|
43 .L3:
|
||||||
|
44 .align 2
|
||||||
|
45 .L2:
|
||||||
|
46 0010 00ED00E0 .word -536810240
|
||||||
|
47 .cfi_endproc
|
||||||
|
48 .LFE130:
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 5
|
||||||
|
|
||||||
|
|
||||||
|
50 .section .text.SystemCoreClockUpdate,"ax",%progbits
|
||||||
|
51 .align 1
|
||||||
|
52 .global SystemCoreClockUpdate
|
||||||
|
53 .syntax unified
|
||||||
|
54 .thumb
|
||||||
|
55 .thumb_func
|
||||||
|
57 SystemCoreClockUpdate:
|
||||||
|
58 .LFB131:
|
||||||
|
182:Core/Src/system_stm32f3xx.c ****
|
||||||
|
183:Core/Src/system_stm32f3xx.c **** /**
|
||||||
|
184:Core/Src/system_stm32f3xx.c **** * @brief Update SystemCoreClock variable according to Clock Register Values.
|
||||||
|
185:Core/Src/system_stm32f3xx.c **** * The SystemCoreClock variable contains the core clock (HCLK), it can
|
||||||
|
186:Core/Src/system_stm32f3xx.c **** * be used by the user application to setup the SysTick timer or configure
|
||||||
|
187:Core/Src/system_stm32f3xx.c **** * other parameters.
|
||||||
|
188:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
189:Core/Src/system_stm32f3xx.c **** * @note Each time the core clock (HCLK) changes, this function must be called
|
||||||
|
190:Core/Src/system_stm32f3xx.c **** * to update SystemCoreClock variable value. Otherwise, any configuration
|
||||||
|
191:Core/Src/system_stm32f3xx.c **** * based on this variable will be incorrect.
|
||||||
|
192:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
193:Core/Src/system_stm32f3xx.c **** * @note - The system frequency computed by this function is not the real
|
||||||
|
194:Core/Src/system_stm32f3xx.c **** * frequency in the chip. It is calculated based on the predefined
|
||||||
|
195:Core/Src/system_stm32f3xx.c **** * constant and the selected clock source:
|
||||||
|
196:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
197:Core/Src/system_stm32f3xx.c **** * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*)
|
||||||
|
198:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
199:Core/Src/system_stm32f3xx.c **** * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**)
|
||||||
|
200:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
201:Core/Src/system_stm32f3xx.c **** * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**)
|
||||||
|
202:Core/Src/system_stm32f3xx.c **** * or HSI_VALUE(*) multiplied/divided by the PLL factors.
|
||||||
|
203:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
204:Core/Src/system_stm32f3xx.c **** * (*) HSI_VALUE is a constant defined in stm32f3xx_hal.h file (default value
|
||||||
|
205:Core/Src/system_stm32f3xx.c **** * 8 MHz) but the real value may vary depending on the variations
|
||||||
|
206:Core/Src/system_stm32f3xx.c **** * in voltage and temperature.
|
||||||
|
207:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
208:Core/Src/system_stm32f3xx.c **** * (**) HSE_VALUE is a constant defined in stm32f3xx_hal.h file (default value
|
||||||
|
209:Core/Src/system_stm32f3xx.c **** * 8 MHz), user has to ensure that HSE_VALUE is same as the real
|
||||||
|
210:Core/Src/system_stm32f3xx.c **** * frequency of the crystal used. Otherwise, this function may
|
||||||
|
211:Core/Src/system_stm32f3xx.c **** * have wrong result.
|
||||||
|
212:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
213:Core/Src/system_stm32f3xx.c **** * - The result of this function could be not correct when using fractional
|
||||||
|
214:Core/Src/system_stm32f3xx.c **** * value for HSE crystal.
|
||||||
|
215:Core/Src/system_stm32f3xx.c **** *
|
||||||
|
216:Core/Src/system_stm32f3xx.c **** * @param None
|
||||||
|
217:Core/Src/system_stm32f3xx.c **** * @retval None
|
||||||
|
218:Core/Src/system_stm32f3xx.c **** */
|
||||||
|
219:Core/Src/system_stm32f3xx.c **** void SystemCoreClockUpdate (void)
|
||||||
|
220:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
59 .loc 1 220 1 is_stmt 1 view -0
|
||||||
|
60 .cfi_startproc
|
||||||
|
61 @ args = 0, pretend = 0, frame = 0
|
||||||
|
62 @ frame_needed = 0, uses_anonymous_args = 0
|
||||||
|
63 @ link register save eliminated.
|
||||||
|
221:Core/Src/system_stm32f3xx.c **** uint32_t tmp = 0, pllmull = 0, pllsource = 0, predivfactor = 0;
|
||||||
|
64 .loc 1 221 3 view .LVU6
|
||||||
|
65 .LVL0:
|
||||||
|
222:Core/Src/system_stm32f3xx.c ****
|
||||||
|
223:Core/Src/system_stm32f3xx.c **** /* Get SYSCLK source -------------------------------------------------------*/
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 6
|
||||||
|
|
||||||
|
|
||||||
|
224:Core/Src/system_stm32f3xx.c **** tmp = RCC->CFGR & RCC_CFGR_SWS;
|
||||||
|
66 .loc 1 224 3 view .LVU7
|
||||||
|
67 .loc 1 224 12 is_stmt 0 view .LVU8
|
||||||
|
68 0000 1D4B ldr r3, .L10
|
||||||
|
69 0002 5B68 ldr r3, [r3, #4]
|
||||||
|
70 .loc 1 224 7 view .LVU9
|
||||||
|
71 0004 03F00C03 and r3, r3, #12
|
||||||
|
72 .LVL1:
|
||||||
|
225:Core/Src/system_stm32f3xx.c ****
|
||||||
|
226:Core/Src/system_stm32f3xx.c **** switch (tmp)
|
||||||
|
73 .loc 1 226 3 is_stmt 1 view .LVU10
|
||||||
|
74 0008 042B cmp r3, #4
|
||||||
|
75 000a 11D0 beq .L5
|
||||||
|
76 000c 082B cmp r3, #8
|
||||||
|
77 000e 13D0 beq .L6
|
||||||
|
78 0010 002B cmp r3, #0
|
||||||
|
79 0012 2DD1 bne .L7
|
||||||
|
227:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
228:Core/Src/system_stm32f3xx.c **** case RCC_CFGR_SWS_HSI: /* HSI used as system clock */
|
||||||
|
229:Core/Src/system_stm32f3xx.c **** SystemCoreClock = HSI_VALUE;
|
||||||
|
80 .loc 1 229 7 view .LVU11
|
||||||
|
81 .loc 1 229 23 is_stmt 0 view .LVU12
|
||||||
|
82 0014 194B ldr r3, .L10+4
|
||||||
|
83 .LVL2:
|
||||||
|
84 .loc 1 229 23 view .LVU13
|
||||||
|
85 0016 1A4A ldr r2, .L10+8
|
||||||
|
86 0018 1A60 str r2, [r3]
|
||||||
|
230:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
87 .loc 1 230 7 is_stmt 1 view .LVU14
|
||||||
|
88 .LVL3:
|
||||||
|
89 .L8:
|
||||||
|
231:Core/Src/system_stm32f3xx.c **** case RCC_CFGR_SWS_HSE: /* HSE used as system clock */
|
||||||
|
232:Core/Src/system_stm32f3xx.c **** SystemCoreClock = HSE_VALUE;
|
||||||
|
233:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
234:Core/Src/system_stm32f3xx.c **** case RCC_CFGR_SWS_PLL: /* PLL used as system clock */
|
||||||
|
235:Core/Src/system_stm32f3xx.c **** /* Get PLL clock source and multiplication factor ----------------------*/
|
||||||
|
236:Core/Src/system_stm32f3xx.c **** pllmull = RCC->CFGR & RCC_CFGR_PLLMUL;
|
||||||
|
237:Core/Src/system_stm32f3xx.c **** pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
|
||||||
|
238:Core/Src/system_stm32f3xx.c **** pllmull = ( pllmull >> 18) + 2;
|
||||||
|
239:Core/Src/system_stm32f3xx.c ****
|
||||||
|
240:Core/Src/system_stm32f3xx.c **** #if defined (STM32F302xE) || defined (STM32F303xE) || defined (STM32F398xx)
|
||||||
|
241:Core/Src/system_stm32f3xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
|
||||||
|
242:Core/Src/system_stm32f3xx.c **** if (pllsource == RCC_CFGR_PLLSRC_HSE_PREDIV)
|
||||||
|
243:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
244:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
245:Core/Src/system_stm32f3xx.c **** SystemCoreClock = (HSE_VALUE / predivfactor) * pllmull;
|
||||||
|
246:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
247:Core/Src/system_stm32f3xx.c **** else
|
||||||
|
248:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
249:Core/Src/system_stm32f3xx.c **** /* HSI oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
250:Core/Src/system_stm32f3xx.c **** SystemCoreClock = (HSI_VALUE / predivfactor) * pllmull;
|
||||||
|
251:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
252:Core/Src/system_stm32f3xx.c **** #else
|
||||||
|
253:Core/Src/system_stm32f3xx.c **** if (pllsource == RCC_CFGR_PLLSRC_HSI_DIV2)
|
||||||
|
254:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
255:Core/Src/system_stm32f3xx.c **** /* HSI oscillator clock divided by 2 selected as PLL clock entry */
|
||||||
|
256:Core/Src/system_stm32f3xx.c **** SystemCoreClock = (HSI_VALUE >> 1) * pllmull;
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 7
|
||||||
|
|
||||||
|
|
||||||
|
257:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
258:Core/Src/system_stm32f3xx.c **** else
|
||||||
|
259:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
260:Core/Src/system_stm32f3xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
|
||||||
|
261:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
262:Core/Src/system_stm32f3xx.c **** SystemCoreClock = (HSE_VALUE / predivfactor) * pllmull;
|
||||||
|
263:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
264:Core/Src/system_stm32f3xx.c **** #endif /* STM32F302xE || STM32F303xE || STM32F398xx */
|
||||||
|
265:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
266:Core/Src/system_stm32f3xx.c **** default: /* HSI used as system clock */
|
||||||
|
267:Core/Src/system_stm32f3xx.c **** SystemCoreClock = HSI_VALUE;
|
||||||
|
268:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
269:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
270:Core/Src/system_stm32f3xx.c **** /* Compute HCLK clock frequency ----------------*/
|
||||||
|
271:Core/Src/system_stm32f3xx.c **** /* Get HCLK prescaler */
|
||||||
|
272:Core/Src/system_stm32f3xx.c **** tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> 4)];
|
||||||
|
90 .loc 1 272 3 view .LVU15
|
||||||
|
91 .loc 1 272 28 is_stmt 0 view .LVU16
|
||||||
|
92 001a 174B ldr r3, .L10
|
||||||
|
93 001c 5B68 ldr r3, [r3, #4]
|
||||||
|
94 .loc 1 272 52 view .LVU17
|
||||||
|
95 001e C3F30313 ubfx r3, r3, #4, #4
|
||||||
|
96 .loc 1 272 22 view .LVU18
|
||||||
|
97 0022 184A ldr r2, .L10+12
|
||||||
|
98 0024 D15C ldrb r1, [r2, r3] @ zero_extendqisi2
|
||||||
|
99 .LVL4:
|
||||||
|
273:Core/Src/system_stm32f3xx.c **** /* HCLK clock frequency */
|
||||||
|
274:Core/Src/system_stm32f3xx.c **** SystemCoreClock >>= tmp;
|
||||||
|
100 .loc 1 274 3 is_stmt 1 view .LVU19
|
||||||
|
101 .loc 1 274 19 is_stmt 0 view .LVU20
|
||||||
|
102 0026 154A ldr r2, .L10+4
|
||||||
|
103 0028 1368 ldr r3, [r2]
|
||||||
|
104 002a CB40 lsrs r3, r3, r1
|
||||||
|
105 002c 1360 str r3, [r2]
|
||||||
|
275:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
106 .loc 1 275 1 view .LVU21
|
||||||
|
107 002e 7047 bx lr
|
||||||
|
108 .LVL5:
|
||||||
|
109 .L5:
|
||||||
|
232:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
110 .loc 1 232 7 is_stmt 1 view .LVU22
|
||||||
|
232:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
111 .loc 1 232 23 is_stmt 0 view .LVU23
|
||||||
|
112 0030 124B ldr r3, .L10+4
|
||||||
|
113 .LVL6:
|
||||||
|
232:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
114 .loc 1 232 23 view .LVU24
|
||||||
|
115 0032 134A ldr r2, .L10+8
|
||||||
|
116 0034 1A60 str r2, [r3]
|
||||||
|
233:Core/Src/system_stm32f3xx.c **** case RCC_CFGR_SWS_PLL: /* PLL used as system clock */
|
||||||
|
117 .loc 1 233 7 is_stmt 1 view .LVU25
|
||||||
|
118 0036 F0E7 b .L8
|
||||||
|
119 .LVL7:
|
||||||
|
120 .L6:
|
||||||
|
236:Core/Src/system_stm32f3xx.c **** pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
|
||||||
|
121 .loc 1 236 7 view .LVU26
|
||||||
|
236:Core/Src/system_stm32f3xx.c **** pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 8
|
||||||
|
|
||||||
|
|
||||||
|
122 .loc 1 236 20 is_stmt 0 view .LVU27
|
||||||
|
123 0038 0F4A ldr r2, .L10
|
||||||
|
124 003a 5368 ldr r3, [r2, #4]
|
||||||
|
125 .LVL8:
|
||||||
|
237:Core/Src/system_stm32f3xx.c **** pllmull = ( pllmull >> 18) + 2;
|
||||||
|
126 .loc 1 237 7 is_stmt 1 view .LVU28
|
||||||
|
237:Core/Src/system_stm32f3xx.c **** pllmull = ( pllmull >> 18) + 2;
|
||||||
|
127 .loc 1 237 22 is_stmt 0 view .LVU29
|
||||||
|
128 003c 5268 ldr r2, [r2, #4]
|
||||||
|
129 .LVL9:
|
||||||
|
238:Core/Src/system_stm32f3xx.c ****
|
||||||
|
130 .loc 1 238 7 is_stmt 1 view .LVU30
|
||||||
|
238:Core/Src/system_stm32f3xx.c ****
|
||||||
|
131 .loc 1 238 27 is_stmt 0 view .LVU31
|
||||||
|
132 003e C3F38343 ubfx r3, r3, #18, #4
|
||||||
|
133 .LVL10:
|
||||||
|
238:Core/Src/system_stm32f3xx.c ****
|
||||||
|
134 .loc 1 238 15 view .LVU32
|
||||||
|
135 0042 0233 adds r3, r3, #2
|
||||||
|
136 .LVL11:
|
||||||
|
253:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
137 .loc 1 253 7 is_stmt 1 view .LVU33
|
||||||
|
253:Core/Src/system_stm32f3xx.c **** {
|
||||||
|
138 .loc 1 253 10 is_stmt 0 view .LVU34
|
||||||
|
139 0044 12F4803F tst r2, #65536
|
||||||
|
140 0048 05D1 bne .L9
|
||||||
|
256:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
141 .loc 1 256 9 is_stmt 1 view .LVU35
|
||||||
|
256:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
142 .loc 1 256 44 is_stmt 0 view .LVU36
|
||||||
|
143 004a 0F4A ldr r2, .L10+16
|
||||||
|
144 .LVL12:
|
||||||
|
256:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
145 .loc 1 256 44 view .LVU37
|
||||||
|
146 004c 02FB03F3 mul r3, r2, r3
|
||||||
|
147 .LVL13:
|
||||||
|
256:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
148 .loc 1 256 25 view .LVU38
|
||||||
|
149 0050 0A4A ldr r2, .L10+4
|
||||||
|
150 0052 1360 str r3, [r2]
|
||||||
|
151 0054 E1E7 b .L8
|
||||||
|
152 .LVL14:
|
||||||
|
153 .L9:
|
||||||
|
260:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
154 .loc 1 260 9 is_stmt 1 view .LVU39
|
||||||
|
260:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
155 .loc 1 260 28 is_stmt 0 view .LVU40
|
||||||
|
156 0056 084A ldr r2, .L10
|
||||||
|
157 .LVL15:
|
||||||
|
260:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
158 .loc 1 260 28 view .LVU41
|
||||||
|
159 0058 D16A ldr r1, [r2, #44]
|
||||||
|
260:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
160 .loc 1 260 36 view .LVU42
|
||||||
|
161 005a 01F00F01 and r1, r1, #15
|
||||||
|
260:Core/Src/system_stm32f3xx.c **** /* HSE oscillator clock selected as PREDIV1 clock entry */
|
||||||
|
162 .loc 1 260 22 view .LVU43
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 9
|
||||||
|
|
||||||
|
|
||||||
|
163 005e 0131 adds r1, r1, #1
|
||||||
|
164 .LVL16:
|
||||||
|
262:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
165 .loc 1 262 9 is_stmt 1 view .LVU44
|
||||||
|
262:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
166 .loc 1 262 38 is_stmt 0 view .LVU45
|
||||||
|
167 0060 074A ldr r2, .L10+8
|
||||||
|
168 0062 B2FBF1F2 udiv r2, r2, r1
|
||||||
|
262:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
169 .loc 1 262 54 view .LVU46
|
||||||
|
170 0066 02FB03F3 mul r3, r2, r3
|
||||||
|
171 .LVL17:
|
||||||
|
262:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
172 .loc 1 262 25 view .LVU47
|
||||||
|
173 006a 044A ldr r2, .L10+4
|
||||||
|
174 006c 1360 str r3, [r2]
|
||||||
|
175 006e D4E7 b .L8
|
||||||
|
176 .LVL18:
|
||||||
|
177 .L7:
|
||||||
|
267:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
178 .loc 1 267 7 is_stmt 1 view .LVU48
|
||||||
|
267:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
179 .loc 1 267 23 is_stmt 0 view .LVU49
|
||||||
|
180 0070 024B ldr r3, .L10+4
|
||||||
|
181 .LVL19:
|
||||||
|
267:Core/Src/system_stm32f3xx.c **** break;
|
||||||
|
182 .loc 1 267 23 view .LVU50
|
||||||
|
183 0072 034A ldr r2, .L10+8
|
||||||
|
184 0074 1A60 str r2, [r3]
|
||||||
|
268:Core/Src/system_stm32f3xx.c **** }
|
||||||
|
185 .loc 1 268 7 is_stmt 1 view .LVU51
|
||||||
|
186 0076 D0E7 b .L8
|
||||||
|
187 .L11:
|
||||||
|
188 .align 2
|
||||||
|
189 .L10:
|
||||||
|
190 0078 00100240 .word 1073876992
|
||||||
|
191 007c 00000000 .word SystemCoreClock
|
||||||
|
192 0080 00127A00 .word 8000000
|
||||||
|
193 0084 00000000 .word AHBPrescTable
|
||||||
|
194 0088 00093D00 .word 4000000
|
||||||
|
195 .cfi_endproc
|
||||||
|
196 .LFE131:
|
||||||
|
198 .global APBPrescTable
|
||||||
|
199 .section .rodata.APBPrescTable,"a"
|
||||||
|
200 .align 2
|
||||||
|
203 APBPrescTable:
|
||||||
|
204 0000 00000000 .ascii "\000\000\000\000\001\002\003\004"
|
||||||
|
204 01020304
|
||||||
|
205 .global AHBPrescTable
|
||||||
|
206 .section .rodata.AHBPrescTable,"a"
|
||||||
|
207 .align 2
|
||||||
|
210 AHBPrescTable:
|
||||||
|
211 0000 00000000 .ascii "\000\000\000\000\000\000\000\000\001\002\003\004\006"
|
||||||
|
211 00000000
|
||||||
|
211 01020304
|
||||||
|
211 06
|
||||||
|
212 000d 070809 .ascii "\007\010\011"
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 10
|
||||||
|
|
||||||
|
|
||||||
|
213 .global SystemCoreClock
|
||||||
|
214 .section .data.SystemCoreClock,"aw"
|
||||||
|
215 .align 2
|
||||||
|
218 SystemCoreClock:
|
||||||
|
219 0000 00127A00 .word 8000000
|
||||||
|
220 .text
|
||||||
|
221 .Letext0:
|
||||||
|
222 .file 2 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
223 .file 3 "/home/h/.var/app/com.visualstudio.code/config/Code/User/globalStorage/bmd.stm32-for-vscod
|
||||||
|
224 .file 4 "Drivers/CMSIS/Include/core_cm4.h"
|
||||||
|
225 .file 5 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/system_stm32f3xx.h"
|
||||||
|
226 .file 6 "Drivers/CMSIS/Device/ST/STM32F3xx/Include/stm32f302xc.h"
|
||||||
|
ARM GAS /tmp/ccZxkiP3.s page 11
|
||||||
|
|
||||||
|
|
||||||
|
DEFINED SYMBOLS
|
||||||
|
*ABS*:00000000 system_stm32f3xx.c
|
||||||
|
/tmp/ccZxkiP3.s:21 .text.SystemInit:00000000 $t
|
||||||
|
/tmp/ccZxkiP3.s:27 .text.SystemInit:00000000 SystemInit
|
||||||
|
/tmp/ccZxkiP3.s:46 .text.SystemInit:00000010 $d
|
||||||
|
/tmp/ccZxkiP3.s:51 .text.SystemCoreClockUpdate:00000000 $t
|
||||||
|
/tmp/ccZxkiP3.s:57 .text.SystemCoreClockUpdate:00000000 SystemCoreClockUpdate
|
||||||
|
/tmp/ccZxkiP3.s:190 .text.SystemCoreClockUpdate:00000078 $d
|
||||||
|
/tmp/ccZxkiP3.s:218 .data.SystemCoreClock:00000000 SystemCoreClock
|
||||||
|
/tmp/ccZxkiP3.s:210 .rodata.AHBPrescTable:00000000 AHBPrescTable
|
||||||
|
/tmp/ccZxkiP3.s:203 .rodata.APBPrescTable:00000000 APBPrescTable
|
||||||
|
/tmp/ccZxkiP3.s:200 .rodata.APBPrescTable:00000000 $d
|
||||||
|
/tmp/ccZxkiP3.s:207 .rodata.AHBPrescTable:00000000 $d
|
||||||
|
/tmp/ccZxkiP3.s:215 .data.SystemCoreClock:00000000 $d
|
||||||
|
|
||||||
|
NO UNDEFINED SYMBOLS
|
BIN
build/system_stm32f3xx.o
Normal file
BIN
build/system_stm32f3xx.o
Normal file
Binary file not shown.
8
openocd.cfg
Normal file
8
openocd.cfg
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#OpenOCD configuration file, generated by STM32 for VSCode
|
||||||
|
|
||||||
|
# Programmer, can be changed to several interfaces
|
||||||
|
# Standard will be the stlink interface as this is the standard for STM32 dev boards
|
||||||
|
source [find interface/stlink.cfg]
|
||||||
|
|
||||||
|
# The target MCU. This should match your board
|
||||||
|
source [find target/stm32f3x.cfg]
|
Loading…
x
Reference in New Issue
Block a user