file cleanup?

This commit is contained in:
Johnny Hsu 2024-11-03 14:45:17 +01:00
parent 431e5e3859
commit 7486ef5497
77 changed files with 2635 additions and 117036 deletions

7
Software/.stm32env Normal file
View File

@ -0,0 +1,7 @@
# environment variable file used by stm32-for-vscode and the STM32Make.make makefile
# Other environment variables can be added here. If wanting to use the generated makefile in CI/CD context please
# configure the following variables: GCC_PATH, OPENOCD
ARM_GCC_PATH = /home/chiangni/.config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/arm-none-eabi-gcc/13.3.1-1.1.1/.content/bin
OPENOCD = /home/chiangni/.config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/openocd/0.12.0-4.1/.content/bin/openocd

View File

@ -4,6 +4,7 @@
"name": "STM32",
"includePath": [
"Core/Inc",
"Core/Lib/can-halal",
"Drivers/CMSIS/Device/ST/STM32F0xx/Include",
"Drivers/CMSIS/Include",
"Drivers/STM32F0xx_HAL_Driver/Inc",
@ -13,7 +14,7 @@
"STM32F042x6",
"USE_HAL_DRIVER"
],
"compilerPath": "/home/chiangni/.config/VSCodium/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"
"compilerPath": "/home/chiangni/.config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/arm-none-eabi-gcc/13.3.1-1.1.1/.content/bin/arm-none-eabi-gcc"
}
],
"version": 4

@ -1 +0,0 @@
Subproject commit 6f6cbf1d1eb988a19fc990446827e172e7c6791c

View File

@ -6,36 +6,77 @@
# Generic Makefile (based on gcc)
#
# ChangeLog :
# 2017-02-10 - Several enhancements + project update mode
# 2024-04-27 - Added env file inclusion.
# Added way to overide: build directory, target name and optimisation.
# Added GCC_PATH by env file to not make the makefile machine dependent.
# Currently folder structure in build directory is preserved
# Switching of debug/release build output folder now happens based on debug flag
# 2017-02-10 - Several enhancements + project update mode
# 2015-07-22 - first version
# ------------------------------------------------
######################################
# target
# Environment Variables
######################################
TARGET = SLS
# Imports the environment file in which the compiler and other tooling is set
# for the build machine.
# This can also be used to overwrite some makefile variables
file_exists = $(or $(and $(wildcard $(1)),1),0)
ifeq ($(call file_exists,.stm32env),1)
include .stm32env
endif
######################################
# building variables
# Target
######################################
# debug build?
DEBUG = 1
# optimization
OPT = -Og
# This is the name of the embedded target which will be build
# The final file name will also have debug or release appended to it.
TARGET ?= SLS
#######################################
# paths
# Build directories
#######################################
# Build path
BUILD_DIR = build
# Build path can be overwritten when calling make or setting the environment variable
# in .stm32env
BUILD_DIRECTORY ?= build
######################################
# Optimization
######################################
# Optimization is switched based upon the DEBUG variable. If set to 1
# it will be build in debug mode with the Og optimization flag (optimized for debugging).
# If set to 0 (false) then by default the variable is used in the configuration yaml
# This can also be overwritten using the environment variable or by overwriting it
# by calling make with the OPTIMIZATION variable e.g.:
# make -f STM32Make.make -j 16 OPTIMIZATION=Os
# variable which determines if it is a debug build
DEBUG ?= 1
# debug flags when debug is defined
OPTIMIZATION ?= -Og
RELEASE_DIRECTORY = $(BUILD_DIRECTORY)/debug
ifeq ($(DEBUG),1)
# Sets debugging optimization -Og and the debug information output
OPTIMIZATION_FLAGS += -Og -g -gdwarf -ggdb
$(TARGET) := $(TARGET)-debug
RELEASE_DIRECTORY := $(BUILD_DIRECTORY)/debug
else
OPTIMIZATION_FLAGS += $(OPTIMIZATION)
$(TARGET) := $(TARGET)-release
RELEASE_DIRECTORY := $(BUILD_DIRECTORY)/release
endif
######################################
# source
######################################
# C sources
C_SOURCES = \
Core/Lib/can-halal/can-halal.c \
Core/Src/adc.c \
Core/Src/main.c \
Core/Src/stm32f0xx_hal_msp.c \
Core/Src/stm32f0xx_it.c \
@ -68,30 +109,41 @@ ASM_SOURCES = \
startup_stm32f042x6.s
#######################################
# binaries
# Tools
#######################################
PREFIX = arm-none-eabi-
ARM_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/chiangni/.config/VSCodium/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)
PREFIX = "
# The gcc compiler bin path can be defined in the make command via ARM_GCC_PATH variable (e.g.: make ARM_GCC_PATH=xxx)
# or it can be added to the PATH environment variable.
# By default the variable be used from the environment file: .stm32env.
# if it is not defined
ifdef ARM_GCC_PATH
CC = $(PREFIX)$(ARM_GCC_PATH)/$(ARM_PREFIX)gcc$(POSTFIX)
CXX = $(PREFIX)$(ARM_GCC_PATH)/$(ARM_PREFIX)g++$(POSTFIX)
AS = $(PREFIX)$(ARM_GCC_PATH)/$(ARM_PREFIX)gcc$(POSTFIX) -x assembler-with-cpp
CP = $(PREFIX)$(ARM_GCC_PATH)/$(ARM_PREFIX)objcopy$(POSTFIX)
SZ = $(PREFIX)$(ARM_GCC_PATH)/$(ARM_PREFIX)size$(POSTFIX)
DP = $(PREFIX)$(ARM_GCC_PATH)/$(ARM_PREFIX)objdump$(POSTFIX)
else
CXX = $(PREFIX)g++
CC = $(PREFIX)gcc
AS = $(PREFIX)gcc -x assembler-with-cpp
CP = $(PREFIX)objcopy
SZ = $(PREFIX)size
CC ?= $(ARM_PREFIX)gcc
CXX ?= $(ARM_PREFIX)g++$
AS ?= $(ARM_PREFIX)gcc -x assembler-with-cpp
CP ?= $(ARM_PREFIX)objcopy
SZ ?= $(ARM_PREFIX)size
DP ?= $(ARM_PREFIX)objdump
endif
HEX = $(CP) -O ihex
BIN = $(CP) -O binary -S
LSS = $(DP) -h -S
# Flash and debug tools
# Default is openocd however will be gotten from the env file when existing
OPENOCD ?= openocd
#######################################
# CFLAGS
@ -130,6 +182,7 @@ AS_INCLUDES = \
# C includes
C_INCLUDES = \
-ICore/Inc \
-ICore/Lib/can-halal \
-IDrivers/CMSIS/Device/ST/STM32F0xx/Include \
-IDrivers/CMSIS/Include \
-IDrivers/STM32F0xx_HAL_Driver/Inc \
@ -138,16 +191,11 @@ C_INCLUDES = \
# compile gcc flags
ASFLAGS = $(MCU) $(AS_DEFS) $(AS_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
ASFLAGS = $(MCU) $(AS_DEFS) $(AS_INCLUDES) $(C_INCLUDES) $(C_DEFS) $(OPTIMIZATION_FLAGS)
CFLAGS = $(MCU) $(C_DEFS) $(C_INCLUDES) $(OPT) -Wall -fdata-sections -ffunction-sections
CFLAGS = $(MCU) $(C_DEFS) $(C_INCLUDES) $(OPTIMIZATION_FLAGS)
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
CXXFLAGS = $(MCU) $(CXX_DEFS) $(C_INCLUDES) $(OPTIMIZATION_FLAGS)
# Add additional flags
CFLAGS += -Wall -fdata-sections -ffunction-sections
@ -158,6 +206,12 @@ CXXFLAGS +=
CFLAGS += -MMD -MP -MF"$(@:%.o=%.d)"
CXXFLAGS += -MMD -MP -MF"$(@:%.o=%.d)"
# Output a list file for the compiled source file.
# This is a representative of the source code in assembly
ASSEMBLER_LIST_OUTPUT_FLAG = -Wa,-a,-ad,-alms=$(call add_release_directory,$<,lst)
CFLAGS += $(ASSEMBLER_LIST_OUTPUT_FLAG)
CXXFLAGS += $(ASSEMBLER_LIST_OUTPUT_FLAG)
#######################################
# LDFLAGS
#######################################
@ -172,86 +226,129 @@ 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
LDFLAGS = $(MCU) $(ADDITIONALLDFLAGS) -T$(LDSCRIPT) $(LIBDIR) $(LIBS) -Wl,-Map=$(BUILD_DIRECTORY)/$(TARGET).map,--cref -Wl,--gc-sections
#######################################
# build the application
#######################################
# list of cpp program objects
OBJECTS = $(addprefix $(BUILD_DIR)/,$(notdir $(CPP_SOURCES:.cpp=.o)))
vpath %.cpp $(sort $(dir $(CPP_SOURCES)))
add_release_directory = $(sort $(addprefix $(RELEASE_DIRECTORY)/,$(addsuffix .$(2),$(basename $(subst ../,parent,$(1))))))
# list of C objects
OBJECTS += $(addprefix $(BUILD_DIR)/,$(notdir $(C_SOURCES:.c=.o)))
REMOVE_DIRECTORY_COMMAND = rm -fR
mkdir_function = mkdir -p $(1)
ifeq ($(OS),Windows_NT)
convert_to_windows_path = $(strip $(subst /,\,$(patsubst %/,%,$(1))))
REMOVE_DIRECTORY_COMMAND = cmd /c rd /s /q
mkdir_function = cmd /e:on /c md $(call convert_to_windows_path,$(1))
endif
OBJECTS = $(call add_release_directory,$(C_SOURCES),o)
OBJECTS += $(call add_release_directory,$(CPP_SOURCES),o)
OBJECTS += $(call add_release_directory,$(ASM_SOURCES),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 %.cc $(sort $(dir $(CXX_SOURCES)))
vpath %.cp $(sort $(dir $(CXX_SOURCES)))
vpath %.cxx $(sort $(dir $(CXX_SOURCES)))
vpath %.cpp $(sort $(dir $(CXX_SOURCES)))
vpath %.c++ $(sort $(dir $(CXX_SOURCES)))
vpath %.C $(sort $(dir $(CXX_SOURCES)))
vpath %.CPP $(sort $(dir $(CXX_SOURCES)))
vpath %.s $(sort $(dir $(ASM_SOURCES)))
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 $@
# the tree of folders which needs to be present based on the object files
BUILD_TREE = $(sort $(dir $(OBJECTS)))
$(BUILD_DIR)/%.o: %.cxx STM32Make.make | $(BUILD_DIR)
$(CXX) -c $(CXXFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.cxx=.lst)) $< -o $@
# C build
$(RELEASE_DIRECTORY)/%.o: %.c STM32Make.make | $(BUILD_TREE)
$(CC) -c $(CFLAGS) $< -o $@
$(BUILD_DIR)/%.o: %.c STM32Make.make | $(BUILD_DIR)
$(CC) -c $(CFLAGS) -Wa,-a,-ad,-alms=$(BUILD_DIR)/$(notdir $(<:.c=.lst)) $< -o $@
# C++ build
$(RELEASE_DIRECTORY)/%.o: %.cc STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
$(BUILD_DIR)/%.o: %.s STM32Make.make | $(BUILD_DIR)
$(AS) -c $(CFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.cp STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
$(BUILD_DIR)/%.o: %.S STM32Make.make | $(BUILD_DIR)
$(AS) -c $(CFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.cxx STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
$(BUILD_DIR)/$(TARGET).elf: $(OBJECTS) STM32Make.make
$(RELEASE_DIRECTORY)/%.o: %.cpp STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.c++ STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.C STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.CPP STM32Make.make | $(BUILD_TREE)
$(CXX) -c $(CXXFLAGS) $< -o $@
#Assembly build
$(RELEASE_DIRECTORY)/%.o: %.s STM32Make.make | $(BUILD_TREE)
$(AS) -c $(ASFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.S STM32Make.make | $(BUILD_TREE)
$(AS) -c $(ASFLAGS) $< -o $@
$(RELEASE_DIRECTORY)/%.o: %.sx STM32Make.make | $(BUILD_TREE)
$(AS) -c $(ASFLAGS) $< -o $@
$(BUILD_DIRECTORY)/$(TARGET).elf: $(OBJECTS) STM32Make.make | $(BUILD_DIRECTORY)
$(CC) $(OBJECTS) $(LDFLAGS) -o $@
$(SZ) $@
$(BUILD_DIR)/%.hex: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
$(BUILD_DIRECTORY)/%.hex: $(BUILD_DIRECTORY)/%.elf | $(BUILD_DIRECTORY)
$(HEX) $< $@
$(BUILD_DIR)/%.bin: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
$(BUILD_DIRECTORY)/%.bin: $(BUILD_DIRECTORY)/%.elf | $(BUILD_DIRECTORY)
$(BIN) $< $@
$(BUILD_DIR):
mkdir $@
$(BUILD_DIRECTORY)/%.lss: $(BUILD_DIRECTORY)/%.elf | $(BUILD_DIRECTORY)
$(LSS) $< > $@
$(BUILD_DIRECTORY):
$(call mkdir_function, $@)
$(BUILD_TREE):
$(call mkdir_function, $@)
#######################################
# flash
# all
#######################################
flash: $(BUILD_DIR)/$(TARGET).elf
"/home/chiangni/Documents/STM32/OpenOCD/xpacks/@xpack-dev-tools/openocd/.content/bin/openocd" -f ./openocd.cfg -c "program $(BUILD_DIR)/$(TARGET).elf verify reset exit"
# default action: build all
all:
$(BUILD_DIRECTORY)/$(TARGET).elf
$(BUILD_DIRECTORY)/$(TARGET).hex
$(BUILD_DIRECTORY)/$(TARGET).bin
$(BUILD_DIRECTORY)/$(TARGET).lss
flash: $(BUILD_DIRECTORY)/$(TARGET).elf
"$(OPENOCD)" -f ./openocd.cfg -c "program $(BUILD_DIRECTORY)/$(TARGET).elf verify reset exit"
#######################################
# erase
#######################################
erase: $(BUILD_DIR)/$(TARGET).elf
"/home/chiangni/Documents/STM32/OpenOCD/xpacks/@xpack-dev-tools/openocd/.content/bin/openocd" -f ./openocd.cfg -c "init; reset halt; stm32f0x mass_erase 0; exit"
erase: $(BUILD_DIRECTORY)/$(TARGET).elf
"$(OPENOCD)" -f ./openocd.cfg -c "init; reset halt; stm32f0x mass_erase 0; exit"
#######################################
# clean up
#######################################
clean:
-rm -fR $(BUILD_DIR)
$(REMOVE_DIRECTORY_COMMAND) $(BUILD_DIRECTORY)
#######################################
# custom makefile rules
#######################################
#######################################
# dependencies
#######################################
-include $(wildcard $(BUILD_DIR)/*.d)
-include $(wildcard $(BUILD_DIRECTORY)/*.d)
# *** EOF ***

Binary file not shown.

Binary file not shown.

View File

@ -1,437 +0,0 @@
:020000040800F2
:1000000000180020CD1900080106000803060008AA
:1000100000000000000000000000000000000000E0
:1000200000000000000000000000000005060008BD
:100030000000000000000000070600080906000894
:100040004D1A00084D1A00084D1A00084D1A0008F4
:100050004D1A00084D1A00084D1A00084D1A0008E4
:100060004D1A00084D1A00084D1A00084D1A0008D4
:100070004D1A00084D1A00084D1A00084D1A0008C4
:100080004D1A000800000000000000004D1A000892
:10009000000000004D1A00084D1A00084D1A000813
:1000A000000000004D1A00084D1A00084D1A000803
:1000B0004D1A0008000000004D1A00084D1A0008F3
:1000C000002243088B4274D303098B425FD3030A97
:1000D0008B4244D3030B8B4228D3030C8B420DD3AA
:1000E000FF22090212BA030C8B4202D31212090238
:1000F00065D0030B8B4219D300E0090AC30B8B4276
:1001000001D3CB03C01A5241830B8B4201D38B0323
:10011000C01A5241430B8B4201D34B03C01A5241C8
:10012000030B8B4201D30B03C01A5241C30A8B420B
:1001300001D3CB02C01A5241830A8B4201D38B02F6
:10014000C01A5241430A8B4201D34B02C01A52419A
:10015000030A8B4201D30B02C01A5241CDD2C3090C
:100160008B4201D3CB01C01A524183098B4201D388
:100170008B01C01A524143098B4201D34B01C01A73
:10018000524103098B4201D30B01C01A5241C308EB
:100190008B4201D3CB00C01A524183088B4201D35A
:1001A0008B00C01A524143088B4201D34B00C01A46
:1001B0005241411A00D20146524110467047FFE7B2
:1001C00001B5002000F006F802BDC0460029F7D0B6
:1001D00076E770477047C04610B5064C2378002B71
:1001E00007D1054B002B02D0044800E000BF0123DB
:1001F000237010BD0C00002000000000A81A0008A9
:10020000044B10B5002B03D00349044800E000BFA5
:1002100010BDC0460000000010000020A81A000811
:1002200084B00F4B5A698021C9030A435A615A6945
:100230000A400192019A5A69802189020A435A614F
:100240005A690A400292029A5A698021C9020A43F5
:100250005A615B690B400393039B04B07047C0462F
:100260000010024072B6FEE700B585B00C220021F6
:1002700001A801F0ECFB1C481C4B03600023436009
:100280008360C360012202610421416103764376E9
:100290008376C376C221FF31C16103629E39FF3983
:1002A0004354826200F000FA002817D10023019322
:1002B00080235B01029380235B0503930A4801A915
:1002C00000F0B4FA00280BD101230193064801A9DC
:1002D00000F0ACFA002805D105B000BDFFF7C2FF61
:1002E000FFF7C0FFFFF7BEFF980000200024014089
:1002F00010B50B480B4B0360102343600023836051
:10030000C36003614361037643768376C3760377E4
:10031000437700F027FB002800D110BDFFF7A2FFB4
:10032000700000200064004000B58FB01022002152
:100330000AA801F08CFB0822002108A801F087FB25
:100340001C22002101A801F082FB2A488023DB0542
:10035000036000234360836001225242C260036154
:10036000836101F065F9002836D180235B010A938F
:1003700020480AA901F074FA00282FD11D4801F085
:1003800083F900282CD1002308930993194808A960
:1003900001F0EAFA002825D160230193002302939B
:1003A000039305931348002201A901F0D5F9002811
:1003B0001AD11048042201A901F0CEF9002815D164
:1003C0000C48082201A901F0C7F9002810D10948FA
:1003D00000F0DAF80FB000BDFFF744FFFFF742FF6F
:1003E000FFF740FFFFF73EFFFFF73CFFFFF73AFF45
:1003F000FFF738FF2800002010B592B0342200210A
:1004000005A801F024FB10241022002101A801F00E
:100410001EFB12230593113B08930A9309940B9436
:1004200005A800F059FC00280DD1072301930023F3
:10043000029303930493002101A800F02BFF0028EE
:1004400003D112B010BDFFF70DFFFFF70BFF10B582
:1004500000F008F9FFF7D0FFFFF7E2FEFFF704FF17
:10046000FFF746FFFFF760FFFEE7000082B00A4B90
:10047000996901221143996199690A400092009A91
:10048000DA69802149050A43DA61DB690B4001938F
:10049000019B02B07047C0460010024010B588B002
:1004A00004001422002103A801F0D1FA2268104BA5
:1004B0009A4201D008B010BD0E4B9A698021890084
:1004C0000A439A619A690A400192019A5A69802105
:1004D00089020A435A615B690B400293029B032322
:1004E00003930493902003A9C00500F037FBE1E7D4
:1004F000002401400010024010B588B0040014220E
:10050000002103A801F0A3FA2268134B9A4201D0FC
:1005100008B010BD114BDA69802189040A43DA6101
:10052000DA690A400192019A5A69802189020A43D4
:100530005A615B690B400293029BC0235B010393EA
:10054000022304930133069301330793902003A9F8
:10055000C00500F003FBDBE7006400400010024030
:1005600082B002688023DB059A4201D002B0704756
:10057000044AD16901231943D161D269134001931F
:10058000019BF3E70010024010B588B0040014226C
:10059000002103A801F05BFA22688023DB059A4260
:1005A00001D008B010BD144B5A69802189020A435A
:1005B0005A615A690A400192019A5A698021C90216
:1005C0000A435A615B690B400293029B2423039305
:1005D000022404940794902003A9C00500F0BEFAF9
:1005E000082303930494002305930693079403A917
:1005F000024800F0B3FAD4E70010024000040048BB
:10060000FEE7FEE77047704710B500F03BF810BDFD
:100610007047000010B504000F4B1978FA208000D5
:10062000FFF74EFD01000D4B1868FFF749FD00F084
:1006300091FA00280DD1032C01D901200AE00130E4
:1006400000222100404200F081FA054B1C6000208E
:1006500000E0012010BDC046040000200000002082
:100660000800002010B5064A136810210B431360E0
:100670000320FFF7CFFFFFF7F9FE002010BDC046B3
:1006800000200240034A1168034B1B785B1813607B
:100690007047C046D800002004000020014B1868B5
:1006A0007047C046D800002070B5041E00D1B4E0E9
:1006B000836B002B00D180E0A36BDB0600D5A6E0A6
:1006C00023689A68042108001040114200D09EE07F
:1006D000A26B53490A400631FF310A43A26399686D
:1006E00003220A40012A6ED0DA6818218A43A168E1
:1006F0000A43DA60226813699B009B0861680B4318
:1007000013612268D36847490B40D360237E9B0363
:10071000627ED2031343A17E4A031343A26A012AD5
:1007200058D0802252011343E26813432269022AFF
:1007300052D003432422A25C52001343E27E012ADA
:100740004CD0E269C221FF318A4202D0216A0A43B9
:1007500013432168CA681A43CA60E26A80214905C6
:100760008A420DD0012A0BD0022A09D0032A07D0D1
:10077000042A05D0052A03D0062A01D0072A0AD167
:100780002068416907229143416120684169E56A17
:100790002A400A4342612268D26823490A409A42A9
:1007A0002BD0A36B12229343023A1343A363E36B50
:1007B0000F3A1343E36301202EE0C36334228354D2
:1007C000FFF76CFE78E71A68D2079AD4DA68120449
:1007D00097D489E70200A6E70420AAE7002903D1FD
:1007E000802252021343ACE7A26B20210A43A2638A
:1007F000E26B1F390A43E263A3E70023E363A36BC1
:1008000003229343023A1343A363002004E0A36B43
:1008100010221343A363012070BD0120FCE7C046F2
:10082000FDFEFFFF1902FEFFE7FF3F8330B583B0F7
:100830000400002301933433C35C012B00D181E019
:1008400034230122C254026893685B076CD4486861
:100850003D4B98424DD0936A0D680120A840034358
:100860009362E36A072B27D8002B10D1886822688F
:10087000556907232B40984209D0506907239843B4
:100880005061206842698D682B40134343610B68B7
:100890001A00103A022A51D82C4A1268102B13D091
:1008A000112B0ED080235B041343284A13600B687E
:1008B000102B0CD000203CE0802252059342E6D061
:1008C000D4E78023DB03EFE780231B04ECE7204B16
:1008D00018682049FFF7F4FB83001B185B000193A5
:1008E00002E0019B013B0193019B002BF9D1002009
:1008F0001FE0936A0D680120A840834393620B6850
:100900001A00103A022A1BD8104A1268102B09D07C
:10091000112B05D0104B13400C4A1360002008E047
:100920000E4BF8E70E4BF6E7836B202213438363ED
:10093000012034230022E25403B030BD0020F8E748
:100940000020F6E70220F7E7011000000827014029
:100950000000002040420F00FFFFFFFEFFFFBFFF2F
:10096000FFFF7FFF70B5041E00D1A0E02023C35C11
:10097000002B1AD02268136801210B431360FFF784
:100980008DFE050022685368DB0711D4FFF786FE51
:10099000401B0A28F6D9626A80239B0213436362D4
:1009A00020230522E254012070BDFFF7A5FDE1E7F9
:1009B000136802218B431360FFF770FE0500226865
:1009C00053689B070ED5FFF769FE401B0A28F6D92E
:1009D000626A80239B021343636220230522E25450
:1009E0000120E1E7237E012B3ED0136880218B4359
:1009F0001360637E012B3CD02268136840218B4337
:100A00001360A37E012B3AD02268136820218B4308
:100A10001360E37E012B38D02268136810210B434A
:100A20001360237F012B36D02268136808218B4383
:100A30001360637F012B34D02268136804218B4339
:100A40001360A368E2681343226913436269134386
:100A50006268013A21681343CB610023636220334B
:100A60000122E25400209FE7136880210B431360AA
:100A7000BFE72268136840210B431360C1E7226877
:100A8000136820210B431360C3E722681368102109
:100A90008B431360C5E72268136808210B4313607A
:100AA000C7E72268136804210B431360C9E70120DC
:100AB0007AE7000070B5002811DB8308134DC033BE
:100AC0009B005C5903221040C000FC321600864097
:100AD000B44389010A40824022435A5170BD0F231A
:100AE0000340083B9B0806339B00094A9446634435
:100AF0005C6803221040C000FC3215008540AC4306
:100B000089010A40824022435A60E7E700E100E0A1
:100B100000ED00E0013880235B0498420FD2094ABF
:100B200050600948036A1B021B0AC02109060B43D7
:100B30000362002393600733136000207047012095
:100B4000FCE7C04610E000E000ED00E010B5FFF764
:100B5000B1FF10BD10B5FFF7DDFF10BDF0B583B0DC
:100B6000002356E086685F000324BC40A643CC689F
:100B7000BC4034438460446894434E683609012283
:100B800032409A402243426053E0DE080836B60005
:100B9000375805321A4092000F249440A7430C693D
:100BA000944022003A43325056E0022600E00026EC
:100BB000A64034003C4302329200424E9451424AD5
:100BC0009768EA433E00AE434C68E40201D53E001C
:100BD0002E433D4CA660E7683E0016404C68A402D8
:100BE00001D53E002E43384CE66067683E00164053
:100BF0004C68A40301D53E002E43334C6660266842
:100C000032404C68E40301D52A0032432E4C226066
:100C100001330C682200DA4051D001229A402500AD
:100C200015401442F4D04E6803243440013C012C9A
:100C300098D94C6803222240032A08D0C4685E0079
:100C40000322B24094438A68B2402243C2604C6897
:100C500003222240022A98D004685E000322170073
:100C6000B740BC434F683A40B240224302604C68F0
:100C7000C02292021442CBD0144CA6690122164322
:100C8000A661A46922400192019A9A08941CA400CA
:100C90000C4EA75903241C40A4000F26A640B743BE
:100CA0009026F605B04282D0094EB04205D0094EDA
:100CB000B04200D179E705267AE7012678E703B04C
:100CC000F0BDC04600000140000401400010024099
:100CD000000400480008004870B582B0041E00D12E
:100CE0007FE20368DB072BD5B34B5A680C23134014
:100CF000042B1DD0B04B5A680C231340082B0ED088
:100D00006368012B41D0002B56D1AB4B1A68AB491D
:100D10000A401A601A68AA490A401A603BE0A64BCA
:100D20005B68C02252021340802252029342E7D1F4
:100D3000A14B1B689B0303D56368002B00D153E2D2
:100D400023689B0777D59C4B5B680C221A4262D0C4
:100D5000994B5A680C231340082B53D0E368002B9F
:100D600000D18AE0944A136801210B431360FFF716
:100D700095FC0500904B1B689B0775D4FFF78EFC14
:100D8000401B0228F6D903202CE28B4A11688023ED
:100D90005B020B4313606368002B25D0FFF77EFCDA
:100DA0000500854B1B689B03CAD4FFF777FC401BEB
:100DB0006428F6D9032015E2052B09D07E4B1A686A
:100DC0007E490A401A601A687D490A401A60E2E7C3
:100DD000794B19688022D2020A431A60196880226E
:100DE00052020A431A60D6E7FFF758FC0500724B1F
:100DF0001B689B03A4D5FFF751FC401B6428F6D960
:100E00000320EFE16C4B5B68C0225202134080224A
:100E100012029342A2D1684B1B689B0703D5E3687B
:100E2000012B00D0E2E164490B68F8229343226968
:100E3000D20013430B6023681B0744D5E369002BE2
:100E40002ED05D4A536A01210B435362FFF726FC03
:100E50000500594B5B6A9B0735D4FFF71FFC401B0D
:100E60000228F6D90320BDE153490B68F8229343C9
:100E70002269D20013430B60DDE74F4A136801215A
:100E80008B431360FFF70AFC05004B4B1B689B0765
:100E9000D1D5FFF703FC401B0228F6D90320A1E1BE
:100EA000454A536A01218B435362FFF7F7FB050064
:100EB000414B5B6A9B0706D5FFF7F0FB401B0228FE
:100EC000F6D903208EE123685B0700D480E03A4B1B
:100ED000DB69DB001DD4384BDA69802149050A4300
:100EE000DA61DB690B400193019B0125354B1B68DF
:100EF000DB0510D5A368012B21D0002B36D12E4B5A
:100F00001A6A01218A431A621A6A03318A431A62F1
:100F10001AE00025EAE72B4A116880235B000B43A7
:100F20001360FFF7BBFB0600264B1B68DB05E1D413
:100F3000FFF7B4FB801B6428F6D9032052E11E4A58
:100F4000136A01210B431362A368002B24D0FFF71F
:100F5000A5FB0600184B1B6A9B0737D4FFF79EFBC7
:100F6000801B194B9842F5D903203BE1052B09D092
:100F7000114B1A6A01218A431A621A6A03318A43A1
:100F80001A62E1E70C4B1A6A04210A431A621A6AD0
:100F900003390A431A62D7E7FFF780FB0600064BC6
:100FA0001B6A9B0712D5FFF779FB801B064B984203
:100FB000F5D9032016E1C04600100240FFFFFEFFF6
:100FC000FFFFFBFF0070004088130000012D39D0A7
:100FD0002368DB0610D56369012B39D0053357D15F
:100FE000894A536B04218B435363536BF4318B4316
:100FF000A169C9000B43536323689B066ED5824BDE
:101000005A680C2313400C2B60D07F4B5A680C237A
:101010001340082B53D0236A002B7ED07A4A516BA1
:1010200080235B020B435363FFF738FB0500764BCD
:101030005B6B9B0352D4FFF731FB401B0228F6D9B0
:101040000320CFE0704AD36970490B40D361BFE7FA
:101050006D4B5A6B04210A435A635A6B03390A4396
:101060005A63FFF71BFB0500674B5B6B9B0706D4BE
:10107000FFF714FB401B0228F6D90320B2E06249B7
:101080004B6BF8229343A269D20013434B63B3E73F
:101090005D4B5A6B04210A435A635A6B03398A43E6
:1010A0005A63FFF7FBFA0500574B5B6B9B07A3D511
:1010B000FFF7F4FA401B0228F6D9032092E0524BC6
:1010C0005B68C022520213409342A4D14E4B5B6B2B
:1010D0009B0303D5236A012B00D089E0636A002BB0
:1010E00000D187E0484A51680C220A40082A60D0A3
:1010F000022B25D0444A136845490B401360FFF783
:10110000CDFA0400404B1B689B0150D5FFF7C6FA8F
:10111000001B0228F6D9032064E03B4A536B3D498B
:101120000B405363FFF7BAFA0500374B5B6B9B0329
:10113000D4D5FFF7B3FA401B0228F6D9032051E0BB
:10114000314A136832490B401360FFF7A7FA0500D4
:101150002D4B1B689B0106D5FFF7A0FA401B022808
:10116000F6D903203EE0284BDA6A0F218A43216B2F
:101170000A43DA625A6828490A40E16AA06A0143D0
:101180000A435A601968802252040A431A60FFF722
:1011900085FA04001C4B1B689B0106D4FFF77EFAFE
:1011A000001B0228F6D903201CE000201AE00020D2
:1011B00018E0012B20D0144B5A68D86AC0235B0278
:1011C0001340A16A8B4219D10F230340216B8B423C
:1011D00016D1F0239B031A40E36A9A4212D10020F1
:1011E00000E0012002B070BD0120FBE70120F9E71B
:1011F0000120F7E70020F5E70120F3E70120F1E700
:101200000120EFE70120EDE700100240FFFFFFEFB4
:10121000FFFFFFFEFFFFFEFFFF7FC2FF10B5184B71
:101220005A680C231340082B03D00C2B25D11548EA
:1012300010BD910C0F2319401348445C1049C96A32
:101240000B401249C95CC0235B021A4080235B0239
:101250009A4208D0C0235B029A4209D00C48FEF79C
:101260002FFF6043E4E70A48FEF72AFF6043DFE709
:101270000448FEF725FF6043DAE70548D8E7C04693
:1012800000100240006CDC02E01A0008D01A0008CE
:1012900000127A0070B504000D00002800D186E02D
:1012A000474B1A68012313408B420AD244490B680A
:1012B000012293432B430B600B681A40AA4200D0D3
:1012C00077E023689A070ED55B0705D53D4A51683C
:1012D000E023DB000B4353603A4A5368F0218B4311
:1012E000A1680B4353602368DB0735D56368012B86
:1012F00009D0022B24D0032B28D0324A126892073F
:1013000005D4012052E02F4A1268920353D52D498B
:101310004A680320824313434B60FFF7BFF906007E
:10132000284B5B680C221A4063689B009A4213D0DA
:10133000FFF7B4F9801B244B9842F1D9032035E024
:10134000204A12689201E2D401202FE01D4A526B1C
:101350009203DCD4012029E0194B1A6801231340C1
:10136000AB4209D916490B68012293432B430B600A
:101370000B681A40AA4220D123685B0706D5114AA0
:10138000536812490B40E1680B435360FFF746FF77
:101390000C4B5A6812090F2313400D4AD35CD840F6
:1013A0000C4B18600320FFF735F9002070BD0120B9
:1013B000FCE70120FAE70120F8E70120F6E7C04644
:1013C000002002400010024088130000FFF8FFFFD9
:1013D000C01A00080000002030B5036A01229343C0
:1013E0000362056A426883697324A3430C681C4343
:1013F00002239D438B682B43124DA84205D0124D0A
:10140000A84202D0114DA84206D10825AB431D00C9
:10141000CB682B430425AB430A4DA84205D00A4DA7
:10142000A84202D0094DA84205D1094D2A404D6974
:1014300015438A692A43426084614A6842630362B1
:1014400030BDC046002C014000440140004801402E
:10145000FFFCFFFF30B5036A164A13400362046ABB
:101460004268C3697325AB430D681D43124B1C4092
:101470008B681B022343114CA04206D0104CA042A3
:101480000AD0104CA0420FD106E00F4C1C40CB6894
:101490001B0223430D4C23400D4C22404C69240178
:1014A00014438A69120122434260C5614A68C263DB
:1014B000036230BDFFFEFFFFFFFDFFFF002C014078
:1014C0000044014000480140FFF7FFFFFFFBFFFF22
:1014D000FFCFFFFF30B5036A114A13400362046A6D
:1014E0004568C3690F4A13400A6812021A430E4B3B
:1014F0001C408B681B0323430C4CA04205D00C4CB2
:10150000A04202D00B4CA04204D10B4C2C404D69A0
:10151000AD0125434560C2614A680264036230BD83
:10152000FFEFFFFFFF8CFFFFFFDFFFFF002C0140FD
:101530000044014000480140FFBFFFFF30B5036A8F
:10154000046A0125AC4304628469EF35AC4312019F
:1015500022430A24A3430B438261036230BD00008F
:1015600030B5036A1024A34303628469036A054DFE
:101570002C4012032243A024A34309011943826192
:10158000016230BDFF0FFFFF8368702293430B435E
:10159000693A1343836070477047000003681E4A2E
:1015A000904206D08022D205904202D01B4A90423F
:1015B00003D1702293434A681343174A90420FD0D5
:1015C0008022D20590420BD0144A904208D0144A8F
:1015D000904205D0134A904202D0134A904203D160
:1015E000124A1A40CB681343802293434A6913433B
:1015F00003608B68C3620B688362074B984205D017
:10160000084B984202D0084B984201D10B69036302
:10161000012343617047C046002C01400004004094
:10162000002000400044014000480140FFFCFFFF53
:1016300070B5041E26D03D23C35C002B1CD03D2575
:1016400002236355210001C9FFF7A8FF01234622A9
:10165000A354083AA3540132A3540132A3540132D3
:10166000A3540132A3540132A3540132A3540132D2
:10167000A3546355002070BD3C330022C254FEF7D2
:101680006FFFDCE70120F6E770B5041E26D03D238E
:10169000C35C002B1CD03D2502236355210001C9EA
:1016A000FFF77CFF01234622A354083AA3540132DA
:1016B000A3540132A3540132A3540132A354013282
:1016C000A3540132A3540132A3546355002070BDCA
:1016D0003C330022C254FFF75FFFDCE70120F6E74E
:1016E00070B5036A102293430362026A45688369F6
:1016F000144C23400C6824021C4320239A438B681B
:101700001B011343104A904206D0104A90420BD05E
:101710000F4A904210D107E0802293431E00CB680D
:101720001B013343403A93430A4A15404A699200E9
:101730002A438D69AD001543456084614A68826320
:10174000036270BDFF8CFFFF002C0140004401408C
:1017500000480140FFF3FFFF70B504000D003C237B
:10176000C35C012B00D16AE03C230121C154082A4B
:1017700050D01CD8002A35D0042A16D10068290080
:10178000FFF7AEFF2268916980231B010B43936131
:10179000226893692B490B40936121688B692A6900
:1017A000120213438B61002030E001202EE00C2A4E
:1017B00016D100682900FFF78DFE2268D1698023C9
:1017C0001B010B43D3612268D3691E490B40D361CF
:1017D0002168CB692A6912021343CB61002015E00E
:1017E000012013E000682900FFF7F6FD22689369E5
:1017F00008210B4393612268936904398B439361F9
:101800002268936929690B43936100203C230022DD
:10181000E25470BD00682900FFF71CFE2268D369FE
:1018200008210B43D3612268D36904398B43D36108
:101830002268D36929690B43D3610020E6E70220BF
:10184000E7E7C046FFFBFFFF30B58468034D2C403F
:101850001B0213430B432343836030BDFF00FFFF94
:1018600010B504000B003C22825C012A00D177E015
:101870003C220121815401320131815401688A687E
:10188000384802408A60196860294FD023D840291F
:1018900057D011D8202904D00AD8002901D0102906
:1018A00004D12068FFF770FE00202AE0012028E024
:1018B0003029F6D0012024E050290AD15968DA688D
:1018C0002068FFF73BFE20685021FFF75DFE0020F7
:1018D00017E0012015E08022520191423CD0802285
:1018E0009201914214D0702938D199685A68DB6806
:1018F0002068FFF7A9FF2268936877210B43936064
:1019000000203D230122E254013B0022E25410BD9D
:1019100099685A68DB682068FFF796FF226891682B
:101920008023DB010B4393600020EAE75968DA6803
:101930002068FFF715FE20686021FFF725FE0020D4
:10194000DFE75968DA682068FFF7F8FD2068402172
:10195000FFF71AFE0020D4E70020D2E70120D0E7ED
:101960000220D4E78800FFFF30B53C23C35C012B85
:1019700025D03C230122C25401330132C2540368F2
:101980005C689D686E3294430A6822435A6003681B
:101990000C4A934206D08022D205934202D00A4AD2
:1019A000934204D1802295434A682A439A603D239A
:1019B0000122C254013B0022C254002030BD02204B
:1019C000FCE7C046002C0140000400401348854657
:1019D000FEF71EFE12480168090E124A914205D117
:1019E0001148124901601248124901601248134916
:1019F000134A002302E0D458C4500433C4188C4264
:101A0000F9D3104A104C002301E013600432A242C3
:101A1000FBD300F025F8FEF71AFDFEE700180020C2
:101A2000040000001F000000181002400100000028
:101A30000000014000000000000000200C00002019
:101A4000F81A00080C000020DC000020FEE703006C
:101A50008218934200D1704719700133F9E70000F2
:101A600070B500260C4C0D4D641BA410A64209D184
:101A7000002600F019F80A4C0A4D641BA410A64277
:101A800005D170BDB300EB5898470136EEE7B300BF
:101A9000EB5898470136F2E7F01A0008F01A0008F0
:101AA000F41A0008F01A0008F8B5C046F8BC08BCE3
:101AB0009E467047F8B5C046F8BC08BC9E467047C5
:101AC00000000000000000000102030406070809EE
:101AD0000102030405060708090A0B0C0D0E0F107E
:101AE00002030405060708090A0B0C0D0E0F10105F
:041AF00001020008E7
:041AF400D90100080C
:0C1AF80000127A00010000000400000051
:04000005080019CD09
:00000001FF

File diff suppressed because it is too large Load Diff

View File

@ -1,60 +0,0 @@
build/main.o: Core/Src/main.c Core/Inc/main.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Core/Inc/main.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1 +0,0 @@
build/startup_stm32f042x6.o: startup_stm32f042x6.s

Binary file not shown.

View File

@ -1,59 +0,0 @@
build/stm32f0xx_hal.o: Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_adc.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_adc_ex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

View File

@ -1,424 +0,0 @@
ARM GAS /tmp/ccDXVDeO.s page 1
1 .cpu cortex-m0
2 .arch armv6s-m
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 1
11 .eabi_attribute 34, 0
12 .eabi_attribute 18, 4
13 .file "stm32f0xx_hal_adc_ex.c"
14 .text
15 .Ltext0:
16 .cfi_sections .debug_frame
17 .file 1 "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c"
18 .section .text.HAL_ADCEx_Calibration_Start,"ax",%progbits
19 .align 1
20 .global HAL_ADCEx_Calibration_Start
21 .syntax unified
22 .code 16
23 .thumb_func
25 HAL_ADCEx_Calibration_Start:
26 .LVL0:
27 .LFB40:
1:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /**
2:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ******************************************************************************
3:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @file stm32f0xx_hal_adc_ex.c
4:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @author MCD Application Team
5:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @brief This file provides firmware functions to manage the following
6:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * functionalities of the Analog to Digital Convertor (ADC)
7:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * peripheral:
8:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * + Peripheral Control functions
9:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * Other functions (generic functions) are available in file
10:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * "stm32f0xx_hal_adc.c".
11:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** *
12:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ******************************************************************************
13:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @attention
14:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** *
15:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * Copyright (c) 2016 STMicroelectronics.
16:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * All rights reserved.
17:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** *
18:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * This software is licensed under terms that can be found in the LICENSE file
19:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * in the root directory of this software component.
20:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
21:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** *
22:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ******************************************************************************
23:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** @verbatim
24:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** [..]
25:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** (@) Sections "ADC peripheral features" and "How to use this driver" are
26:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** available in file of generic functions "stm32l1xx_hal_adc.c".
27:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** [..]
28:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** @endverbatim
29:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
30:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
31:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Includes ------------------------------------------------------------------*/
ARM GAS /tmp/ccDXVDeO.s page 2
32:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** #include "stm32f0xx_hal.h"
33:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
34:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /** @addtogroup STM32F0xx_HAL_Driver
35:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @{
36:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
37:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
38:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /** @defgroup ADCEx ADCEx
39:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @brief ADC HAL module driver
40:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @{
41:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
42:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
43:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** #ifdef HAL_ADC_MODULE_ENABLED
44:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
45:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Private typedef -----------------------------------------------------------*/
46:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Private define ------------------------------------------------------------*/
47:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /** @defgroup ADCEx_Private_Constants ADCEx Private Constants
48:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @{
49:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
50:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
51:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Fixed timeout values for ADC calibration, enable settling time, disable */
52:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* settling time. */
53:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Values defined to be higher than worst cases: low clock frequency, */
54:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* maximum prescaler. */
55:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Ex of profile low frequency : Clock source at 0.1 MHz, ADC clock */
56:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* prescaler 4. */
57:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Unit: ms */
58:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** #define ADC_DISABLE_TIMEOUT 2
59:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** #define ADC_CALIBRATION_TIMEOUT 2U
60:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /**
61:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @}
62:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
63:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
64:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Private macros -------------------------------------------------------------*/
65:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Private variables ---------------------------------------------------------*/
66:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Private function prototypes -----------------------------------------------*/
67:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Private functions ---------------------------------------------------------*/
68:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
69:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /** @defgroup ADCEx_Exported_Functions ADCEx Exported Functions
70:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @{
71:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
72:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
73:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /** @defgroup ADCEx_Exported_Functions_Group1 Extended Initialization/de-initialization functions
74:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @brief Extended Initialization and Configuration functions
75:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** *
76:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** @verbatim
77:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ===============================================================================
78:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ##### IO operation functions #####
79:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ===============================================================================
80:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** [..] This section provides functions allowing to:
81:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** (+) Perform the ADC calibration.
82:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** @endverbatim
83:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @{
84:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
85:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
86:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /**
87:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @brief Perform an ADC automatic self-calibration
88:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * Calibration prerequisite: ADC must be disabled (execute this
ARM GAS /tmp/ccDXVDeO.s page 3
89:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * function before HAL_ADC_Start() or after HAL_ADC_Stop() ).
90:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @note Calibration factor can be read after calibration, using function
91:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * HAL_ADC_GetValue() (value on 7 bits: from DR[6;0]).
92:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @param hadc ADC handle
93:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** * @retval HAL status
94:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** */
95:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_StatusTypeDef HAL_ADCEx_Calibration_Start(ADC_HandleTypeDef* hadc)
96:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** {
28 .loc 1 96 1 view -0
29 .cfi_startproc
30 @ args = 0, pretend = 0, frame = 0
31 @ frame_needed = 0, uses_anonymous_args = 0
32 .loc 1 96 1 is_stmt 0 view .LVU1
33 0000 70B5 push {r4, r5, r6, lr}
34 .cfi_def_cfa_offset 16
35 .cfi_offset 4, -16
36 .cfi_offset 5, -12
37 .cfi_offset 6, -8
38 .cfi_offset 14, -4
39 0002 0400 movs r4, r0
97:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_StatusTypeDef tmp_hal_status = HAL_OK;
40 .loc 1 97 3 is_stmt 1 view .LVU2
41 .LVL1:
98:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** uint32_t tickstart = 0U;
42 .loc 1 98 3 view .LVU3
99:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** uint32_t backup_setting_adc_dma_transfer = 0; /* Note: Variable not declared as volatile because
43 .loc 1 99 3 view .LVU4
100:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
101:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Check the parameters */
102:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** assert_param(IS_ADC_ALL_INSTANCE(hadc->Instance));
44 .loc 1 102 3 view .LVU5
103:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
104:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Process locked */
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** __HAL_LOCK(hadc);
45 .loc 1 105 3 view .LVU6
46 .loc 1 105 3 view .LVU7
47 0004 3423 movs r3, #52
48 0006 C35C ldrb r3, [r0, r3]
49 0008 012B cmp r3, #1
50 000a 50D0 beq .L8
51 .loc 1 105 3 discriminator 2 view .LVU8
52 000c 3423 movs r3, #52
53 000e 0122 movs r2, #1
54 0010 C254 strb r2, [r0, r3]
55 .loc 1 105 3 discriminator 2 view .LVU9
106:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
107:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Calibration prerequisite: ADC must be disabled. */
108:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** if (ADC_IS_ENABLE(hadc) == RESET)
56 .loc 1 108 3 view .LVU10
57 .loc 1 108 7 is_stmt 0 view .LVU11
58 0012 0368 ldr r3, [r0]
59 0014 9968 ldr r1, [r3, #8]
60 0016 0232 adds r2, r2, #2
61 0018 0A40 ands r2, r1
62 001a 012A cmp r2, #1
63 001c 05D1 bne .L3
64 .loc 1 108 7 discriminator 1 view .LVU12
ARM GAS /tmp/ccDXVDeO.s page 4
65 001e 1A68 ldr r2, [r3]
66 0020 D207 lsls r2, r2, #31
67 0022 3ED4 bmi .L4
68 .loc 1 108 7 discriminator 4 view .LVU13
69 0024 DA68 ldr r2, [r3, #12]
70 0026 1204 lsls r2, r2, #16
71 0028 3BD4 bmi .L4
72 .L3:
109:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** {
110:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Set ADC state */
111:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ADC_STATE_CLR_SET(hadc->State,
73 .loc 1 111 5 is_stmt 1 view .LVU14
74 002a A26B ldr r2, [r4, #56]
75 002c 2149 ldr r1, .L12
76 002e 0A40 ands r2, r1
77 0030 0631 adds r1, r1, #6
78 0032 FF31 adds r1, r1, #255
79 0034 0A43 orrs r2, r1
80 0036 A263 str r2, [r4, #56]
112:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_ADC_STATE_REG_BUSY,
113:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_ADC_STATE_BUSY_INTERNAL);
114:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
115:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Disable ADC DMA transfer request during calibration */
116:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Note: Specificity of this STM32 series: Calibration factor is */
117:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* available in data register and also transferred by DMA. */
118:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* To not insert ADC calibration factor among ADC conversion data */
119:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* in array variable, DMA transfer must be disabled during */
120:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* calibration. */
121:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** backup_setting_adc_dma_transfer = READ_BIT(hadc->Instance->CFGR1, ADC_CFGR1_DMAEN | ADC_CFGR1_D
81 .loc 1 121 5 view .LVU15
82 .loc 1 121 39 is_stmt 0 view .LVU16
83 0038 DE68 ldr r6, [r3, #12]
84 .loc 1 121 37 view .LVU17
85 003a 0131 adds r1, r1, #1
86 003c 0E40 ands r6, r1
87 .LVL2:
122:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** CLEAR_BIT(hadc->Instance->CFGR1, ADC_CFGR1_DMAEN | ADC_CFGR1_DMACFG);
88 .loc 1 122 5 is_stmt 1 view .LVU18
89 003e DA68 ldr r2, [r3, #12]
90 0040 8A43 bics r2, r1
91 0042 DA60 str r2, [r3, #12]
123:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
124:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Start ADC calibration */
125:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** hadc->Instance->CR |= ADC_CR_ADCAL;
92 .loc 1 125 5 view .LVU19
93 .loc 1 125 9 is_stmt 0 view .LVU20
94 0044 2268 ldr r2, [r4]
95 .loc 1 125 19 view .LVU21
96 0046 9168 ldr r1, [r2, #8]
97 .loc 1 125 24 view .LVU22
98 0048 8023 movs r3, #128
99 004a 1B06 lsls r3, r3, #24
100 004c 0B43 orrs r3, r1
101 004e 9360 str r3, [r2, #8]
126:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
127:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** tickstart = HAL_GetTick();
102 .loc 1 127 5 is_stmt 1 view .LVU23
ARM GAS /tmp/ccDXVDeO.s page 5
103 .loc 1 127 17 is_stmt 0 view .LVU24
104 0050 FFF7FEFF bl HAL_GetTick
105 .LVL3:
106 .loc 1 127 17 view .LVU25
107 0054 0500 movs r5, r0
108 .LVL4:
128:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
129:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Wait for calibration completion */
130:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** while(HAL_IS_BIT_SET(hadc->Instance->CR, ADC_CR_ADCAL))
109 .loc 1 130 5 is_stmt 1 view .LVU26
110 .L5:
111 .loc 1 130 11 view .LVU27
112 0056 2368 ldr r3, [r4]
113 0058 9A68 ldr r2, [r3, #8]
114 005a 002A cmp r2, #0
115 005c 13DA bge .L11
131:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** {
132:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** if((HAL_GetTick() - tickstart) > ADC_CALIBRATION_TIMEOUT)
116 .loc 1 132 7 view .LVU28
117 .loc 1 132 11 is_stmt 0 view .LVU29
118 005e FFF7FEFF bl HAL_GetTick
119 .LVL5:
120 .loc 1 132 25 discriminator 1 view .LVU30
121 0062 401B subs r0, r0, r5
122 .loc 1 132 9 discriminator 1 view .LVU31
123 0064 0228 cmp r0, #2
124 0066 F6D9 bls .L5
133:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** {
134:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* New check to avoid false timeout detection in case of preemption */
135:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** if(HAL_IS_BIT_SET(hadc->Instance->CR, ADC_CR_ADCAL))
125 .loc 1 135 9 is_stmt 1 view .LVU32
126 .loc 1 135 12 is_stmt 0 view .LVU33
127 0068 2368 ldr r3, [r4]
128 006a 9B68 ldr r3, [r3, #8]
129 .loc 1 135 11 view .LVU34
130 006c 002B cmp r3, #0
131 006e F2DA bge .L5
136:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** {
137:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Update ADC state machine to error */
138:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ADC_STATE_CLR_SET(hadc->State,
132 .loc 1 138 11 is_stmt 1 view .LVU35
133 0070 A36B ldr r3, [r4, #56]
134 0072 1222 movs r2, #18
135 0074 9343 bics r3, r2
136 0076 023A subs r2, r2, #2
137 0078 1343 orrs r3, r2
138 007a A363 str r3, [r4, #56]
139:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_ADC_STATE_BUSY_INTERNAL,
140:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_ADC_STATE_ERROR_INTERNAL);
141:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
142:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Process unlocked */
143:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** __HAL_UNLOCK(hadc);
139 .loc 1 143 11 view .LVU36
140 .loc 1 143 11 view .LVU37
141 007c 3423 movs r3, #52
142 007e 0022 movs r2, #0
143 0080 E254 strb r2, [r4, r3]
ARM GAS /tmp/ccDXVDeO.s page 6
144 .loc 1 143 11 view .LVU38
144:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
145:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** return HAL_ERROR;
145 .loc 1 145 11 view .LVU39
146 .loc 1 145 18 is_stmt 0 view .LVU40
147 0082 0120 movs r0, #1
148 0084 0CE0 b .L2
149 .L11:
146:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
147:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
148:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
149:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
150:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Restore ADC DMA transfer request after calibration */
151:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** SET_BIT(hadc->Instance->CFGR1, backup_setting_adc_dma_transfer);
150 .loc 1 151 5 is_stmt 1 view .LVU41
151 0086 DA68 ldr r2, [r3, #12]
152 0088 3243 orrs r2, r6
153 008a DA60 str r2, [r3, #12]
152:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
153:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Set ADC state */
154:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** ADC_STATE_CLR_SET(hadc->State,
154 .loc 1 154 5 view .LVU42
155 008c A36B ldr r3, [r4, #56]
156 008e 0322 movs r2, #3
157 0090 9343 bics r3, r2
158 0092 023A subs r2, r2, #2
159 0094 1343 orrs r3, r2
160 0096 A363 str r3, [r4, #56]
97:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** uint32_t tickstart = 0U;
161 .loc 1 97 21 is_stmt 0 view .LVU43
162 0098 0020 movs r0, #0
163 .LVL6:
164 .L7:
155:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_ADC_STATE_BUSY_INTERNAL,
156:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** HAL_ADC_STATE_READY);
157:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
158:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** else
159:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** {
160:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Update ADC state machine to error */
161:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** SET_BIT(hadc->State, HAL_ADC_STATE_ERROR_CONFIG);
162:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
163:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** tmp_hal_status = HAL_ERROR;
164:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
165:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
166:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Process unlocked */
167:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** __HAL_UNLOCK(hadc);
165 .loc 1 167 3 is_stmt 1 view .LVU44
166 .loc 1 167 3 view .LVU45
167 009a 3423 movs r3, #52
168 009c 0022 movs r2, #0
169 009e E254 strb r2, [r4, r3]
170 .loc 1 167 3 view .LVU46
168:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
169:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** /* Return function status */
170:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** return tmp_hal_status;
171 .loc 1 170 3 view .LVU47
172 .LVL7:
ARM GAS /tmp/ccDXVDeO.s page 7
173 .L2:
171:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
174 .loc 1 171 1 is_stmt 0 view .LVU48
175 @ sp needed
176 .LVL8:
177 .loc 1 171 1 view .LVU49
178 00a0 70BD pop {r4, r5, r6, pc}
179 .LVL9:
180 .L4:
161:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
181 .loc 1 161 5 is_stmt 1 view .LVU50
182 00a2 A36B ldr r3, [r4, #56]
183 00a4 2022 movs r2, #32
184 00a6 1343 orrs r3, r2
185 00a8 A363 str r3, [r4, #56]
163:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
186 .loc 1 163 5 view .LVU51
187 .LVL10:
163:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
188 .loc 1 163 20 is_stmt 0 view .LVU52
189 00aa 0120 movs r0, #1
190 .LVL11:
163:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c **** }
191 .loc 1 163 20 view .LVU53
192 00ac F5E7 b .L7
193 .LVL12:
194 .L8:
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
195 .loc 1 105 3 discriminator 1 view .LVU54
196 00ae 0220 movs r0, #2
197 .LVL13:
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_adc_ex.c ****
198 .loc 1 105 3 discriminator 1 view .LVU55
199 00b0 F6E7 b .L2
200 .L13:
201 00b2 C046 .align 2
202 .L12:
203 00b4 FDFEFFFF .word -259
204 .cfi_endproc
205 .LFE40:
207 .text
208 .Letext0:
209 .file 2 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
210 .file 3 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
211 .file 4 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h"
212 .file 5 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h"
213 .file 6 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h"
214 .file 7 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h"
215 .file 8 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h"
216 .file 9 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h"
ARM GAS /tmp/ccDXVDeO.s page 8
DEFINED SYMBOLS
*ABS*:00000000 stm32f0xx_hal_adc_ex.c
/tmp/ccDXVDeO.s:19 .text.HAL_ADCEx_Calibration_Start:00000000 $t
/tmp/ccDXVDeO.s:25 .text.HAL_ADCEx_Calibration_Start:00000000 HAL_ADCEx_Calibration_Start
/tmp/ccDXVDeO.s:203 .text.HAL_ADCEx_Calibration_Start:000000b4 $d
UNDEFINED SYMBOLS
HAL_GetTick

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_can.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_can.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_cortex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_cortex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_dma.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_dma.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_exti.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_exti.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_flash.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_flash_ex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_flash_ex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_gpio.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_gpio.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_i2c.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_i2c_ex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

View File

@ -1,992 +0,0 @@
ARM GAS /tmp/ccOhaUnK.s page 1
1 .cpu cortex-m0
2 .arch armv6s-m
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 1
11 .eabi_attribute 34, 0
12 .eabi_attribute 18, 4
13 .file "stm32f0xx_hal_i2c_ex.c"
14 .text
15 .Ltext0:
16 .cfi_sections .debug_frame
17 .file 1 "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c"
18 .section .text.HAL_I2CEx_ConfigAnalogFilter,"ax",%progbits
19 .align 1
20 .global HAL_I2CEx_ConfigAnalogFilter
21 .syntax unified
22 .code 16
23 .thumb_func
25 HAL_I2CEx_ConfigAnalogFilter:
26 .LVL0:
27 .LFB40:
1:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
2:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ******************************************************************************
3:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @file stm32f0xx_hal_i2c_ex.c
4:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @author MCD Application Team
5:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief I2C Extended HAL module driver.
6:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * This file provides firmware functions to manage the following
7:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * functionalities of I2C Extended peripheral:
8:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * + Filter Mode Functions
9:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * + WakeUp Mode Functions
10:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * + FastModePlus Functions
11:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
12:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ******************************************************************************
13:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @attention
14:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
15:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * Copyright (c) 2016 STMicroelectronics.
16:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * All rights reserved.
17:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
18:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * This software is licensed under terms that can be found in the LICENSE file
19:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * in the root directory of this software component.
20:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
21:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
22:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ******************************************************************************
23:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @verbatim
24:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ==============================================================================
25:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ##### I2C peripheral Extended features #####
26:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ==============================================================================
27:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
28:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** [..] Comparing to other previous devices, the I2C interface for STM32F0xx
29:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** devices contains the following additional features
30:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
31:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Possibility to disable or enable Analog Noise Filter
ARM GAS /tmp/ccOhaUnK.s page 2
32:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Use of a configured Digital Noise Filter
33:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Disable or enable wakeup from Stop mode(s)
34:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Disable or enable Fast Mode Plus
35:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
36:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ##### How to use this driver #####
37:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ==============================================================================
38:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** [..] This driver provides functions to configure Noise Filter and Wake Up Feature
39:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (#) Configure I2C Analog noise filter using the function HAL_I2CEx_ConfigAnalogFilter()
40:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (#) Configure I2C Digital noise filter using the function HAL_I2CEx_ConfigDigitalFilter()
41:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (#) Configure the enable or disable of I2C Wake Up Mode using the functions :
42:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (++) HAL_I2CEx_EnableWakeUp()
43:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (++) HAL_I2CEx_DisableWakeUp()
44:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (#) Configure the enable or disable of fast mode plus driving capability using the functions :
45:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (++) HAL_I2CEx_EnableFastModePlus()
46:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (++) HAL_I2CEx_DisableFastModePlus()
47:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @endverbatim
48:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
49:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
50:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Includes ------------------------------------------------------------------*/
51:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** #include "stm32f0xx_hal.h"
52:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
53:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /** @addtogroup STM32F0xx_HAL_Driver
54:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @{
55:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
56:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
57:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /** @defgroup I2CEx I2CEx
58:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief I2C Extended HAL module driver
59:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @{
60:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
61:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
62:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** #ifdef HAL_I2C_MODULE_ENABLED
63:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
64:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Private typedef -----------------------------------------------------------*/
65:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Private define ------------------------------------------------------------*/
66:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Private macro -------------------------------------------------------------*/
67:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Private variables ---------------------------------------------------------*/
68:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Private function prototypes -----------------------------------------------*/
69:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Private functions ---------------------------------------------------------*/
70:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
71:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions I2C Extended Exported Functions
72:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @{
73:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
74:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
75:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions_Group1 Filter Mode Functions
76:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Filter Mode Functions
77:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
78:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @verbatim
79:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ===============================================================================
80:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ##### Filter Mode Functions #####
81:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ===============================================================================
82:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** [..] This section provides functions allowing to:
83:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Configure Noise Filters
84:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
85:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @endverbatim
86:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @{
87:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
88:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
ARM GAS /tmp/ccOhaUnK.s page 3
89:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
90:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Configure I2C Analog noise filter.
91:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
92:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
93:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param AnalogFilter New state of the Analog filter.
94:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @retval HAL status
95:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
96:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_ConfigAnalogFilter(I2C_HandleTypeDef *hi2c, uint32_t AnalogFilter)
97:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
28 .loc 1 97 1 view -0
29 .cfi_startproc
30 @ args = 0, pretend = 0, frame = 0
31 @ frame_needed = 0, uses_anonymous_args = 0
32 .loc 1 97 1 is_stmt 0 view .LVU1
33 0000 F0B5 push {r4, r5, r6, r7, lr}
34 .cfi_def_cfa_offset 20
35 .cfi_offset 4, -20
36 .cfi_offset 5, -16
37 .cfi_offset 6, -12
38 .cfi_offset 7, -8
39 .cfi_offset 14, -4
98:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Check the parameters */
99:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance));
40 .loc 1 99 3 is_stmt 1 view .LVU2
100:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_ANALOG_FILTER(AnalogFilter));
41 .loc 1 100 3 view .LVU3
101:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
102:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
42 .loc 1 102 3 view .LVU4
43 .loc 1 102 11 is_stmt 0 view .LVU5
44 0002 4123 movs r3, #65
45 0004 C35C ldrb r3, [r0, r3]
46 .loc 1 102 6 view .LVU6
47 0006 202B cmp r3, #32
48 0008 20D1 bne .L3
103:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
104:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Locked */
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
49 .loc 1 105 5 is_stmt 1 view .LVU7
50 .loc 1 105 5 view .LVU8
51 000a 2033 adds r3, r3, #32
52 000c C35C ldrb r3, [r0, r3]
53 000e 012B cmp r3, #1
54 0010 1ED0 beq .L4
55 .loc 1 105 5 discriminator 2 view .LVU9
56 0012 4024 movs r4, #64
57 0014 0122 movs r2, #1
58 0016 0255 strb r2, [r0, r4]
59 .loc 1 105 5 discriminator 2 view .LVU10
106:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
107:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
60 .loc 1 107 5 view .LVU11
61 .loc 1 107 17 is_stmt 0 view .LVU12
62 0018 4125 movs r5, #65
63 001a 2423 movs r3, #36
64 001c 4355 strb r3, [r0, r5]
108:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
ARM GAS /tmp/ccOhaUnK.s page 4
109:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
110:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
65 .loc 1 110 5 is_stmt 1 view .LVU13
66 001e 0668 ldr r6, [r0]
67 0020 3368 ldr r3, [r6]
68 0022 9343 bics r3, r2
69 0024 3360 str r3, [r6]
111:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
112:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Reset I2Cx ANOFF bit */
113:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->Instance->CR1 &= ~(I2C_CR1_ANFOFF);
70 .loc 1 113 5 view .LVU14
71 .loc 1 113 9 is_stmt 0 view .LVU15
72 0026 0668 ldr r6, [r0]
73 .loc 1 113 19 view .LVU16
74 0028 3368 ldr r3, [r6]
75 .loc 1 113 25 view .LVU17
76 002a 0A4F ldr r7, .L5
77 002c 3B40 ands r3, r7
78 002e 3360 str r3, [r6]
114:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
115:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Set analog filter bit*/
116:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->Instance->CR1 |= AnalogFilter;
79 .loc 1 116 5 is_stmt 1 view .LVU18
80 .loc 1 116 9 is_stmt 0 view .LVU19
81 0030 0668 ldr r6, [r0]
82 .loc 1 116 19 view .LVU20
83 0032 3368 ldr r3, [r6]
84 .loc 1 116 25 view .LVU21
85 0034 0B43 orrs r3, r1
86 0036 3360 str r3, [r6]
117:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
118:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
87 .loc 1 118 5 is_stmt 1 view .LVU22
88 0038 0168 ldr r1, [r0]
89 .LVL1:
90 .loc 1 118 5 is_stmt 0 view .LVU23
91 003a 0B68 ldr r3, [r1]
92 003c 1343 orrs r3, r2
93 003e 0B60 str r3, [r1]
119:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
120:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
94 .loc 1 120 5 is_stmt 1 view .LVU24
95 .loc 1 120 17 is_stmt 0 view .LVU25
96 0040 2023 movs r3, #32
97 0042 4355 strb r3, [r0, r5]
121:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
122:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Unlocked */
123:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
98 .loc 1 123 5 is_stmt 1 view .LVU26
99 .loc 1 123 5 view .LVU27
100 0044 0023 movs r3, #0
101 0046 0355 strb r3, [r0, r4]
102 .loc 1 123 5 view .LVU28
124:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
125:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_OK;
103 .loc 1 125 5 view .LVU29
104 .loc 1 125 12 is_stmt 0 view .LVU30
ARM GAS /tmp/ccOhaUnK.s page 5
105 0048 0020 movs r0, #0
106 .LVL2:
107 .L2:
126:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
127:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** else
128:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
129:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_BUSY;
130:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
131:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
108 .loc 1 131 1 view .LVU31
109 @ sp needed
110 004a F0BD pop {r4, r5, r6, r7, pc}
111 .LVL3:
112 .L3:
129:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
113 .loc 1 129 12 view .LVU32
114 004c 0220 movs r0, #2
115 .LVL4:
129:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
116 .loc 1 129 12 view .LVU33
117 004e FCE7 b .L2
118 .LVL5:
119 .L4:
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
120 .loc 1 105 5 discriminator 1 view .LVU34
121 0050 0220 movs r0, #2
122 .LVL6:
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
123 .loc 1 105 5 discriminator 1 view .LVU35
124 0052 FAE7 b .L2
125 .L6:
126 .align 2
127 .L5:
128 0054 FFEFFFFF .word -4097
129 .cfi_endproc
130 .LFE40:
132 .section .text.HAL_I2CEx_ConfigDigitalFilter,"ax",%progbits
133 .align 1
134 .global HAL_I2CEx_ConfigDigitalFilter
135 .syntax unified
136 .code 16
137 .thumb_func
139 HAL_I2CEx_ConfigDigitalFilter:
140 .LVL7:
141 .LFB41:
132:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
133:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
134:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Configure I2C Digital noise filter.
135:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
136:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
137:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param DigitalFilter Coefficient of digital noise filter between Min_Data=0x00 and Max_Data=0x
138:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @retval HAL status
139:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
140:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_ConfigDigitalFilter(I2C_HandleTypeDef *hi2c, uint32_t DigitalFilter)
141:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
142 .loc 1 141 1 is_stmt 1 view -0
143 .cfi_startproc
ARM GAS /tmp/ccOhaUnK.s page 6
144 @ args = 0, pretend = 0, frame = 0
145 @ frame_needed = 0, uses_anonymous_args = 0
146 .loc 1 141 1 is_stmt 0 view .LVU37
147 0000 F0B5 push {r4, r5, r6, r7, lr}
148 .cfi_def_cfa_offset 20
149 .cfi_offset 4, -20
150 .cfi_offset 5, -16
151 .cfi_offset 6, -12
152 .cfi_offset 7, -8
153 .cfi_offset 14, -4
142:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** uint32_t tmpreg;
154 .loc 1 142 3 is_stmt 1 view .LVU38
143:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
144:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Check the parameters */
145:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_ALL_INSTANCE(hi2c->Instance));
155 .loc 1 145 3 view .LVU39
146:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_DIGITAL_FILTER(DigitalFilter));
156 .loc 1 146 3 view .LVU40
147:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
148:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
157 .loc 1 148 3 view .LVU41
158 .loc 1 148 11 is_stmt 0 view .LVU42
159 0002 4123 movs r3, #65
160 0004 C35C ldrb r3, [r0, r3]
161 .loc 1 148 6 view .LVU43
162 0006 202B cmp r3, #32
163 0008 1ED1 bne .L9
149:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
150:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Locked */
151:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
164 .loc 1 151 5 is_stmt 1 view .LVU44
165 .loc 1 151 5 view .LVU45
166 000a 2033 adds r3, r3, #32
167 000c C35C ldrb r3, [r0, r3]
168 000e 012B cmp r3, #1
169 0010 1CD0 beq .L10
170 .loc 1 151 5 discriminator 2 view .LVU46
171 0012 4024 movs r4, #64
172 0014 0122 movs r2, #1
173 0016 0255 strb r2, [r0, r4]
174 .loc 1 151 5 discriminator 2 view .LVU47
152:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
153:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
175 .loc 1 153 5 view .LVU48
176 .loc 1 153 17 is_stmt 0 view .LVU49
177 0018 4125 movs r5, #65
178 001a 2423 movs r3, #36
179 001c 4355 strb r3, [r0, r5]
154:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
155:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
156:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
180 .loc 1 156 5 is_stmt 1 view .LVU50
181 001e 0668 ldr r6, [r0]
182 0020 3368 ldr r3, [r6]
183 0022 9343 bics r3, r2
184 0024 3360 str r3, [r6]
157:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
ARM GAS /tmp/ccOhaUnK.s page 7
158:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Get the old register value */
159:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** tmpreg = hi2c->Instance->CR1;
185 .loc 1 159 5 view .LVU51
186 .loc 1 159 18 is_stmt 0 view .LVU52
187 0026 0668 ldr r6, [r0]
188 .loc 1 159 12 view .LVU53
189 0028 3368 ldr r3, [r6]
190 .LVL8:
160:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
161:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Reset I2Cx DNF bits [11:8] */
162:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** tmpreg &= ~(I2C_CR1_DNF);
191 .loc 1 162 5 is_stmt 1 view .LVU54
192 .loc 1 162 12 is_stmt 0 view .LVU55
193 002a 094F ldr r7, .L11
194 002c 3B40 ands r3, r7
195 .LVL9:
163:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
164:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Set I2Cx DNF coefficient */
165:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** tmpreg |= DigitalFilter << 8U;
196 .loc 1 165 5 is_stmt 1 view .LVU56
197 .loc 1 165 29 is_stmt 0 view .LVU57
198 002e 0902 lsls r1, r1, #8
199 .LVL10:
200 .loc 1 165 12 view .LVU58
201 0030 1943 orrs r1, r3
202 .LVL11:
166:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
167:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Store the new register value */
168:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->Instance->CR1 = tmpreg;
203 .loc 1 168 5 is_stmt 1 view .LVU59
204 .loc 1 168 25 is_stmt 0 view .LVU60
205 0032 3160 str r1, [r6]
169:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
170:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
206 .loc 1 170 5 is_stmt 1 view .LVU61
207 0034 0168 ldr r1, [r0]
208 .LVL12:
209 .loc 1 170 5 is_stmt 0 view .LVU62
210 0036 0B68 ldr r3, [r1]
211 0038 1343 orrs r3, r2
212 003a 0B60 str r3, [r1]
213 .LVL13:
171:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
172:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
214 .loc 1 172 5 is_stmt 1 view .LVU63
215 .loc 1 172 17 is_stmt 0 view .LVU64
216 003c 2023 movs r3, #32
217 003e 4355 strb r3, [r0, r5]
173:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
174:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Unlocked */
175:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
218 .loc 1 175 5 is_stmt 1 view .LVU65
219 .loc 1 175 5 view .LVU66
220 0040 0023 movs r3, #0
221 0042 0355 strb r3, [r0, r4]
222 .loc 1 175 5 view .LVU67
176:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
ARM GAS /tmp/ccOhaUnK.s page 8
177:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_OK;
223 .loc 1 177 5 view .LVU68
224 .loc 1 177 12 is_stmt 0 view .LVU69
225 0044 0020 movs r0, #0
226 .LVL14:
227 .L8:
178:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
179:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** else
180:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
181:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_BUSY;
182:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
183:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
228 .loc 1 183 1 view .LVU70
229 @ sp needed
230 0046 F0BD pop {r4, r5, r6, r7, pc}
231 .LVL15:
232 .L9:
181:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
233 .loc 1 181 12 view .LVU71
234 0048 0220 movs r0, #2
235 .LVL16:
181:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
236 .loc 1 181 12 view .LVU72
237 004a FCE7 b .L8
238 .LVL17:
239 .L10:
151:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
240 .loc 1 151 5 discriminator 1 view .LVU73
241 004c 0220 movs r0, #2
242 .LVL18:
151:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
243 .loc 1 151 5 discriminator 1 view .LVU74
244 004e FAE7 b .L8
245 .L12:
246 .align 2
247 .L11:
248 0050 FFF0FFFF .word -3841
249 .cfi_endproc
250 .LFE41:
252 .section .text.HAL_I2CEx_EnableWakeUp,"ax",%progbits
253 .align 1
254 .global HAL_I2CEx_EnableWakeUp
255 .syntax unified
256 .code 16
257 .thumb_func
259 HAL_I2CEx_EnableWakeUp:
260 .LVL19:
261 .LFB42:
184:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
185:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @}
186:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
187:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** #if defined(I2C_CR1_WUPEN)
188:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
189:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions_Group2 WakeUp Mode Functions
190:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief WakeUp Mode Functions
191:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
192:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @verbatim
ARM GAS /tmp/ccOhaUnK.s page 9
193:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ===============================================================================
194:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ##### WakeUp Mode Functions #####
195:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ===============================================================================
196:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** [..] This section provides functions allowing to:
197:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Configure Wake Up Feature
198:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
199:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @endverbatim
200:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @{
201:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
202:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
203:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
204:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Enable I2C wakeup from Stop mode(s).
205:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
206:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
207:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @retval HAL status
208:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
209:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_EnableWakeUp(I2C_HandleTypeDef *hi2c)
210:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
262 .loc 1 210 1 is_stmt 1 view -0
263 .cfi_startproc
264 @ args = 0, pretend = 0, frame = 0
265 @ frame_needed = 0, uses_anonymous_args = 0
266 .loc 1 210 1 is_stmt 0 view .LVU76
267 0000 70B5 push {r4, r5, r6, lr}
268 .cfi_def_cfa_offset 16
269 .cfi_offset 4, -16
270 .cfi_offset 5, -12
271 .cfi_offset 6, -8
272 .cfi_offset 14, -4
211:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Check the parameters */
212:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hi2c->Instance));
273 .loc 1 212 3 is_stmt 1 view .LVU77
213:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
214:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
274 .loc 1 214 3 view .LVU78
275 .loc 1 214 11 is_stmt 0 view .LVU79
276 0002 4123 movs r3, #65
277 0004 C35C ldrb r3, [r0, r3]
278 .loc 1 214 6 view .LVU80
279 0006 202B cmp r3, #32
280 0008 1DD1 bne .L15
215:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
216:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Locked */
217:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
281 .loc 1 217 5 is_stmt 1 view .LVU81
282 .loc 1 217 5 view .LVU82
283 000a 2033 adds r3, r3, #32
284 000c C35C ldrb r3, [r0, r3]
285 000e 012B cmp r3, #1
286 0010 1BD0 beq .L16
287 .loc 1 217 5 discriminator 2 view .LVU83
288 0012 4021 movs r1, #64
289 0014 0122 movs r2, #1
290 0016 4254 strb r2, [r0, r1]
291 .loc 1 217 5 discriminator 2 view .LVU84
218:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
219:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
ARM GAS /tmp/ccOhaUnK.s page 10
292 .loc 1 219 5 view .LVU85
293 .loc 1 219 17 is_stmt 0 view .LVU86
294 0018 4124 movs r4, #65
295 001a 2423 movs r3, #36
296 001c 0355 strb r3, [r0, r4]
220:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
221:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
222:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
297 .loc 1 222 5 is_stmt 1 view .LVU87
298 001e 0568 ldr r5, [r0]
299 0020 2B68 ldr r3, [r5]
300 0022 9343 bics r3, r2
301 0024 2B60 str r3, [r5]
223:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
224:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Enable wakeup from stop mode */
225:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->Instance->CR1 |= I2C_CR1_WUPEN;
302 .loc 1 225 5 view .LVU88
303 .loc 1 225 9 is_stmt 0 view .LVU89
304 0026 0568 ldr r5, [r0]
305 .loc 1 225 19 view .LVU90
306 0028 2E68 ldr r6, [r5]
307 .loc 1 225 25 view .LVU91
308 002a 8023 movs r3, #128
309 002c DB02 lsls r3, r3, #11
310 002e 3343 orrs r3, r6
311 0030 2B60 str r3, [r5]
226:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
227:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
312 .loc 1 227 5 is_stmt 1 view .LVU92
313 0032 0568 ldr r5, [r0]
314 0034 2B68 ldr r3, [r5]
315 0036 1343 orrs r3, r2
316 0038 2B60 str r3, [r5]
228:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
229:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
317 .loc 1 229 5 view .LVU93
318 .loc 1 229 17 is_stmt 0 view .LVU94
319 003a 2023 movs r3, #32
320 003c 0355 strb r3, [r0, r4]
230:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
231:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Unlocked */
232:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
321 .loc 1 232 5 is_stmt 1 view .LVU95
322 .loc 1 232 5 view .LVU96
323 003e 0023 movs r3, #0
324 0040 4354 strb r3, [r0, r1]
325 .loc 1 232 5 view .LVU97
233:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
234:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_OK;
326 .loc 1 234 5 view .LVU98
327 .loc 1 234 12 is_stmt 0 view .LVU99
328 0042 0020 movs r0, #0
329 .LVL20:
330 .L14:
235:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
236:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** else
237:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
ARM GAS /tmp/ccOhaUnK.s page 11
238:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_BUSY;
239:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
240:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
331 .loc 1 240 1 view .LVU100
332 @ sp needed
333 0044 70BD pop {r4, r5, r6, pc}
334 .LVL21:
335 .L15:
238:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
336 .loc 1 238 12 view .LVU101
337 0046 0220 movs r0, #2
338 .LVL22:
238:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
339 .loc 1 238 12 view .LVU102
340 0048 FCE7 b .L14
341 .LVL23:
342 .L16:
217:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
343 .loc 1 217 5 discriminator 1 view .LVU103
344 004a 0220 movs r0, #2
345 .LVL24:
217:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
346 .loc 1 217 5 discriminator 1 view .LVU104
347 004c FAE7 b .L14
348 .cfi_endproc
349 .LFE42:
351 .section .text.HAL_I2CEx_DisableWakeUp,"ax",%progbits
352 .align 1
353 .global HAL_I2CEx_DisableWakeUp
354 .syntax unified
355 .code 16
356 .thumb_func
358 HAL_I2CEx_DisableWakeUp:
359 .LVL25:
360 .LFB43:
241:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
242:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
243:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Disable I2C wakeup from Stop mode(s).
244:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param hi2c Pointer to a I2C_HandleTypeDef structure that contains
245:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * the configuration information for the specified I2Cx peripheral.
246:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @retval HAL status
247:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
248:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** HAL_StatusTypeDef HAL_I2CEx_DisableWakeUp(I2C_HandleTypeDef *hi2c)
249:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
361 .loc 1 249 1 is_stmt 1 view -0
362 .cfi_startproc
363 @ args = 0, pretend = 0, frame = 0
364 @ frame_needed = 0, uses_anonymous_args = 0
365 .loc 1 249 1 is_stmt 0 view .LVU106
366 0000 70B5 push {r4, r5, r6, lr}
367 .cfi_def_cfa_offset 16
368 .cfi_offset 4, -16
369 .cfi_offset 5, -12
370 .cfi_offset 6, -8
371 .cfi_offset 14, -4
250:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Check the parameters */
251:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_WAKEUP_FROMSTOP_INSTANCE(hi2c->Instance));
ARM GAS /tmp/ccOhaUnK.s page 12
372 .loc 1 251 3 is_stmt 1 view .LVU107
252:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
253:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** if (hi2c->State == HAL_I2C_STATE_READY)
373 .loc 1 253 3 view .LVU108
374 .loc 1 253 11 is_stmt 0 view .LVU109
375 0002 4123 movs r3, #65
376 0004 C35C ldrb r3, [r0, r3]
377 .loc 1 253 6 view .LVU110
378 0006 202B cmp r3, #32
379 0008 1CD1 bne .L19
254:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
255:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Locked */
256:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_LOCK(hi2c);
380 .loc 1 256 5 is_stmt 1 view .LVU111
381 .loc 1 256 5 view .LVU112
382 000a 2033 adds r3, r3, #32
383 000c C35C ldrb r3, [r0, r3]
384 000e 012B cmp r3, #1
385 0010 1AD0 beq .L20
386 .loc 1 256 5 discriminator 2 view .LVU113
387 0012 4021 movs r1, #64
388 0014 0122 movs r2, #1
389 0016 4254 strb r2, [r0, r1]
390 .loc 1 256 5 discriminator 2 view .LVU114
257:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
258:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_BUSY;
391 .loc 1 258 5 view .LVU115
392 .loc 1 258 17 is_stmt 0 view .LVU116
393 0018 4124 movs r4, #65
394 001a 2423 movs r3, #36
395 001c 0355 strb r3, [r0, r4]
259:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
260:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Disable the selected I2C peripheral */
261:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_DISABLE(hi2c);
396 .loc 1 261 5 is_stmt 1 view .LVU117
397 001e 0568 ldr r5, [r0]
398 0020 2B68 ldr r3, [r5]
399 0022 9343 bics r3, r2
400 0024 2B60 str r3, [r5]
262:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
263:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Enable wakeup from stop mode */
264:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->Instance->CR1 &= ~(I2C_CR1_WUPEN);
401 .loc 1 264 5 view .LVU118
402 .loc 1 264 9 is_stmt 0 view .LVU119
403 0026 0568 ldr r5, [r0]
404 .loc 1 264 19 view .LVU120
405 0028 2B68 ldr r3, [r5]
406 .loc 1 264 25 view .LVU121
407 002a 084E ldr r6, .L21
408 002c 3340 ands r3, r6
409 002e 2B60 str r3, [r5]
265:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
266:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_I2C_ENABLE(hi2c);
410 .loc 1 266 5 is_stmt 1 view .LVU122
411 0030 0568 ldr r5, [r0]
412 0032 2B68 ldr r3, [r5]
413 0034 1343 orrs r3, r2
ARM GAS /tmp/ccOhaUnK.s page 13
414 0036 2B60 str r3, [r5]
267:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
268:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** hi2c->State = HAL_I2C_STATE_READY;
415 .loc 1 268 5 view .LVU123
416 .loc 1 268 17 is_stmt 0 view .LVU124
417 0038 2023 movs r3, #32
418 003a 0355 strb r3, [r0, r4]
269:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
270:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Process Unlocked */
271:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_UNLOCK(hi2c);
419 .loc 1 271 5 is_stmt 1 view .LVU125
420 .loc 1 271 5 view .LVU126
421 003c 0023 movs r3, #0
422 003e 4354 strb r3, [r0, r1]
423 .loc 1 271 5 view .LVU127
272:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
273:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_OK;
424 .loc 1 273 5 view .LVU128
425 .loc 1 273 12 is_stmt 0 view .LVU129
426 0040 0020 movs r0, #0
427 .LVL26:
428 .L18:
274:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
275:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** else
276:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
277:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** return HAL_BUSY;
278:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
279:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
429 .loc 1 279 1 view .LVU130
430 @ sp needed
431 0042 70BD pop {r4, r5, r6, pc}
432 .LVL27:
433 .L19:
277:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
434 .loc 1 277 12 view .LVU131
435 0044 0220 movs r0, #2
436 .LVL28:
277:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
437 .loc 1 277 12 view .LVU132
438 0046 FCE7 b .L18
439 .LVL29:
440 .L20:
256:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
441 .loc 1 256 5 discriminator 1 view .LVU133
442 0048 0220 movs r0, #2
443 .LVL30:
256:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
444 .loc 1 256 5 discriminator 1 view .LVU134
445 004a FAE7 b .L18
446 .L22:
447 .align 2
448 .L21:
449 004c FFFFFBFF .word -262145
450 .cfi_endproc
451 .LFE43:
453 .section .text.HAL_I2CEx_EnableFastModePlus,"ax",%progbits
454 .align 1
ARM GAS /tmp/ccOhaUnK.s page 14
455 .global HAL_I2CEx_EnableFastModePlus
456 .syntax unified
457 .code 16
458 .thumb_func
460 HAL_I2CEx_EnableFastModePlus:
461 .LVL31:
462 .LFB44:
280:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
281:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @}
282:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
283:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** #endif /* I2C_CR1_WUPEN */
284:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
285:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /** @defgroup I2CEx_Exported_Functions_Group3 Fast Mode Plus Functions
286:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Fast Mode Plus Functions
287:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** *
288:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @verbatim
289:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ===============================================================================
290:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ##### Fast Mode Plus Functions #####
291:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** ===============================================================================
292:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** [..] This section provides functions allowing to:
293:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** (+) Configure Fast Mode Plus
294:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
295:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** @endverbatim
296:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @{
297:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
298:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
299:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
300:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Enable the I2C fast mode plus driving capability.
301:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param ConfigFastModePlus Selects the pin.
302:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * This parameter can be one of the @ref I2CEx_FastModePlus values
303:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @note For I2C1, fast mode plus driving capability can be enabled on all selected
304:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * I2C1 pins using I2C_FASTMODEPLUS_I2C1 parameter or independently
305:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * on each one of the following pins PB6, PB7, PB8 and PB9.
306:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability
307:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * can be enabled only by using I2C_FASTMODEPLUS_I2C1 parameter.
308:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @note For all I2C2 pins fast mode plus driving capability can be enabled
309:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C2 parameter.
310:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @retval None
311:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
312:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** void HAL_I2CEx_EnableFastModePlus(uint32_t ConfigFastModePlus)
313:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
463 .loc 1 313 1 is_stmt 1 view -0
464 .cfi_startproc
465 @ args = 0, pretend = 0, frame = 8
466 @ frame_needed = 0, uses_anonymous_args = 0
467 @ link register save eliminated.
468 .loc 1 313 1 is_stmt 0 view .LVU136
469 0000 82B0 sub sp, sp, #8
470 .cfi_def_cfa_offset 8
314:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Check the parameter */
315:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_FASTMODEPLUS(ConfigFastModePlus));
471 .loc 1 315 3 is_stmt 1 view .LVU137
316:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
317:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Enable SYSCFG clock */
318:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_RCC_SYSCFG_CLK_ENABLE();
472 .loc 1 318 3 view .LVU138
473 .LBB2:
ARM GAS /tmp/ccOhaUnK.s page 15
474 .loc 1 318 3 view .LVU139
475 .loc 1 318 3 view .LVU140
476 0002 074A ldr r2, .L24
477 0004 9169 ldr r1, [r2, #24]
478 0006 0123 movs r3, #1
479 0008 1943 orrs r1, r3
480 000a 9161 str r1, [r2, #24]
481 .loc 1 318 3 view .LVU141
482 000c 9269 ldr r2, [r2, #24]
483 000e 1340 ands r3, r2
484 0010 0193 str r3, [sp, #4]
485 .loc 1 318 3 view .LVU142
486 0012 019B ldr r3, [sp, #4]
487 .LBE2:
488 .loc 1 318 3 view .LVU143
319:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
320:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Enable fast mode plus driving capability for selected pin */
321:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** SET_BIT(SYSCFG->CFGR1, (uint32_t)ConfigFastModePlus);
489 .loc 1 321 3 view .LVU144
490 0014 034A ldr r2, .L24+4
491 0016 1368 ldr r3, [r2]
492 0018 0343 orrs r3, r0
493 001a 1360 str r3, [r2]
322:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
494 .loc 1 322 1 is_stmt 0 view .LVU145
495 001c 02B0 add sp, sp, #8
496 @ sp needed
497 001e 7047 bx lr
498 .L25:
499 .align 2
500 .L24:
501 0020 00100240 .word 1073876992
502 0024 00000140 .word 1073807360
503 .cfi_endproc
504 .LFE44:
506 .section .text.HAL_I2CEx_DisableFastModePlus,"ax",%progbits
507 .align 1
508 .global HAL_I2CEx_DisableFastModePlus
509 .syntax unified
510 .code 16
511 .thumb_func
513 HAL_I2CEx_DisableFastModePlus:
514 .LVL32:
515 .LFB45:
323:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
324:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /**
325:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @brief Disable the I2C fast mode plus driving capability.
326:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @param ConfigFastModePlus Selects the pin.
327:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * This parameter can be one of the @ref I2CEx_FastModePlus values
328:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @note For I2C1, fast mode plus driving capability can be disabled on all selected
329:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * I2C1 pins using I2C_FASTMODEPLUS_I2C1 parameter or independently
330:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * on each one of the following pins PB6, PB7, PB8 and PB9.
331:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @note For remaining I2C1 pins (PA14, PA15...) fast mode plus driving capability
332:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * can be disabled only by using I2C_FASTMODEPLUS_I2C1 parameter.
333:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @note For all I2C2 pins fast mode plus driving capability can be disabled
334:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * only by using I2C_FASTMODEPLUS_I2C2 parameter.
335:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** * @retval None
ARM GAS /tmp/ccOhaUnK.s page 16
336:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** */
337:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** void HAL_I2CEx_DisableFastModePlus(uint32_t ConfigFastModePlus)
338:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** {
516 .loc 1 338 1 is_stmt 1 view -0
517 .cfi_startproc
518 @ args = 0, pretend = 0, frame = 8
519 @ frame_needed = 0, uses_anonymous_args = 0
520 @ link register save eliminated.
521 .loc 1 338 1 is_stmt 0 view .LVU147
522 0000 82B0 sub sp, sp, #8
523 .cfi_def_cfa_offset 8
339:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Check the parameter */
340:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** assert_param(IS_I2C_FASTMODEPLUS(ConfigFastModePlus));
524 .loc 1 340 3 is_stmt 1 view .LVU148
341:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
342:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Enable SYSCFG clock */
343:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** __HAL_RCC_SYSCFG_CLK_ENABLE();
525 .loc 1 343 3 view .LVU149
526 .LBB3:
527 .loc 1 343 3 view .LVU150
528 .loc 1 343 3 view .LVU151
529 0002 074A ldr r2, .L27
530 0004 9169 ldr r1, [r2, #24]
531 0006 0123 movs r3, #1
532 0008 1943 orrs r1, r3
533 000a 9161 str r1, [r2, #24]
534 .loc 1 343 3 view .LVU152
535 000c 9269 ldr r2, [r2, #24]
536 000e 1340 ands r3, r2
537 0010 0193 str r3, [sp, #4]
538 .loc 1 343 3 view .LVU153
539 0012 019B ldr r3, [sp, #4]
540 .LBE3:
541 .loc 1 343 3 view .LVU154
344:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c ****
345:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** /* Disable fast mode plus driving capability for selected pin */
346:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** CLEAR_BIT(SYSCFG->CFGR1, (uint32_t)ConfigFastModePlus);
542 .loc 1 346 3 view .LVU155
543 0014 034A ldr r2, .L27+4
544 0016 1368 ldr r3, [r2]
545 0018 8343 bics r3, r0
546 001a 1360 str r3, [r2]
347:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_i2c_ex.c **** }
547 .loc 1 347 1 is_stmt 0 view .LVU156
548 001c 02B0 add sp, sp, #8
549 @ sp needed
550 001e 7047 bx lr
551 .L28:
552 .align 2
553 .L27:
554 0020 00100240 .word 1073876992
555 0024 00000140 .word 1073807360
556 .cfi_endproc
557 .LFE45:
559 .text
560 .Letext0:
561 .file 2 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
ARM GAS /tmp/ccOhaUnK.s page 17
562 .file 3 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
563 .file 4 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h"
564 .file 5 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h"
565 .file 6 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h"
566 .file 7 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h"
ARM GAS /tmp/ccOhaUnK.s page 18
DEFINED SYMBOLS
*ABS*:00000000 stm32f0xx_hal_i2c_ex.c
/tmp/ccOhaUnK.s:19 .text.HAL_I2CEx_ConfigAnalogFilter:00000000 $t
/tmp/ccOhaUnK.s:25 .text.HAL_I2CEx_ConfigAnalogFilter:00000000 HAL_I2CEx_ConfigAnalogFilter
/tmp/ccOhaUnK.s:128 .text.HAL_I2CEx_ConfigAnalogFilter:00000054 $d
/tmp/ccOhaUnK.s:133 .text.HAL_I2CEx_ConfigDigitalFilter:00000000 $t
/tmp/ccOhaUnK.s:139 .text.HAL_I2CEx_ConfigDigitalFilter:00000000 HAL_I2CEx_ConfigDigitalFilter
/tmp/ccOhaUnK.s:248 .text.HAL_I2CEx_ConfigDigitalFilter:00000050 $d
/tmp/ccOhaUnK.s:253 .text.HAL_I2CEx_EnableWakeUp:00000000 $t
/tmp/ccOhaUnK.s:259 .text.HAL_I2CEx_EnableWakeUp:00000000 HAL_I2CEx_EnableWakeUp
/tmp/ccOhaUnK.s:352 .text.HAL_I2CEx_DisableWakeUp:00000000 $t
/tmp/ccOhaUnK.s:358 .text.HAL_I2CEx_DisableWakeUp:00000000 HAL_I2CEx_DisableWakeUp
/tmp/ccOhaUnK.s:449 .text.HAL_I2CEx_DisableWakeUp:0000004c $d
/tmp/ccOhaUnK.s:454 .text.HAL_I2CEx_EnableFastModePlus:00000000 $t
/tmp/ccOhaUnK.s:460 .text.HAL_I2CEx_EnableFastModePlus:00000000 HAL_I2CEx_EnableFastModePlus
/tmp/ccOhaUnK.s:501 .text.HAL_I2CEx_EnableFastModePlus:00000020 $d
/tmp/ccOhaUnK.s:507 .text.HAL_I2CEx_DisableFastModePlus:00000000 $t
/tmp/ccOhaUnK.s:513 .text.HAL_I2CEx_DisableFastModePlus:00000000 HAL_I2CEx_DisableFastModePlus
/tmp/ccOhaUnK.s:554 .text.HAL_I2CEx_DisableFastModePlus:00000020 $d
NO UNDEFINED SYMBOLS

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_msp.o: Core/Src/stm32f0xx_hal_msp.c Core/Inc/main.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Core/Inc/main.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_pwr.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_pwr_ex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

View File

@ -1,724 +0,0 @@
ARM GAS /tmp/cc5Uj3PK.s page 1
1 .cpu cortex-m0
2 .arch armv6s-m
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 1
11 .eabi_attribute 34, 0
12 .eabi_attribute 18, 4
13 .file "stm32f0xx_hal_pwr_ex.c"
14 .text
15 .Ltext0:
16 .cfi_sections .debug_frame
17 .file 1 "Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c"
18 .section .text.HAL_PWR_ConfigPVD,"ax",%progbits
19 .align 1
20 .global HAL_PWR_ConfigPVD
21 .syntax unified
22 .code 16
23 .thumb_func
25 HAL_PWR_ConfigPVD:
26 .LVL0:
27 .LFB40:
1:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
2:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ******************************************************************************
3:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @file stm32f0xx_hal_pwr_ex.c
4:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @author MCD Application Team
5:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Extended PWR HAL module driver.
6:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * This file provides firmware functions to manage the following
7:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * functionalities of the Power Controller (PWR) peripheral:
8:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * + Extended Initialization and de-initialization functions
9:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * + Extended Peripheral Control functions
10:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *
11:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ******************************************************************************
12:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @attention
13:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *
14:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * Copyright (c) 2016 STMicroelectronics.
15:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * All rights reserved.
16:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *
17:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * This software is licensed under terms that can be found in the LICENSE file
18:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * in the root directory of this software component.
19:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
20:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *
21:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ******************************************************************************
22:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
23:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
24:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Includes ------------------------------------------------------------------*/
25:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #include "stm32f0xx_hal.h"
26:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
27:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /** @addtogroup STM32F0xx_HAL_Driver
28:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @{
29:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
30:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
31:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /** @defgroup PWREx PWREx
ARM GAS /tmp/cc5Uj3PK.s page 2
32:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief PWREx HAL module driver
33:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @{
34:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
35:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
36:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #ifdef HAL_PWR_MODULE_ENABLED
37:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
38:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Private typedef -----------------------------------------------------------*/
39:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Private define ------------------------------------------------------------*/
40:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /** @defgroup PWREx_Private_Constants PWREx Private Constants
41:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @{
42:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
43:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #define PVD_MODE_IT (0x00010000U)
44:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #define PVD_MODE_EVT (0x00020000U)
45:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #define PVD_RISING_EDGE (0x00000001U)
46:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #define PVD_FALLING_EDGE (0x00000002U)
47:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
48:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @}
49:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
50:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
51:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Private macro -------------------------------------------------------------*/
52:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Private variables ---------------------------------------------------------*/
53:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Private function prototypes -----------------------------------------------*/
54:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Exported functions ---------------------------------------------------------*/
55:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
56:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /** @defgroup PWREx_Exported_Functions PWREx Exported Functions
57:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @{
58:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
59:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
60:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /** @defgroup PWREx_Exported_Functions_Group1 Peripheral Extended Control Functions
61:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Extended Peripheral Control functions
62:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *
63:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** @verbatim
64:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
65:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ===============================================================================
66:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ##### Peripheral extended control functions #####
67:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ===============================================================================
68:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
69:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *** PVD configuration ***
70:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** =========================
71:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** [..]
72:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** (+) The PVD is used to monitor the VDD power supply by comparing it to a
73:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** threshold selected by the PVD Level (PLS[2:0] bits in the PWR_CR).
74:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** (+) A PVDO flag is available to indicate if VDD/VDDA is higher or lower
75:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** than the PVD threshold. This event is internally connected to the EXTI
76:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** line16 and can generate an interrupt if enabled. This is done through
77:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** HAL_PWR_ConfigPVD(), HAL_PWR_EnablePVD() functions.
78:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** (+) The PVD is stopped in Standby mode.
79:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** -@- PVD is not available on STM32F030x4/x6/x8
80:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
81:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** *** VDDIO2 Monitor Configuration ***
82:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** ====================================
83:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** [..]
84:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** (+) VDDIO2 monitor is used to monitor the VDDIO2 power supply by comparing it
85:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** to VREFInt Voltage
86:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** (+) This monitor is internally connected to the EXTI line31
87:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** and can generate an interrupt if enabled. This is done through
88:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** HAL_PWREx_EnableVddio2Monitor() function.
ARM GAS /tmp/cc5Uj3PK.s page 3
89:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** -@- VDDIO2 is available on STM32F07x/09x/04x
90:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
91:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** @endverbatim
92:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @{
93:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
94:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
95:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #if defined (STM32F031x6) || defined (STM32F051x8) || \
96:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** defined (STM32F071xB) || defined (STM32F091xC) || \
97:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** defined (STM32F042x6) || defined (STM32F072xB)
98:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
99:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Configures the voltage threshold detected by the Power Voltage Detector(PVD).
100:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @param sConfigPVD pointer to an PWR_PVDTypeDef structure that contains the configuration
101:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * information for the PVD.
102:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @note Refer to the electrical characteristics of your device datasheet for
103:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * more details about the voltage threshold corresponding to each
104:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * detection level.
105:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
106:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
107:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWR_ConfigPVD(PWR_PVDTypeDef *sConfigPVD)
108:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
28 .loc 1 108 1 view -0
29 .cfi_startproc
30 @ args = 0, pretend = 0, frame = 0
31 @ frame_needed = 0, uses_anonymous_args = 0
32 @ link register save eliminated.
109:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Check the parameters */
110:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** assert_param(IS_PWR_PVD_LEVEL(sConfigPVD->PVDLevel));
33 .loc 1 110 3 view .LVU1
111:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** assert_param(IS_PWR_PVD_MODE(sConfigPVD->Mode));
34 .loc 1 111 3 view .LVU2
112:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
113:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Set PLS[7:5] bits according to PVDLevel value */
114:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** MODIFY_REG(PWR->CR, PWR_CR_PLS, sConfigPVD->PVDLevel);
35 .loc 1 114 3 view .LVU3
36 0000 1C4A ldr r2, .L10
37 0002 1368 ldr r3, [r2]
38 0004 E021 movs r1, #224
39 0006 8B43 bics r3, r1
40 0008 0168 ldr r1, [r0]
41 000a 0B43 orrs r3, r1
42 000c 1360 str r3, [r2]
115:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
116:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Clear any previous config. Keep it clear if no event or IT mode is selected */
117:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_DISABLE_EVENT();
43 .loc 1 117 3 view .LVU4
44 000e 1A4B ldr r3, .L10+4
45 0010 5968 ldr r1, [r3, #4]
46 0012 1A4A ldr r2, .L10+8
47 0014 1140 ands r1, r2
48 0016 5960 str r1, [r3, #4]
118:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_DISABLE_IT();
49 .loc 1 118 3 view .LVU5
50 0018 1968 ldr r1, [r3]
51 001a 1140 ands r1, r2
52 001c 1960 str r1, [r3]
119:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_DISABLE_RISING_EDGE();__HAL_PWR_PVD_EXTI_DISABLE_FALLING_EDGE();
53 .loc 1 119 3 view .LVU6
ARM GAS /tmp/cc5Uj3PK.s page 4
54 001e 9968 ldr r1, [r3, #8]
55 0020 1140 ands r1, r2
56 0022 9960 str r1, [r3, #8]
57 .loc 1 119 44 view .LVU7
58 0024 D968 ldr r1, [r3, #12]
59 0026 0A40 ands r2, r1
60 0028 DA60 str r2, [r3, #12]
120:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
121:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Configure interrupt mode */
122:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_MODE_IT) == PVD_MODE_IT)
61 .loc 1 122 3 view .LVU8
62 .loc 1 122 17 is_stmt 0 view .LVU9
63 002a 4368 ldr r3, [r0, #4]
64 .loc 1 122 5 view .LVU10
65 002c DB03 lsls r3, r3, #15
66 002e 05D5 bpl .L2
123:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
124:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_IT();
67 .loc 1 124 5 is_stmt 1 view .LVU11
68 0030 114A ldr r2, .L10+4
69 0032 1168 ldr r1, [r2]
70 0034 8023 movs r3, #128
71 0036 5B02 lsls r3, r3, #9
72 0038 0B43 orrs r3, r1
73 003a 1360 str r3, [r2]
74 .L2:
125:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
126:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
127:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Configure event mode */
128:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_MODE_EVT) == PVD_MODE_EVT)
75 .loc 1 128 3 view .LVU12
76 .loc 1 128 17 is_stmt 0 view .LVU13
77 003c 4368 ldr r3, [r0, #4]
78 .loc 1 128 5 view .LVU14
79 003e 9B03 lsls r3, r3, #14
80 0040 05D5 bpl .L3
129:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
130:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_EVENT();
81 .loc 1 130 5 is_stmt 1 view .LVU15
82 0042 0D4A ldr r2, .L10+4
83 0044 5168 ldr r1, [r2, #4]
84 0046 8023 movs r3, #128
85 0048 5B02 lsls r3, r3, #9
86 004a 0B43 orrs r3, r1
87 004c 5360 str r3, [r2, #4]
88 .L3:
131:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
132:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
133:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Configure the edge */
134:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE)
89 .loc 1 134 3 view .LVU16
90 .loc 1 134 17 is_stmt 0 view .LVU17
91 004e 4368 ldr r3, [r0, #4]
92 .loc 1 134 5 view .LVU18
93 0050 DB07 lsls r3, r3, #31
94 0052 05D5 bpl .L4
135:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
ARM GAS /tmp/cc5Uj3PK.s page 5
136:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_RISING_EDGE();
95 .loc 1 136 5 is_stmt 1 view .LVU19
96 0054 084A ldr r2, .L10+4
97 0056 9168 ldr r1, [r2, #8]
98 0058 8023 movs r3, #128
99 005a 5B02 lsls r3, r3, #9
100 005c 0B43 orrs r3, r1
101 005e 9360 str r3, [r2, #8]
102 .L4:
137:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
138:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
139:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** if((sConfigPVD->Mode & PVD_FALLING_EDGE) == PVD_FALLING_EDGE)
103 .loc 1 139 3 view .LVU20
104 .loc 1 139 17 is_stmt 0 view .LVU21
105 0060 4368 ldr r3, [r0, #4]
106 .loc 1 139 5 view .LVU22
107 0062 9B07 lsls r3, r3, #30
108 0064 05D5 bpl .L1
140:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
141:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_ENABLE_FALLING_EDGE();
109 .loc 1 141 5 is_stmt 1 view .LVU23
110 0066 044A ldr r2, .L10+4
111 0068 D168 ldr r1, [r2, #12]
112 006a 8023 movs r3, #128
113 006c 5B02 lsls r3, r3, #9
114 006e 0B43 orrs r3, r1
115 0070 D360 str r3, [r2, #12]
116 .L1:
142:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
143:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
117 .loc 1 143 1 is_stmt 0 view .LVU24
118 @ sp needed
119 0072 7047 bx lr
120 .L11:
121 .align 2
122 .L10:
123 0074 00700040 .word 1073770496
124 0078 00040140 .word 1073808384
125 007c FFFFFEFF .word -65537
126 .cfi_endproc
127 .LFE40:
129 .section .text.HAL_PWR_EnablePVD,"ax",%progbits
130 .align 1
131 .global HAL_PWR_EnablePVD
132 .syntax unified
133 .code 16
134 .thumb_func
136 HAL_PWR_EnablePVD:
137 .LFB41:
144:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
145:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
146:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Enables the Power Voltage Detector(PVD).
147:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
148:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
149:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWR_EnablePVD(void)
150:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
138 .loc 1 150 1 is_stmt 1 view -0
ARM GAS /tmp/cc5Uj3PK.s page 6
139 .cfi_startproc
140 @ args = 0, pretend = 0, frame = 0
141 @ frame_needed = 0, uses_anonymous_args = 0
142 @ link register save eliminated.
151:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** PWR->CR |= (uint32_t)PWR_CR_PVDE;
143 .loc 1 151 3 view .LVU26
144 .loc 1 151 6 is_stmt 0 view .LVU27
145 0000 024A ldr r2, .L13
146 0002 1368 ldr r3, [r2]
147 .loc 1 151 11 view .LVU28
148 0004 1021 movs r1, #16
149 0006 0B43 orrs r3, r1
150 0008 1360 str r3, [r2]
152:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
151 .loc 1 152 1 view .LVU29
152 @ sp needed
153 000a 7047 bx lr
154 .L14:
155 .align 2
156 .L13:
157 000c 00700040 .word 1073770496
158 .cfi_endproc
159 .LFE41:
161 .section .text.HAL_PWR_DisablePVD,"ax",%progbits
162 .align 1
163 .global HAL_PWR_DisablePVD
164 .syntax unified
165 .code 16
166 .thumb_func
168 HAL_PWR_DisablePVD:
169 .LFB42:
153:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
154:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
155:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Disables the Power Voltage Detector(PVD).
156:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
157:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
158:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWR_DisablePVD(void)
159:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
170 .loc 1 159 1 is_stmt 1 view -0
171 .cfi_startproc
172 @ args = 0, pretend = 0, frame = 0
173 @ frame_needed = 0, uses_anonymous_args = 0
174 @ link register save eliminated.
160:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** PWR->CR &= ~((uint32_t)PWR_CR_PVDE);
175 .loc 1 160 3 view .LVU31
176 .loc 1 160 6 is_stmt 0 view .LVU32
177 0000 024A ldr r2, .L16
178 0002 1368 ldr r3, [r2]
179 .loc 1 160 11 view .LVU33
180 0004 1021 movs r1, #16
181 0006 8B43 bics r3, r1
182 0008 1360 str r3, [r2]
161:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
183 .loc 1 161 1 view .LVU34
184 @ sp needed
185 000a 7047 bx lr
186 .L17:
ARM GAS /tmp/cc5Uj3PK.s page 7
187 .align 2
188 .L16:
189 000c 00700040 .word 1073770496
190 .cfi_endproc
191 .LFE42:
193 .section .text.HAL_PWR_PVDCallback,"ax",%progbits
194 .align 1
195 .weak HAL_PWR_PVDCallback
196 .syntax unified
197 .code 16
198 .thumb_func
200 HAL_PWR_PVDCallback:
201 .LFB44:
162:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
163:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
164:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief This function handles the PWR PVD interrupt request.
165:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @note This API should be called under the PVD_IRQHandler() or PVD_VDDIO2_IRQHandler().
166:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
167:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
168:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWR_PVD_IRQHandler(void)
169:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
170:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Check PWR exti flag */
171:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** if(__HAL_PWR_PVD_EXTI_GET_FLAG() != RESET)
172:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
173:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* PWR PVD interrupt user callback */
174:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** HAL_PWR_PVDCallback();
175:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
176:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Clear PWR Exti pending bit */
177:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_PVD_EXTI_CLEAR_FLAG();
178:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
179:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
180:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
181:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
182:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief PWR PVD interrupt callback
183:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
184:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
185:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __weak void HAL_PWR_PVDCallback(void)
186:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
202 .loc 1 186 1 is_stmt 1 view -0
203 .cfi_startproc
204 @ args = 0, pretend = 0, frame = 0
205 @ frame_needed = 0, uses_anonymous_args = 0
206 @ link register save eliminated.
187:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* NOTE : This function Should not be modified, when the callback is needed,
188:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** the HAL_PWR_PVDCallback could be implemented in the user file
189:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
190:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
207 .loc 1 190 1 view .LVU36
208 @ sp needed
209 0000 7047 bx lr
210 .cfi_endproc
211 .LFE44:
213 .section .text.HAL_PWR_PVD_IRQHandler,"ax",%progbits
214 .align 1
215 .global HAL_PWR_PVD_IRQHandler
216 .syntax unified
217 .code 16
ARM GAS /tmp/cc5Uj3PK.s page 8
218 .thumb_func
220 HAL_PWR_PVD_IRQHandler:
221 .LFB43:
169:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Check PWR exti flag */
222 .loc 1 169 1 view -0
223 .cfi_startproc
224 @ args = 0, pretend = 0, frame = 0
225 @ frame_needed = 0, uses_anonymous_args = 0
226 0000 10B5 push {r4, lr}
227 .cfi_def_cfa_offset 8
228 .cfi_offset 4, -8
229 .cfi_offset 14, -4
171:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
230 .loc 1 171 3 view .LVU38
171:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
231 .loc 1 171 6 is_stmt 0 view .LVU39
232 0002 064B ldr r3, .L23
233 0004 5B69 ldr r3, [r3, #20]
171:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
234 .loc 1 171 5 view .LVU40
235 0006 DB03 lsls r3, r3, #15
236 0008 00D4 bmi .L22
237 .L19:
179:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
238 .loc 1 179 1 view .LVU41
239 @ sp needed
240 000a 10BD pop {r4, pc}
241 .L22:
174:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
242 .loc 1 174 5 is_stmt 1 view .LVU42
243 000c FFF7FEFF bl HAL_PWR_PVDCallback
244 .LVL1:
177:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
245 .loc 1 177 5 view .LVU43
246 0010 024B ldr r3, .L23
247 0012 8022 movs r2, #128
248 0014 5202 lsls r2, r2, #9
249 0016 5A61 str r2, [r3, #20]
179:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
250 .loc 1 179 1 is_stmt 0 view .LVU44
251 0018 F7E7 b .L19
252 .L24:
253 001a C046 .align 2
254 .L23:
255 001c 00040140 .word 1073808384
256 .cfi_endproc
257 .LFE43:
259 .section .text.HAL_PWREx_EnableVddio2Monitor,"ax",%progbits
260 .align 1
261 .global HAL_PWREx_EnableVddio2Monitor
262 .syntax unified
263 .code 16
264 .thumb_func
266 HAL_PWREx_EnableVddio2Monitor:
267 .LFB45:
191:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
192:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #endif /* defined (STM32F031x6) || defined (STM32F051x8) || */
ARM GAS /tmp/cc5Uj3PK.s page 9
193:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* defined (STM32F071xB) || defined (STM32F091xC) || */
194:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* defined (STM32F042x6) || defined (STM32F072xB) */
195:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
196:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** #if defined (STM32F042x6) || defined (STM32F048xx) || \
197:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** defined (STM32F071xB) || defined (STM32F072xB) || defined (STM32F078xx) || \
198:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** defined (STM32F091xC) || defined (STM32F098xx)
199:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
200:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Enable VDDIO2 monitor: enable Exti 31 and falling edge detection.
201:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @note If Exti 31 is enable correlty and VDDIO2 voltage goes below Vrefint,
202:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** an interrupt is generated Irq line 1.
203:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** NVIS has to be enable by user.
204:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
205:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
206:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWREx_EnableVddio2Monitor(void)
207:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
268 .loc 1 207 1 is_stmt 1 view -0
269 .cfi_startproc
270 @ args = 0, pretend = 0, frame = 0
271 @ frame_needed = 0, uses_anonymous_args = 0
272 @ link register save eliminated.
208:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_VDDIO2_EXTI_ENABLE_IT();
273 .loc 1 208 3 view .LVU46
274 0000 044B ldr r3, .L26
275 0002 1968 ldr r1, [r3]
276 0004 8022 movs r2, #128
277 0006 1206 lsls r2, r2, #24
278 0008 1143 orrs r1, r2
279 000a 1960 str r1, [r3]
209:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_VDDIO2_EXTI_ENABLE_FALLING_EDGE();
280 .loc 1 209 3 view .LVU47
281 000c D968 ldr r1, [r3, #12]
282 000e 0A43 orrs r2, r1
283 0010 DA60 str r2, [r3, #12]
210:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
284 .loc 1 210 1 is_stmt 0 view .LVU48
285 @ sp needed
286 0012 7047 bx lr
287 .L27:
288 .align 2
289 .L26:
290 0014 00040140 .word 1073808384
291 .cfi_endproc
292 .LFE45:
294 .section .text.HAL_PWREx_DisableVddio2Monitor,"ax",%progbits
295 .align 1
296 .global HAL_PWREx_DisableVddio2Monitor
297 .syntax unified
298 .code 16
299 .thumb_func
301 HAL_PWREx_DisableVddio2Monitor:
302 .LFB46:
211:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
212:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
213:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief Disable the Vddio2 Monitor.
214:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
215:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
216:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWREx_DisableVddio2Monitor(void)
ARM GAS /tmp/cc5Uj3PK.s page 10
217:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
303 .loc 1 217 1 is_stmt 1 view -0
304 .cfi_startproc
305 @ args = 0, pretend = 0, frame = 0
306 @ frame_needed = 0, uses_anonymous_args = 0
307 @ link register save eliminated.
218:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_VDDIO2_EXTI_DISABLE_IT();
308 .loc 1 218 3 view .LVU50
309 0000 064B ldr r3, .L29
310 0002 1A68 ldr r2, [r3]
311 0004 5200 lsls r2, r2, #1
312 0006 5208 lsrs r2, r2, #1
313 0008 1A60 str r2, [r3]
219:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_VDDIO2_EXTI_DISABLE_FALLING_EDGE();
314 .loc 1 219 3 view .LVU51
315 .loc 1 219 3 view .LVU52
316 000a DA68 ldr r2, [r3, #12]
317 000c 5200 lsls r2, r2, #1
318 000e 5208 lsrs r2, r2, #1
319 0010 DA60 str r2, [r3, #12]
320 .loc 1 219 3 view .LVU53
321 0012 9A68 ldr r2, [r3, #8]
322 0014 5200 lsls r2, r2, #1
323 0016 5208 lsrs r2, r2, #1
324 0018 9A60 str r2, [r3, #8]
325 .loc 1 219 3 view .LVU54
220:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
221:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
326 .loc 1 221 1 is_stmt 0 view .LVU55
327 @ sp needed
328 001a 7047 bx lr
329 .L30:
330 .align 2
331 .L29:
332 001c 00040140 .word 1073808384
333 .cfi_endproc
334 .LFE46:
336 .section .text.HAL_PWREx_Vddio2MonitorCallback,"ax",%progbits
337 .align 1
338 .weak HAL_PWREx_Vddio2MonitorCallback
339 .syntax unified
340 .code 16
341 .thumb_func
343 HAL_PWREx_Vddio2MonitorCallback:
344 .LFB48:
222:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
223:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
224:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief This function handles the PWR Vddio2 monitor interrupt request.
225:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @note This API should be called under the VDDIO2_IRQHandler() PVD_VDDIO2_IRQHandler().
226:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
227:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
228:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** void HAL_PWREx_Vddio2Monitor_IRQHandler(void)
229:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
230:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Check PWR exti flag */
231:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** if(__HAL_PWR_VDDIO2_EXTI_GET_FLAG() != RESET)
232:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
233:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* PWR Vddio2 monitor interrupt user callback */
ARM GAS /tmp/cc5Uj3PK.s page 11
234:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** HAL_PWREx_Vddio2MonitorCallback();
235:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
236:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Clear PWR Exti pending bit */
237:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __HAL_PWR_VDDIO2_EXTI_CLEAR_FLAG();
238:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
239:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
240:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
241:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /**
242:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @brief PWR Vddio2 Monitor interrupt callback
243:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** * @retval None
244:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
245:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** __weak void HAL_PWREx_Vddio2MonitorCallback(void)
246:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
345 .loc 1 246 1 is_stmt 1 view -0
346 .cfi_startproc
347 @ args = 0, pretend = 0, frame = 0
348 @ frame_needed = 0, uses_anonymous_args = 0
349 @ link register save eliminated.
247:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* NOTE : This function Should not be modified, when the callback is needed,
248:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** the HAL_PWREx_Vddio2MonitorCallback could be implemented in the user file
249:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** */
250:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
350 .loc 1 250 1 view .LVU57
351 @ sp needed
352 0000 7047 bx lr
353 .cfi_endproc
354 .LFE48:
356 .section .text.HAL_PWREx_Vddio2Monitor_IRQHandler,"ax",%progbits
357 .align 1
358 .global HAL_PWREx_Vddio2Monitor_IRQHandler
359 .syntax unified
360 .code 16
361 .thumb_func
363 HAL_PWREx_Vddio2Monitor_IRQHandler:
364 .LFB47:
229:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** /* Check PWR exti flag */
365 .loc 1 229 1 view -0
366 .cfi_startproc
367 @ args = 0, pretend = 0, frame = 0
368 @ frame_needed = 0, uses_anonymous_args = 0
369 0000 10B5 push {r4, lr}
370 .cfi_def_cfa_offset 8
371 .cfi_offset 4, -8
372 .cfi_offset 14, -4
231:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
373 .loc 1 231 3 view .LVU59
231:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
374 .loc 1 231 6 is_stmt 0 view .LVU60
375 0002 064B ldr r3, .L35
376 0004 5B69 ldr r3, [r3, #20]
231:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** {
377 .loc 1 231 5 view .LVU61
378 0006 002B cmp r3, #0
379 0008 00DB blt .L34
380 .L32:
239:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
381 .loc 1 239 1 view .LVU62
ARM GAS /tmp/cc5Uj3PK.s page 12
382 @ sp needed
383 000a 10BD pop {r4, pc}
384 .L34:
234:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
385 .loc 1 234 5 is_stmt 1 view .LVU63
386 000c FFF7FEFF bl HAL_PWREx_Vddio2MonitorCallback
387 .LVL2:
237:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c **** }
388 .loc 1 237 5 view .LVU64
389 0010 024B ldr r3, .L35
390 0012 8022 movs r2, #128
391 0014 1206 lsls r2, r2, #24
392 0016 5A61 str r2, [r3, #20]
239:Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_pwr_ex.c ****
393 .loc 1 239 1 is_stmt 0 view .LVU65
394 0018 F7E7 b .L32
395 .L36:
396 001a C046 .align 2
397 .L35:
398 001c 00040140 .word 1073808384
399 .cfi_endproc
400 .LFE47:
402 .text
403 .Letext0:
404 .file 2 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
405 .file 3 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
406 .file 4 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h"
407 .file 5 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h"
408 .file 6 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h"
ARM GAS /tmp/cc5Uj3PK.s page 13
DEFINED SYMBOLS
*ABS*:00000000 stm32f0xx_hal_pwr_ex.c
/tmp/cc5Uj3PK.s:19 .text.HAL_PWR_ConfigPVD:00000000 $t
/tmp/cc5Uj3PK.s:25 .text.HAL_PWR_ConfigPVD:00000000 HAL_PWR_ConfigPVD
/tmp/cc5Uj3PK.s:123 .text.HAL_PWR_ConfigPVD:00000074 $d
/tmp/cc5Uj3PK.s:130 .text.HAL_PWR_EnablePVD:00000000 $t
/tmp/cc5Uj3PK.s:136 .text.HAL_PWR_EnablePVD:00000000 HAL_PWR_EnablePVD
/tmp/cc5Uj3PK.s:157 .text.HAL_PWR_EnablePVD:0000000c $d
/tmp/cc5Uj3PK.s:162 .text.HAL_PWR_DisablePVD:00000000 $t
/tmp/cc5Uj3PK.s:168 .text.HAL_PWR_DisablePVD:00000000 HAL_PWR_DisablePVD
/tmp/cc5Uj3PK.s:189 .text.HAL_PWR_DisablePVD:0000000c $d
/tmp/cc5Uj3PK.s:194 .text.HAL_PWR_PVDCallback:00000000 $t
/tmp/cc5Uj3PK.s:200 .text.HAL_PWR_PVDCallback:00000000 HAL_PWR_PVDCallback
/tmp/cc5Uj3PK.s:214 .text.HAL_PWR_PVD_IRQHandler:00000000 $t
/tmp/cc5Uj3PK.s:220 .text.HAL_PWR_PVD_IRQHandler:00000000 HAL_PWR_PVD_IRQHandler
/tmp/cc5Uj3PK.s:255 .text.HAL_PWR_PVD_IRQHandler:0000001c $d
/tmp/cc5Uj3PK.s:260 .text.HAL_PWREx_EnableVddio2Monitor:00000000 $t
/tmp/cc5Uj3PK.s:266 .text.HAL_PWREx_EnableVddio2Monitor:00000000 HAL_PWREx_EnableVddio2Monitor
/tmp/cc5Uj3PK.s:290 .text.HAL_PWREx_EnableVddio2Monitor:00000014 $d
/tmp/cc5Uj3PK.s:295 .text.HAL_PWREx_DisableVddio2Monitor:00000000 $t
/tmp/cc5Uj3PK.s:301 .text.HAL_PWREx_DisableVddio2Monitor:00000000 HAL_PWREx_DisableVddio2Monitor
/tmp/cc5Uj3PK.s:332 .text.HAL_PWREx_DisableVddio2Monitor:0000001c $d
/tmp/cc5Uj3PK.s:337 .text.HAL_PWREx_Vddio2MonitorCallback:00000000 $t
/tmp/cc5Uj3PK.s:343 .text.HAL_PWREx_Vddio2MonitorCallback:00000000 HAL_PWREx_Vddio2MonitorCallback
/tmp/cc5Uj3PK.s:357 .text.HAL_PWREx_Vddio2Monitor_IRQHandler:00000000 $t
/tmp/cc5Uj3PK.s:363 .text.HAL_PWREx_Vddio2Monitor_IRQHandler:00000000 HAL_PWREx_Vddio2Monitor_IRQHandler
/tmp/cc5Uj3PK.s:398 .text.HAL_PWREx_Vddio2Monitor_IRQHandler:0000001c $d
NO UNDEFINED SYMBOLS

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_rcc.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_rcc_ex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_rcc_ex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_tim.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,60 +0,0 @@
build/stm32f0xx_hal_tim_ex.o: \
Drivers/STM32F0xx_HAL_Driver/Src/stm32f0xx_hal_tim_ex.c \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

File diff suppressed because it is too large Load Diff

View File

@ -1,62 +0,0 @@
build/stm32f0xx_it.o: Core/Src/stm32f0xx_it.c Core/Inc/main.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h \
Core/Inc/stm32f0xx_it.h
Core/Inc/main.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:
Core/Inc/stm32f0xx_it.h:

View File

@ -1,291 +0,0 @@
ARM GAS /tmp/ccDtjY0E.s page 1
1 .cpu cortex-m0
2 .arch armv6s-m
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 1
11 .eabi_attribute 34, 0
12 .eabi_attribute 18, 4
13 .file "stm32f0xx_it.c"
14 .text
15 .Ltext0:
16 .cfi_sections .debug_frame
17 .file 1 "Core/Src/stm32f0xx_it.c"
18 .section .text.NMI_Handler,"ax",%progbits
19 .align 1
20 .global NMI_Handler
21 .syntax unified
22 .code 16
23 .thumb_func
25 NMI_Handler:
26 .LFB40:
1:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN Header */
2:Core/Src/stm32f0xx_it.c **** /**
3:Core/Src/stm32f0xx_it.c **** ******************************************************************************
4:Core/Src/stm32f0xx_it.c **** * @file stm32f0xx_it.c
5:Core/Src/stm32f0xx_it.c **** * @brief Interrupt Service Routines.
6:Core/Src/stm32f0xx_it.c **** ******************************************************************************
7:Core/Src/stm32f0xx_it.c **** * @attention
8:Core/Src/stm32f0xx_it.c **** *
9:Core/Src/stm32f0xx_it.c **** * Copyright (c) 2024 STMicroelectronics.
10:Core/Src/stm32f0xx_it.c **** * All rights reserved.
11:Core/Src/stm32f0xx_it.c **** *
12:Core/Src/stm32f0xx_it.c **** * This software is licensed under terms that can be found in the LICENSE file
13:Core/Src/stm32f0xx_it.c **** * in the root directory of this software component.
14:Core/Src/stm32f0xx_it.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
15:Core/Src/stm32f0xx_it.c **** *
16:Core/Src/stm32f0xx_it.c **** ******************************************************************************
17:Core/Src/stm32f0xx_it.c **** */
18:Core/Src/stm32f0xx_it.c **** /* USER CODE END Header */
19:Core/Src/stm32f0xx_it.c ****
20:Core/Src/stm32f0xx_it.c **** /* Includes ------------------------------------------------------------------*/
21:Core/Src/stm32f0xx_it.c **** #include "main.h"
22:Core/Src/stm32f0xx_it.c **** #include "stm32f0xx_it.h"
23:Core/Src/stm32f0xx_it.c **** /* Private includes ----------------------------------------------------------*/
24:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN Includes */
25:Core/Src/stm32f0xx_it.c **** /* USER CODE END Includes */
26:Core/Src/stm32f0xx_it.c ****
27:Core/Src/stm32f0xx_it.c **** /* Private typedef -----------------------------------------------------------*/
28:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN TD */
29:Core/Src/stm32f0xx_it.c ****
30:Core/Src/stm32f0xx_it.c **** /* USER CODE END TD */
31:Core/Src/stm32f0xx_it.c ****
32:Core/Src/stm32f0xx_it.c **** /* Private define ------------------------------------------------------------*/
ARM GAS /tmp/ccDtjY0E.s page 2
33:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN PD */
34:Core/Src/stm32f0xx_it.c ****
35:Core/Src/stm32f0xx_it.c **** /* USER CODE END PD */
36:Core/Src/stm32f0xx_it.c ****
37:Core/Src/stm32f0xx_it.c **** /* Private macro -------------------------------------------------------------*/
38:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN PM */
39:Core/Src/stm32f0xx_it.c ****
40:Core/Src/stm32f0xx_it.c **** /* USER CODE END PM */
41:Core/Src/stm32f0xx_it.c ****
42:Core/Src/stm32f0xx_it.c **** /* Private variables ---------------------------------------------------------*/
43:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN PV */
44:Core/Src/stm32f0xx_it.c ****
45:Core/Src/stm32f0xx_it.c **** /* USER CODE END PV */
46:Core/Src/stm32f0xx_it.c ****
47:Core/Src/stm32f0xx_it.c **** /* Private function prototypes -----------------------------------------------*/
48:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN PFP */
49:Core/Src/stm32f0xx_it.c ****
50:Core/Src/stm32f0xx_it.c **** /* USER CODE END PFP */
51:Core/Src/stm32f0xx_it.c ****
52:Core/Src/stm32f0xx_it.c **** /* Private user code ---------------------------------------------------------*/
53:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN 0 */
54:Core/Src/stm32f0xx_it.c ****
55:Core/Src/stm32f0xx_it.c **** /* USER CODE END 0 */
56:Core/Src/stm32f0xx_it.c ****
57:Core/Src/stm32f0xx_it.c **** /* External variables --------------------------------------------------------*/
58:Core/Src/stm32f0xx_it.c ****
59:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN EV */
60:Core/Src/stm32f0xx_it.c ****
61:Core/Src/stm32f0xx_it.c **** /* USER CODE END EV */
62:Core/Src/stm32f0xx_it.c ****
63:Core/Src/stm32f0xx_it.c **** /******************************************************************************/
64:Core/Src/stm32f0xx_it.c **** /* Cortex-M0 Processor Interruption and Exception Handlers */
65:Core/Src/stm32f0xx_it.c **** /******************************************************************************/
66:Core/Src/stm32f0xx_it.c **** /**
67:Core/Src/stm32f0xx_it.c **** * @brief This function handles Non maskable interrupt.
68:Core/Src/stm32f0xx_it.c **** */
69:Core/Src/stm32f0xx_it.c **** void NMI_Handler(void)
70:Core/Src/stm32f0xx_it.c **** {
27 .loc 1 70 1 view -0
28 .cfi_startproc
29 @ Volatile: function does not return.
30 @ args = 0, pretend = 0, frame = 0
31 @ frame_needed = 0, uses_anonymous_args = 0
32 @ link register save eliminated.
33 .L2:
71:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN NonMaskableInt_IRQn 0 */
72:Core/Src/stm32f0xx_it.c ****
73:Core/Src/stm32f0xx_it.c **** /* USER CODE END NonMaskableInt_IRQn 0 */
74:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN NonMaskableInt_IRQn 1 */
75:Core/Src/stm32f0xx_it.c **** while (1)
34 .loc 1 75 3 view .LVU1
76:Core/Src/stm32f0xx_it.c **** {
77:Core/Src/stm32f0xx_it.c **** }
35 .loc 1 77 3 view .LVU2
75:Core/Src/stm32f0xx_it.c **** {
36 .loc 1 75 9 view .LVU3
37 0000 FEE7 b .L2
ARM GAS /tmp/ccDtjY0E.s page 3
38 .cfi_endproc
39 .LFE40:
41 .section .text.HardFault_Handler,"ax",%progbits
42 .align 1
43 .global HardFault_Handler
44 .syntax unified
45 .code 16
46 .thumb_func
48 HardFault_Handler:
49 .LFB41:
78:Core/Src/stm32f0xx_it.c **** /* USER CODE END NonMaskableInt_IRQn 1 */
79:Core/Src/stm32f0xx_it.c **** }
80:Core/Src/stm32f0xx_it.c ****
81:Core/Src/stm32f0xx_it.c **** /**
82:Core/Src/stm32f0xx_it.c **** * @brief This function handles Hard fault interrupt.
83:Core/Src/stm32f0xx_it.c **** */
84:Core/Src/stm32f0xx_it.c **** void HardFault_Handler(void)
85:Core/Src/stm32f0xx_it.c **** {
50 .loc 1 85 1 view -0
51 .cfi_startproc
52 @ Volatile: function does not return.
53 @ args = 0, pretend = 0, frame = 0
54 @ frame_needed = 0, uses_anonymous_args = 0
55 @ link register save eliminated.
56 .L4:
86:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN HardFault_IRQn 0 */
87:Core/Src/stm32f0xx_it.c ****
88:Core/Src/stm32f0xx_it.c **** /* USER CODE END HardFault_IRQn 0 */
89:Core/Src/stm32f0xx_it.c **** while (1)
57 .loc 1 89 3 view .LVU5
90:Core/Src/stm32f0xx_it.c **** {
91:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN W1_HardFault_IRQn 0 */
92:Core/Src/stm32f0xx_it.c **** /* USER CODE END W1_HardFault_IRQn 0 */
93:Core/Src/stm32f0xx_it.c **** }
58 .loc 1 93 3 view .LVU6
89:Core/Src/stm32f0xx_it.c **** {
59 .loc 1 89 9 view .LVU7
60 0000 FEE7 b .L4
61 .cfi_endproc
62 .LFE41:
64 .section .text.SVC_Handler,"ax",%progbits
65 .align 1
66 .global SVC_Handler
67 .syntax unified
68 .code 16
69 .thumb_func
71 SVC_Handler:
72 .LFB42:
94:Core/Src/stm32f0xx_it.c **** }
95:Core/Src/stm32f0xx_it.c ****
96:Core/Src/stm32f0xx_it.c **** /**
97:Core/Src/stm32f0xx_it.c **** * @brief This function handles System service call via SWI instruction.
98:Core/Src/stm32f0xx_it.c **** */
99:Core/Src/stm32f0xx_it.c **** void SVC_Handler(void)
100:Core/Src/stm32f0xx_it.c **** {
73 .loc 1 100 1 view -0
74 .cfi_startproc
ARM GAS /tmp/ccDtjY0E.s page 4
75 @ args = 0, pretend = 0, frame = 0
76 @ frame_needed = 0, uses_anonymous_args = 0
77 @ link register save eliminated.
101:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN SVC_IRQn 0 */
102:Core/Src/stm32f0xx_it.c ****
103:Core/Src/stm32f0xx_it.c **** /* USER CODE END SVC_IRQn 0 */
104:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN SVC_IRQn 1 */
105:Core/Src/stm32f0xx_it.c ****
106:Core/Src/stm32f0xx_it.c **** /* USER CODE END SVC_IRQn 1 */
107:Core/Src/stm32f0xx_it.c **** }
78 .loc 1 107 1 view .LVU9
79 @ sp needed
80 0000 7047 bx lr
81 .cfi_endproc
82 .LFE42:
84 .section .text.PendSV_Handler,"ax",%progbits
85 .align 1
86 .global PendSV_Handler
87 .syntax unified
88 .code 16
89 .thumb_func
91 PendSV_Handler:
92 .LFB43:
108:Core/Src/stm32f0xx_it.c ****
109:Core/Src/stm32f0xx_it.c **** /**
110:Core/Src/stm32f0xx_it.c **** * @brief This function handles Pendable request for system service.
111:Core/Src/stm32f0xx_it.c **** */
112:Core/Src/stm32f0xx_it.c **** void PendSV_Handler(void)
113:Core/Src/stm32f0xx_it.c **** {
93 .loc 1 113 1 view -0
94 .cfi_startproc
95 @ args = 0, pretend = 0, frame = 0
96 @ frame_needed = 0, uses_anonymous_args = 0
97 @ link register save eliminated.
114:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN PendSV_IRQn 0 */
115:Core/Src/stm32f0xx_it.c ****
116:Core/Src/stm32f0xx_it.c **** /* USER CODE END PendSV_IRQn 0 */
117:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN PendSV_IRQn 1 */
118:Core/Src/stm32f0xx_it.c ****
119:Core/Src/stm32f0xx_it.c **** /* USER CODE END PendSV_IRQn 1 */
120:Core/Src/stm32f0xx_it.c **** }
98 .loc 1 120 1 view .LVU11
99 @ sp needed
100 0000 7047 bx lr
101 .cfi_endproc
102 .LFE43:
104 .section .text.SysTick_Handler,"ax",%progbits
105 .align 1
106 .global SysTick_Handler
107 .syntax unified
108 .code 16
109 .thumb_func
111 SysTick_Handler:
112 .LFB44:
121:Core/Src/stm32f0xx_it.c ****
122:Core/Src/stm32f0xx_it.c **** /**
123:Core/Src/stm32f0xx_it.c **** * @brief This function handles System tick timer.
ARM GAS /tmp/ccDtjY0E.s page 5
124:Core/Src/stm32f0xx_it.c **** */
125:Core/Src/stm32f0xx_it.c **** void SysTick_Handler(void)
126:Core/Src/stm32f0xx_it.c **** {
113 .loc 1 126 1 view -0
114 .cfi_startproc
115 @ args = 0, pretend = 0, frame = 0
116 @ frame_needed = 0, uses_anonymous_args = 0
117 0000 10B5 push {r4, lr}
118 .cfi_def_cfa_offset 8
119 .cfi_offset 4, -8
120 .cfi_offset 14, -4
127:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN SysTick_IRQn 0 */
128:Core/Src/stm32f0xx_it.c ****
129:Core/Src/stm32f0xx_it.c **** /* USER CODE END SysTick_IRQn 0 */
130:Core/Src/stm32f0xx_it.c **** HAL_IncTick();
121 .loc 1 130 3 view .LVU13
122 0002 FFF7FEFF bl HAL_IncTick
123 .LVL0:
131:Core/Src/stm32f0xx_it.c **** /* USER CODE BEGIN SysTick_IRQn 1 */
132:Core/Src/stm32f0xx_it.c ****
133:Core/Src/stm32f0xx_it.c **** /* USER CODE END SysTick_IRQn 1 */
134:Core/Src/stm32f0xx_it.c **** }
124 .loc 1 134 1 is_stmt 0 view .LVU14
125 @ sp needed
126 0006 10BD pop {r4, pc}
127 .cfi_endproc
128 .LFE44:
130 .text
131 .Letext0:
132 .file 2 "Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h"
ARM GAS /tmp/ccDtjY0E.s page 6
DEFINED SYMBOLS
*ABS*:00000000 stm32f0xx_it.c
/tmp/ccDtjY0E.s:19 .text.NMI_Handler:00000000 $t
/tmp/ccDtjY0E.s:25 .text.NMI_Handler:00000000 NMI_Handler
/tmp/ccDtjY0E.s:42 .text.HardFault_Handler:00000000 $t
/tmp/ccDtjY0E.s:48 .text.HardFault_Handler:00000000 HardFault_Handler
/tmp/ccDtjY0E.s:65 .text.SVC_Handler:00000000 $t
/tmp/ccDtjY0E.s:71 .text.SVC_Handler:00000000 SVC_Handler
/tmp/ccDtjY0E.s:85 .text.PendSV_Handler:00000000 $t
/tmp/ccDtjY0E.s:91 .text.PendSV_Handler:00000000 PendSV_Handler
/tmp/ccDtjY0E.s:105 .text.SysTick_Handler:00000000 $t
/tmp/ccDtjY0E.s:111 .text.SysTick_Handler:00000000 SysTick_Handler
UNDEFINED SYMBOLS
HAL_IncTick

Binary file not shown.

View File

@ -1,59 +0,0 @@
build/system_stm32f0xx.o: Core/Src/system_stm32f0xx.c \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h \
Drivers/CMSIS/Include/core_cm0.h Drivers/CMSIS/Include/cmsis_version.h \
Drivers/CMSIS/Include/cmsis_compiler.h Drivers/CMSIS/Include/cmsis_gcc.h \
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h \
Core/Inc/stm32f0xx_hal_conf.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h \
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h \
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h:
Drivers/CMSIS/Include/core_cm0.h:
Drivers/CMSIS/Include/cmsis_version.h:
Drivers/CMSIS/Include/cmsis_compiler.h:
Drivers/CMSIS/Include/cmsis_gcc.h:
Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal.h:
Core/Inc/stm32f0xx_hal_conf.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_def.h:
Drivers/STM32F0xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_rcc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_gpio_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_exti.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_dma_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_cortex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_adc_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_can.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_flash_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_i2c_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_pwr_ex.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim.h:
Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_hal_tim_ex.h:

View File

@ -1,571 +0,0 @@
ARM GAS /tmp/ccDxas5Z.s page 1
1 .cpu cortex-m0
2 .arch armv6s-m
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 1
11 .eabi_attribute 34, 0
12 .eabi_attribute 18, 4
13 .file "system_stm32f0xx.c"
14 .text
15 .Ltext0:
16 .cfi_sections .debug_frame
17 .file 1 "Core/Src/system_stm32f0xx.c"
18 .section .text.SystemInit,"ax",%progbits
19 .align 1
20 .global SystemInit
21 .syntax unified
22 .code 16
23 .thumb_func
25 SystemInit:
26 .LFB40:
1:Core/Src/system_stm32f0xx.c **** /**
2:Core/Src/system_stm32f0xx.c **** ******************************************************************************
3:Core/Src/system_stm32f0xx.c **** * @file system_stm32f0xx.c
4:Core/Src/system_stm32f0xx.c **** * @author MCD Application Team
5:Core/Src/system_stm32f0xx.c **** * @brief CMSIS Cortex-M0 Device Peripheral Access Layer System Source File.
6:Core/Src/system_stm32f0xx.c **** *
7:Core/Src/system_stm32f0xx.c **** * 1. This file provides two functions and one global variable to be called from
8:Core/Src/system_stm32f0xx.c **** * user application:
9:Core/Src/system_stm32f0xx.c **** * - SystemInit(): This function is called at startup just after reset and
10:Core/Src/system_stm32f0xx.c **** * before branch to main program. This call is made inside
11:Core/Src/system_stm32f0xx.c **** * the "startup_stm32f0xx.s" file.
12:Core/Src/system_stm32f0xx.c **** *
13:Core/Src/system_stm32f0xx.c **** * - SystemCoreClock variable: Contains the core clock (HCLK), it can be used
14:Core/Src/system_stm32f0xx.c **** * by the user application to setup the SysTick
15:Core/Src/system_stm32f0xx.c **** * timer or configure other parameters.
16:Core/Src/system_stm32f0xx.c **** *
17:Core/Src/system_stm32f0xx.c **** * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must
18:Core/Src/system_stm32f0xx.c **** * be called whenever the core clock is changed
19:Core/Src/system_stm32f0xx.c **** * during program execution.
20:Core/Src/system_stm32f0xx.c **** *
21:Core/Src/system_stm32f0xx.c **** *
22:Core/Src/system_stm32f0xx.c **** ******************************************************************************
23:Core/Src/system_stm32f0xx.c **** * @attention
24:Core/Src/system_stm32f0xx.c **** *
25:Core/Src/system_stm32f0xx.c **** * Copyright (c) 2016 STMicroelectronics.
26:Core/Src/system_stm32f0xx.c **** * All rights reserved.
27:Core/Src/system_stm32f0xx.c **** *
28:Core/Src/system_stm32f0xx.c **** * This software is licensed under terms that can be found in the LICENSE file
29:Core/Src/system_stm32f0xx.c **** * in the root directory of this software component.
30:Core/Src/system_stm32f0xx.c **** * If no LICENSE file comes with this software, it is provided AS-IS.
31:Core/Src/system_stm32f0xx.c **** *
32:Core/Src/system_stm32f0xx.c **** ******************************************************************************
ARM GAS /tmp/ccDxas5Z.s page 2
33:Core/Src/system_stm32f0xx.c **** */
34:Core/Src/system_stm32f0xx.c **** /** @addtogroup CMSIS
35:Core/Src/system_stm32f0xx.c **** * @{
36:Core/Src/system_stm32f0xx.c **** */
37:Core/Src/system_stm32f0xx.c ****
38:Core/Src/system_stm32f0xx.c **** /** @addtogroup stm32f0xx_system
39:Core/Src/system_stm32f0xx.c **** * @{
40:Core/Src/system_stm32f0xx.c **** */
41:Core/Src/system_stm32f0xx.c ****
42:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_Includes
43:Core/Src/system_stm32f0xx.c **** * @{
44:Core/Src/system_stm32f0xx.c **** */
45:Core/Src/system_stm32f0xx.c ****
46:Core/Src/system_stm32f0xx.c **** #include "stm32f0xx.h"
47:Core/Src/system_stm32f0xx.c ****
48:Core/Src/system_stm32f0xx.c **** /**
49:Core/Src/system_stm32f0xx.c **** * @}
50:Core/Src/system_stm32f0xx.c **** */
51:Core/Src/system_stm32f0xx.c ****
52:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_TypesDefinitions
53:Core/Src/system_stm32f0xx.c **** * @{
54:Core/Src/system_stm32f0xx.c **** */
55:Core/Src/system_stm32f0xx.c ****
56:Core/Src/system_stm32f0xx.c **** /**
57:Core/Src/system_stm32f0xx.c **** * @}
58:Core/Src/system_stm32f0xx.c **** */
59:Core/Src/system_stm32f0xx.c ****
60:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_Defines
61:Core/Src/system_stm32f0xx.c **** * @{
62:Core/Src/system_stm32f0xx.c **** */
63:Core/Src/system_stm32f0xx.c **** #if !defined (HSE_VALUE)
64:Core/Src/system_stm32f0xx.c **** #define HSE_VALUE ((uint32_t)8000000) /*!< Default value of the External oscillator in Hz.
65:Core/Src/system_stm32f0xx.c **** This value can be provided and adapted by the user
66:Core/Src/system_stm32f0xx.c **** #endif /* HSE_VALUE */
67:Core/Src/system_stm32f0xx.c ****
68:Core/Src/system_stm32f0xx.c **** #if !defined (HSI_VALUE)
69:Core/Src/system_stm32f0xx.c **** #define HSI_VALUE ((uint32_t)8000000) /*!< Default value of the Internal oscillator in Hz.
70:Core/Src/system_stm32f0xx.c **** This value can be provided and adapted by the user
71:Core/Src/system_stm32f0xx.c **** #endif /* HSI_VALUE */
72:Core/Src/system_stm32f0xx.c ****
73:Core/Src/system_stm32f0xx.c **** #if !defined (HSI48_VALUE)
74:Core/Src/system_stm32f0xx.c **** #define HSI48_VALUE ((uint32_t)48000000) /*!< Default value of the HSI48 Internal oscillator in
75:Core/Src/system_stm32f0xx.c **** This value can be provided and adapted by the user
76:Core/Src/system_stm32f0xx.c **** #endif /* HSI48_VALUE */
77:Core/Src/system_stm32f0xx.c **** /**
78:Core/Src/system_stm32f0xx.c **** * @}
79:Core/Src/system_stm32f0xx.c **** */
80:Core/Src/system_stm32f0xx.c ****
81:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_Macros
82:Core/Src/system_stm32f0xx.c **** * @{
83:Core/Src/system_stm32f0xx.c **** */
84:Core/Src/system_stm32f0xx.c ****
85:Core/Src/system_stm32f0xx.c **** /**
86:Core/Src/system_stm32f0xx.c **** * @}
87:Core/Src/system_stm32f0xx.c **** */
88:Core/Src/system_stm32f0xx.c ****
89:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_Variables
ARM GAS /tmp/ccDxas5Z.s page 3
90:Core/Src/system_stm32f0xx.c **** * @{
91:Core/Src/system_stm32f0xx.c **** */
92:Core/Src/system_stm32f0xx.c **** /* This variable is updated in three ways:
93:Core/Src/system_stm32f0xx.c **** 1) by calling CMSIS function SystemCoreClockUpdate()
94:Core/Src/system_stm32f0xx.c **** 2) by calling HAL API function HAL_RCC_GetHCLKFreq()
95:Core/Src/system_stm32f0xx.c **** 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
96:Core/Src/system_stm32f0xx.c **** Note: If you use this function to configure the system clock; then there
97:Core/Src/system_stm32f0xx.c **** is no need to call the 2 first functions listed above, since SystemCoreClock
98:Core/Src/system_stm32f0xx.c **** variable is updated automatically.
99:Core/Src/system_stm32f0xx.c **** */
100:Core/Src/system_stm32f0xx.c **** uint32_t SystemCoreClock = 8000000;
101:Core/Src/system_stm32f0xx.c ****
102:Core/Src/system_stm32f0xx.c **** const uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9};
103:Core/Src/system_stm32f0xx.c **** const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4};
104:Core/Src/system_stm32f0xx.c ****
105:Core/Src/system_stm32f0xx.c **** /**
106:Core/Src/system_stm32f0xx.c **** * @}
107:Core/Src/system_stm32f0xx.c **** */
108:Core/Src/system_stm32f0xx.c ****
109:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_FunctionPrototypes
110:Core/Src/system_stm32f0xx.c **** * @{
111:Core/Src/system_stm32f0xx.c **** */
112:Core/Src/system_stm32f0xx.c ****
113:Core/Src/system_stm32f0xx.c **** /**
114:Core/Src/system_stm32f0xx.c **** * @}
115:Core/Src/system_stm32f0xx.c **** */
116:Core/Src/system_stm32f0xx.c ****
117:Core/Src/system_stm32f0xx.c **** /** @addtogroup STM32F0xx_System_Private_Functions
118:Core/Src/system_stm32f0xx.c **** * @{
119:Core/Src/system_stm32f0xx.c **** */
120:Core/Src/system_stm32f0xx.c ****
121:Core/Src/system_stm32f0xx.c **** /**
122:Core/Src/system_stm32f0xx.c **** * @brief Setup the microcontroller system
123:Core/Src/system_stm32f0xx.c **** * @param None
124:Core/Src/system_stm32f0xx.c **** * @retval None
125:Core/Src/system_stm32f0xx.c **** */
126:Core/Src/system_stm32f0xx.c **** void SystemInit(void)
127:Core/Src/system_stm32f0xx.c **** {
27 .loc 1 127 1 view -0
28 .cfi_startproc
29 @ args = 0, pretend = 0, frame = 0
30 @ frame_needed = 0, uses_anonymous_args = 0
31 @ link register save eliminated.
128:Core/Src/system_stm32f0xx.c **** /* NOTE :SystemInit(): This function is called at startup just after reset and
129:Core/Src/system_stm32f0xx.c **** before branch to main program. This call is made inside
130:Core/Src/system_stm32f0xx.c **** the "startup_stm32f0xx.s" file.
131:Core/Src/system_stm32f0xx.c **** User can setups the default system clock (System clock source, PLL Multipl
132:Core/Src/system_stm32f0xx.c **** and Divider factors, AHB/APBx prescalers and Flash settings).
133:Core/Src/system_stm32f0xx.c **** */
134:Core/Src/system_stm32f0xx.c **** }
32 .loc 1 134 1 view .LVU1
33 @ sp needed
34 0000 7047 bx lr
35 .cfi_endproc
36 .LFE40:
38 .global __aeabi_uidiv
39 .section .text.SystemCoreClockUpdate,"ax",%progbits
ARM GAS /tmp/ccDxas5Z.s page 4
40 .align 1
41 .global SystemCoreClockUpdate
42 .syntax unified
43 .code 16
44 .thumb_func
46 SystemCoreClockUpdate:
47 .LFB41:
135:Core/Src/system_stm32f0xx.c ****
136:Core/Src/system_stm32f0xx.c **** /**
137:Core/Src/system_stm32f0xx.c **** * @brief Update SystemCoreClock variable according to Clock Register Values.
138:Core/Src/system_stm32f0xx.c **** * The SystemCoreClock variable contains the core clock (HCLK), it can
139:Core/Src/system_stm32f0xx.c **** * be used by the user application to setup the SysTick timer or configure
140:Core/Src/system_stm32f0xx.c **** * other parameters.
141:Core/Src/system_stm32f0xx.c **** *
142:Core/Src/system_stm32f0xx.c **** * @note Each time the core clock (HCLK) changes, this function must be called
143:Core/Src/system_stm32f0xx.c **** * to update SystemCoreClock variable value. Otherwise, any configuration
144:Core/Src/system_stm32f0xx.c **** * based on this variable will be incorrect.
145:Core/Src/system_stm32f0xx.c **** *
146:Core/Src/system_stm32f0xx.c **** * @note - The system frequency computed by this function is not the real
147:Core/Src/system_stm32f0xx.c **** * frequency in the chip. It is calculated based on the predefined
148:Core/Src/system_stm32f0xx.c **** * constant and the selected clock source:
149:Core/Src/system_stm32f0xx.c **** *
150:Core/Src/system_stm32f0xx.c **** * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*)
151:Core/Src/system_stm32f0xx.c **** *
152:Core/Src/system_stm32f0xx.c **** * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**)
153:Core/Src/system_stm32f0xx.c **** *
154:Core/Src/system_stm32f0xx.c **** * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**)
155:Core/Src/system_stm32f0xx.c **** * or HSI_VALUE(*) multiplied/divided by the PLL factors.
156:Core/Src/system_stm32f0xx.c **** *
157:Core/Src/system_stm32f0xx.c **** * - If SYSCLK source is HSI48, SystemCoreClock will contain the HSI48_VALUE(***)
158:Core/Src/system_stm32f0xx.c **** *
159:Core/Src/system_stm32f0xx.c **** * (*) HSI_VALUE is a constant defined in stm32f0xx_hal_conf.h file (default value
160:Core/Src/system_stm32f0xx.c **** * 8 MHz) but the real value may vary depending on the variations
161:Core/Src/system_stm32f0xx.c **** * in voltage and temperature.
162:Core/Src/system_stm32f0xx.c **** *
163:Core/Src/system_stm32f0xx.c **** * (**) HSE_VALUE is a constant defined in stm32f0xx_hal_conf.h file (its value
164:Core/Src/system_stm32f0xx.c **** * depends on the application requirements), user has to ensure that HSE_VALUE
165:Core/Src/system_stm32f0xx.c **** * is same as the real frequency of the crystal used. Otherwise, this function
166:Core/Src/system_stm32f0xx.c **** * may have wrong result.
167:Core/Src/system_stm32f0xx.c **** *
168:Core/Src/system_stm32f0xx.c **** * (***) HSI48_VALUE is a constant defined in stm32f0xx_hal_conf.h file (default value
169:Core/Src/system_stm32f0xx.c **** * 48 MHz) but the real value may vary depending on the variations
170:Core/Src/system_stm32f0xx.c **** * in voltage and temperature.
171:Core/Src/system_stm32f0xx.c **** *
172:Core/Src/system_stm32f0xx.c **** * - The result of this function could be not correct when using fractional
173:Core/Src/system_stm32f0xx.c **** * value for HSE crystal.
174:Core/Src/system_stm32f0xx.c **** *
175:Core/Src/system_stm32f0xx.c **** * @param None
176:Core/Src/system_stm32f0xx.c **** * @retval None
177:Core/Src/system_stm32f0xx.c **** */
178:Core/Src/system_stm32f0xx.c **** void SystemCoreClockUpdate (void)
179:Core/Src/system_stm32f0xx.c **** {
48 .loc 1 179 1 view -0
49 .cfi_startproc
50 @ args = 0, pretend = 0, frame = 0
51 @ frame_needed = 0, uses_anonymous_args = 0
52 0000 10B5 push {r4, lr}
ARM GAS /tmp/ccDxas5Z.s page 5
53 .cfi_def_cfa_offset 8
54 .cfi_offset 4, -8
55 .cfi_offset 14, -4
180:Core/Src/system_stm32f0xx.c **** uint32_t tmp = 0, pllmull = 0, pllsource = 0, predivfactor = 0;
56 .loc 1 180 3 view .LVU3
57 .LVL0:
181:Core/Src/system_stm32f0xx.c ****
182:Core/Src/system_stm32f0xx.c **** /* Get SYSCLK source -------------------------------------------------------*/
183:Core/Src/system_stm32f0xx.c **** tmp = RCC->CFGR & RCC_CFGR_SWS;
58 .loc 1 183 3 view .LVU4
59 .loc 1 183 12 is_stmt 0 view .LVU5
60 0002 254B ldr r3, .L11
61 0004 5A68 ldr r2, [r3, #4]
62 .loc 1 183 7 view .LVU6
63 0006 0C23 movs r3, #12
64 0008 1340 ands r3, r2
65 .LVL1:
184:Core/Src/system_stm32f0xx.c ****
185:Core/Src/system_stm32f0xx.c **** switch (tmp)
66 .loc 1 185 3 is_stmt 1 view .LVU7
67 000a 042B cmp r3, #4
68 000c 12D0 beq .L3
69 000e 082B cmp r3, #8
70 0010 14D0 beq .L4
71 0012 002B cmp r3, #0
72 0014 3CD1 bne .L5
186:Core/Src/system_stm32f0xx.c **** {
187:Core/Src/system_stm32f0xx.c **** case RCC_CFGR_SWS_HSI: /* HSI used as system clock */
188:Core/Src/system_stm32f0xx.c **** SystemCoreClock = HSI_VALUE;
73 .loc 1 188 7 view .LVU8
74 .loc 1 188 23 is_stmt 0 view .LVU9
75 0016 214B ldr r3, .L11+4
76 .LVL2:
77 .loc 1 188 23 view .LVU10
78 0018 214A ldr r2, .L11+8
79 .LVL3:
80 .loc 1 188 23 view .LVU11
81 001a 1A60 str r2, [r3]
189:Core/Src/system_stm32f0xx.c **** break;
82 .loc 1 189 7 is_stmt 1 view .LVU12
83 .LVL4:
84 .L6:
190:Core/Src/system_stm32f0xx.c **** case RCC_CFGR_SWS_HSE: /* HSE used as system clock */
191:Core/Src/system_stm32f0xx.c **** SystemCoreClock = HSE_VALUE;
192:Core/Src/system_stm32f0xx.c **** break;
193:Core/Src/system_stm32f0xx.c **** case RCC_CFGR_SWS_PLL: /* PLL used as system clock */
194:Core/Src/system_stm32f0xx.c **** /* Get PLL clock source and multiplication factor ----------------------*/
195:Core/Src/system_stm32f0xx.c **** pllmull = RCC->CFGR & RCC_CFGR_PLLMUL;
196:Core/Src/system_stm32f0xx.c **** pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
197:Core/Src/system_stm32f0xx.c **** pllmull = ( pllmull >> 18) + 2;
198:Core/Src/system_stm32f0xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
199:Core/Src/system_stm32f0xx.c ****
200:Core/Src/system_stm32f0xx.c **** if (pllsource == RCC_CFGR_PLLSRC_HSE_PREDIV)
201:Core/Src/system_stm32f0xx.c **** {
202:Core/Src/system_stm32f0xx.c **** /* HSE used as PLL clock source : SystemCoreClock = HSE/PREDIV * PLLMUL */
203:Core/Src/system_stm32f0xx.c **** SystemCoreClock = (HSE_VALUE/predivfactor) * pllmull;
204:Core/Src/system_stm32f0xx.c **** }
ARM GAS /tmp/ccDxas5Z.s page 6
205:Core/Src/system_stm32f0xx.c **** #if defined(STM32F042x6) || defined(STM32F048xx) || defined(STM32F071xB) || defined(STM32F072xB) ||
206:Core/Src/system_stm32f0xx.c **** else if (pllsource == RCC_CFGR_PLLSRC_HSI48_PREDIV)
207:Core/Src/system_stm32f0xx.c **** {
208:Core/Src/system_stm32f0xx.c **** /* HSI48 used as PLL clock source : SystemCoreClock = HSI48/PREDIV * PLLMUL */
209:Core/Src/system_stm32f0xx.c **** SystemCoreClock = (HSI48_VALUE/predivfactor) * pllmull;
210:Core/Src/system_stm32f0xx.c **** }
211:Core/Src/system_stm32f0xx.c **** #endif /* STM32F042x6 || STM32F048xx || STM32F071xB || STM32F072xB || STM32F078xx || STM32F091xC ||
212:Core/Src/system_stm32f0xx.c **** else
213:Core/Src/system_stm32f0xx.c **** {
214:Core/Src/system_stm32f0xx.c **** #if defined(STM32F042x6) || defined(STM32F048xx) || defined(STM32F070x6) \
215:Core/Src/system_stm32f0xx.c **** || defined(STM32F078xx) || defined(STM32F071xB) || defined(STM32F072xB) \
216:Core/Src/system_stm32f0xx.c **** || defined(STM32F070xB) || defined(STM32F091xC) || defined(STM32F098xx) || defined(STM32F030xC)
217:Core/Src/system_stm32f0xx.c **** /* HSI used as PLL clock source : SystemCoreClock = HSI/PREDIV * PLLMUL */
218:Core/Src/system_stm32f0xx.c **** SystemCoreClock = (HSI_VALUE/predivfactor) * pllmull;
219:Core/Src/system_stm32f0xx.c **** #else
220:Core/Src/system_stm32f0xx.c **** /* HSI used as PLL clock source : SystemCoreClock = HSI/2 * PLLMUL */
221:Core/Src/system_stm32f0xx.c **** SystemCoreClock = (HSI_VALUE >> 1) * pllmull;
222:Core/Src/system_stm32f0xx.c **** #endif /* STM32F042x6 || STM32F048xx || STM32F070x6 ||
223:Core/Src/system_stm32f0xx.c **** STM32F071xB || STM32F072xB || STM32F078xx || STM32F070xB ||
224:Core/Src/system_stm32f0xx.c **** STM32F091xC || STM32F098xx || STM32F030xC */
225:Core/Src/system_stm32f0xx.c **** }
226:Core/Src/system_stm32f0xx.c **** break;
227:Core/Src/system_stm32f0xx.c **** default: /* HSI used as system clock */
228:Core/Src/system_stm32f0xx.c **** SystemCoreClock = HSI_VALUE;
229:Core/Src/system_stm32f0xx.c **** break;
230:Core/Src/system_stm32f0xx.c **** }
231:Core/Src/system_stm32f0xx.c **** /* Compute HCLK clock frequency ----------------*/
232:Core/Src/system_stm32f0xx.c **** /* Get HCLK prescaler */
233:Core/Src/system_stm32f0xx.c **** tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> 4)];
85 .loc 1 233 3 view .LVU13
86 .loc 1 233 28 is_stmt 0 view .LVU14
87 001c 1E4B ldr r3, .L11
88 001e 5A68 ldr r2, [r3, #4]
89 .loc 1 233 52 view .LVU15
90 0020 1209 lsrs r2, r2, #4
91 0022 0F23 movs r3, #15
92 0024 1340 ands r3, r2
93 .loc 1 233 22 view .LVU16
94 0026 1F4A ldr r2, .L11+12
95 0028 D15C ldrb r1, [r2, r3]
96 .LVL5:
234:Core/Src/system_stm32f0xx.c **** /* HCLK clock frequency */
235:Core/Src/system_stm32f0xx.c **** SystemCoreClock >>= tmp;
97 .loc 1 235 3 is_stmt 1 view .LVU17
98 .loc 1 235 19 is_stmt 0 view .LVU18
99 002a 1C4A ldr r2, .L11+4
100 002c 1368 ldr r3, [r2]
101 002e CB40 lsrs r3, r3, r1
102 0030 1360 str r3, [r2]
236:Core/Src/system_stm32f0xx.c **** }
103 .loc 1 236 1 view .LVU19
104 @ sp needed
105 0032 10BD pop {r4, pc}
106 .LVL6:
107 .L3:
191:Core/Src/system_stm32f0xx.c **** break;
108 .loc 1 191 7 is_stmt 1 view .LVU20
ARM GAS /tmp/ccDxas5Z.s page 7
191:Core/Src/system_stm32f0xx.c **** break;
109 .loc 1 191 23 is_stmt 0 view .LVU21
110 0034 194B ldr r3, .L11+4
111 .LVL7:
191:Core/Src/system_stm32f0xx.c **** break;
112 .loc 1 191 23 view .LVU22
113 0036 1A4A ldr r2, .L11+8
114 .LVL8:
191:Core/Src/system_stm32f0xx.c **** break;
115 .loc 1 191 23 view .LVU23
116 0038 1A60 str r2, [r3]
192:Core/Src/system_stm32f0xx.c **** case RCC_CFGR_SWS_PLL: /* PLL used as system clock */
117 .loc 1 192 7 is_stmt 1 view .LVU24
118 003a EFE7 b .L6
119 .LVL9:
120 .L4:
195:Core/Src/system_stm32f0xx.c **** pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
121 .loc 1 195 7 view .LVU25
195:Core/Src/system_stm32f0xx.c **** pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
122 .loc 1 195 20 is_stmt 0 view .LVU26
123 003c 164A ldr r2, .L11
124 003e 5068 ldr r0, [r2, #4]
125 .LVL10:
196:Core/Src/system_stm32f0xx.c **** pllmull = ( pllmull >> 18) + 2;
126 .loc 1 196 7 is_stmt 1 view .LVU27
196:Core/Src/system_stm32f0xx.c **** pllmull = ( pllmull >> 18) + 2;
127 .loc 1 196 22 is_stmt 0 view .LVU28
128 0040 5368 ldr r3, [r2, #4]
129 .LVL11:
196:Core/Src/system_stm32f0xx.c **** pllmull = ( pllmull >> 18) + 2;
130 .loc 1 196 17 view .LVU29
131 0042 C021 movs r1, #192
132 0044 4902 lsls r1, r1, #9
133 0046 0B40 ands r3, r1
134 .LVL12:
197:Core/Src/system_stm32f0xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
135 .loc 1 197 7 is_stmt 1 view .LVU30
197:Core/Src/system_stm32f0xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
136 .loc 1 197 27 is_stmt 0 view .LVU31
137 0048 800C lsrs r0, r0, #18
138 .LVL13:
197:Core/Src/system_stm32f0xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
139 .loc 1 197 27 view .LVU32
140 004a 0F21 movs r1, #15
141 004c 0840 ands r0, r1
197:Core/Src/system_stm32f0xx.c **** predivfactor = (RCC->CFGR2 & RCC_CFGR2_PREDIV) + 1;
142 .loc 1 197 15 view .LVU33
143 004e 841C adds r4, r0, #2
144 .LVL14:
198:Core/Src/system_stm32f0xx.c ****
145 .loc 1 198 7 is_stmt 1 view .LVU34
198:Core/Src/system_stm32f0xx.c ****
146 .loc 1 198 26 is_stmt 0 view .LVU35
147 0050 D26A ldr r2, [r2, #44]
198:Core/Src/system_stm32f0xx.c ****
148 .loc 1 198 34 view .LVU36
149 0052 1140 ands r1, r2
ARM GAS /tmp/ccDxas5Z.s page 8
198:Core/Src/system_stm32f0xx.c ****
150 .loc 1 198 20 view .LVU37
151 0054 0131 adds r1, r1, #1
152 .LVL15:
200:Core/Src/system_stm32f0xx.c **** {
153 .loc 1 200 7 is_stmt 1 view .LVU38
200:Core/Src/system_stm32f0xx.c **** {
154 .loc 1 200 10 is_stmt 0 view .LVU39
155 0056 8022 movs r2, #128
156 0058 5202 lsls r2, r2, #9
157 005a 9342 cmp r3, r2
158 005c 0AD0 beq .L9
206:Core/Src/system_stm32f0xx.c **** {
159 .loc 1 206 12 is_stmt 1 view .LVU40
206:Core/Src/system_stm32f0xx.c **** {
160 .loc 1 206 15 is_stmt 0 view .LVU41
161 005e C022 movs r2, #192
162 0060 5202 lsls r2, r2, #9
163 0062 9342 cmp r3, r2
164 0064 0DD0 beq .L10
218:Core/Src/system_stm32f0xx.c **** #else
165 .loc 1 218 9 is_stmt 1 view .LVU42
218:Core/Src/system_stm32f0xx.c **** #else
166 .loc 1 218 37 is_stmt 0 view .LVU43
167 0066 0E48 ldr r0, .L11+8
168 0068 FFF7FEFF bl __aeabi_uidiv
169 .LVL16:
218:Core/Src/system_stm32f0xx.c **** #else
170 .loc 1 218 52 view .LVU44
171 006c 6043 muls r0, r4
218:Core/Src/system_stm32f0xx.c **** #else
172 .loc 1 218 25 view .LVU45
173 006e 0B4B ldr r3, .L11+4
174 0070 1860 str r0, [r3]
175 0072 D3E7 b .L6
176 .LVL17:
177 .L9:
203:Core/Src/system_stm32f0xx.c **** }
178 .loc 1 203 9 is_stmt 1 view .LVU46
203:Core/Src/system_stm32f0xx.c **** }
179 .loc 1 203 37 is_stmt 0 view .LVU47
180 0074 0A48 ldr r0, .L11+8
181 0076 FFF7FEFF bl __aeabi_uidiv
182 .LVL18:
203:Core/Src/system_stm32f0xx.c **** }
183 .loc 1 203 52 view .LVU48
184 007a 6043 muls r0, r4
203:Core/Src/system_stm32f0xx.c **** }
185 .loc 1 203 25 view .LVU49
186 007c 074B ldr r3, .L11+4
187 007e 1860 str r0, [r3]
188 0080 CCE7 b .L6
189 .LVL19:
190 .L10:
209:Core/Src/system_stm32f0xx.c **** }
191 .loc 1 209 9 is_stmt 1 view .LVU50
209:Core/Src/system_stm32f0xx.c **** }
ARM GAS /tmp/ccDxas5Z.s page 9
192 .loc 1 209 39 is_stmt 0 view .LVU51
193 0082 0948 ldr r0, .L11+16
194 0084 FFF7FEFF bl __aeabi_uidiv
195 .LVL20:
209:Core/Src/system_stm32f0xx.c **** }
196 .loc 1 209 54 view .LVU52
197 0088 6043 muls r0, r4
209:Core/Src/system_stm32f0xx.c **** }
198 .loc 1 209 25 view .LVU53
199 008a 044B ldr r3, .L11+4
200 008c 1860 str r0, [r3]
201 008e C5E7 b .L6
202 .LVL21:
203 .L5:
228:Core/Src/system_stm32f0xx.c **** break;
204 .loc 1 228 7 is_stmt 1 view .LVU54
228:Core/Src/system_stm32f0xx.c **** break;
205 .loc 1 228 23 is_stmt 0 view .LVU55
206 0090 024B ldr r3, .L11+4
207 .LVL22:
228:Core/Src/system_stm32f0xx.c **** break;
208 .loc 1 228 23 view .LVU56
209 0092 034A ldr r2, .L11+8
210 .LVL23:
228:Core/Src/system_stm32f0xx.c **** break;
211 .loc 1 228 23 view .LVU57
212 0094 1A60 str r2, [r3]
229:Core/Src/system_stm32f0xx.c **** }
213 .loc 1 229 7 is_stmt 1 view .LVU58
214 0096 C1E7 b .L6
215 .L12:
216 .align 2
217 .L11:
218 0098 00100240 .word 1073876992
219 009c 00000000 .word SystemCoreClock
220 00a0 00127A00 .word 8000000
221 00a4 00000000 .word AHBPrescTable
222 00a8 006CDC02 .word 48000000
223 .cfi_endproc
224 .LFE41:
226 .global APBPrescTable
227 .section .rodata.APBPrescTable,"a"
228 .align 2
231 APBPrescTable:
232 0000 00000000 .ascii "\000\000\000\000\001\002\003\004"
232 01020304
233 .global AHBPrescTable
234 .section .rodata.AHBPrescTable,"a"
235 .align 2
238 AHBPrescTable:
239 0000 00000000 .ascii "\000\000\000\000\000\000\000\000\001\002\003\004\006"
239 00000000
239 01020304
239 06
240 000d 070809 .ascii "\007\010\011"
241 .global SystemCoreClock
242 .section .data.SystemCoreClock,"aw"
ARM GAS /tmp/ccDxas5Z.s page 10
243 .align 2
246 SystemCoreClock:
247 0000 00127A00 .word 8000000
248 .text
249 .Letext0:
250 .file 2 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
251 .file 3 "/home/chiangni/.config/VSCodium/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/
252 .file 4 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h"
253 .file 5 "Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h"
ARM GAS /tmp/ccDxas5Z.s page 11
DEFINED SYMBOLS
*ABS*:00000000 system_stm32f0xx.c
/tmp/ccDxas5Z.s:19 .text.SystemInit:00000000 $t
/tmp/ccDxas5Z.s:25 .text.SystemInit:00000000 SystemInit
/tmp/ccDxas5Z.s:40 .text.SystemCoreClockUpdate:00000000 $t
/tmp/ccDxas5Z.s:46 .text.SystemCoreClockUpdate:00000000 SystemCoreClockUpdate
/tmp/ccDxas5Z.s:218 .text.SystemCoreClockUpdate:00000098 $d
/tmp/ccDxas5Z.s:246 .data.SystemCoreClock:00000000 SystemCoreClock
/tmp/ccDxas5Z.s:238 .rodata.AHBPrescTable:00000000 AHBPrescTable
/tmp/ccDxas5Z.s:231 .rodata.APBPrescTable:00000000 APBPrescTable
/tmp/ccDxas5Z.s:228 .rodata.APBPrescTable:00000000 $d
/tmp/ccDxas5Z.s:235 .rodata.AHBPrescTable:00000000 $d
/tmp/ccDxas5Z.s:243 .data.SystemCoreClock:00000000 $d
UNDEFINED SYMBOLS
__aeabi_uidiv

Binary file not shown.

@ -1 +0,0 @@
Subproject commit 6f6cbf1d1eb988a19fc990446827e172e7c6791c