Signed-off-by: kevin <kevin@lmve.net>

This commit is contained in:
2022-08-15 23:49:59 +08:00
parent d13c293f47
commit 423048d098
34 changed files with 3030 additions and 3000 deletions
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -10,7 +10,7 @@
<TargetName>f103c8t6_KEIL</TargetName> <TargetName>f103c8t6_KEIL</TargetName>
<ToolsetNumber>0x4</ToolsetNumber> <ToolsetNumber>0x4</ToolsetNumber>
<ToolsetName>ARM-ADS</ToolsetName> <ToolsetName>ARM-ADS</ToolsetName>
<pCCUsed>6160000::V6.16::ARMCLANG</pCCUsed> <pCCUsed>6180000::V6.18::ARMCLANG</pCCUsed>
<uAC6>1</uAC6> <uAC6>1</uAC6>
<TargetOption> <TargetOption>
<TargetCommonOption> <TargetCommonOption>
@@ -186,6 +186,7 @@
<RvdsVP>0</RvdsVP> <RvdsVP>0</RvdsVP>
<RvdsMve>0</RvdsMve> <RvdsMve>0</RvdsMve>
<RvdsCdeCp>0</RvdsCdeCp> <RvdsCdeCp>0</RvdsCdeCp>
<nBranchProt>0</nBranchProt>
<hadIRAM2>0</hadIRAM2> <hadIRAM2>0</hadIRAM2>
<hadIROM2>0</hadIROM2> <hadIROM2>0</hadIROM2>
<StupSel>8</StupSel> <StupSel>8</StupSel>
Binary file not shown.
Binary file not shown.
@@ -3,30 +3,48 @@
<pre> <pre>
<h1>µVision Build Log</h1> <h1>µVision Build Log</h1>
<h2>Tool Versions:</h2> <h2>Tool Versions:</h2>
IDE-Version: ¦ÌVision V5.36.0.0 IDE-Version: µVision V5.37.0.0
Copyright (C) 2021 ARM Ltd and ARM Germany GmbH. All rights reserved. Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
License Information: 1 1, 1, LIC=---- License Information: kevin ng, lmve.net, LIC=----
Tool Versions: Tool Versions:
Toolchain: MDK-Lite Version: 5.36.0.0 Toolchain: MDK-Lite Version: 5.37.0.0
Toolchain Path: C:\Keil_v5\ARM\ARMCLANG\Bin Toolchain Path: C:\Keil_v5\ARM\ARMCLANG\Bin
C Compiler: ArmClang.exe V6.16 C Compiler: ArmClang.exe V6.18
Assembler: Armasm.exe V6.16 Assembler: Armasm.exe V6.18
Linker/Locator: ArmLink.exe V6.16 Linker/Locator: ArmLink.exe V6.18
Library Manager: ArmAr.exe V6.16 Library Manager: ArmAr.exe V6.18
Hex Converter: FromElf.exe V6.16 Hex Converter: FromElf.exe V6.18
CPU DLL: SARMCM3.DLL V5.36.0.0 CPU DLL: SARMCM3.DLL V5.37.0.0
Dialog DLL: DCM.DLL V1.17.3.0 Dialog DLL: DCM.DLL V1.17.5.0
Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.0.9.0 Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.0.9.0
Dialog DLL: TCM.DLL V1.53.0.0 Dialog DLL: TCM.DLL V1.56.1.0
<h2>Project:</h2> <h2>Project:</h2>
C:\Users\kevin\Desktop\morse_code_trainer\f103c8t6_keil\MDK-ARM\f103c8t6_KEIL.uvprojx C:\Users\wuwen\morse_code_trainer\f103c8t6_keil\MDK-ARM\f103c8t6_KEIL.uvprojx
Project File Date: 08/12/2022 Project File Date: 08/15/2022
<h2>Output:</h2> <h2>Output:</h2>
*** Using Compiler 'V6.16', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin' *** Using Compiler 'V6.18', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
Build target 'f103c8t6_KEIL' Rebuild target 'f103c8t6_KEIL'
assembling startup_stm32f103xb.s...
compiling stm32f1xx_it.c...
compiling stm32f1xx_hal_gpio_ex.c...
compiling stm32f1xx_hal_msp.c...
compiling stm32f1xx_hal.c...
compiling main.c...
compiling stm32f1xx_hal_rcc_ex.c...
compiling stm32f1xx_hal_gpio.c...
compiling stm32f1xx_hal_cortex.c...
compiling stm32f1xx_hal_rcc.c...
compiling stm32f1xx_hal_pwr.c...
compiling stm32f1xx_hal_dma.c...
compiling stm32f1xx_hal_flash.c...
compiling stm32f1xx_hal_exti.c...
compiling system_stm32f1xx.c...
compiling stm32f1xx_hal_flash_ex.c...
compiling hread_interface.c...
compiling fonts.c...
MYDEIVERS/mymain.c(67): warning: non-void function does not return a value in all control paths [-Wreturn-type] MYDEIVERS/mymain.c(67): warning: non-void function does not return a value in all control paths [-Wreturn-type]
} }
^ ^
@@ -48,18 +66,34 @@ MYDEIVERS/mymain.c(272): warning: incompatible pointer types assigning to 'char
^~~~~ ^~~~~
5 warnings generated. 5 warnings generated.
compiling mymain.c... compiling mymain.c...
compiling stm32f1xx_hal_tim_ex.c...
MYDEIVERS/buzzer.c(24): warning: implicitly declaring library function 'malloc' with type 'void *(unsigned int)' [-Wimplicit-function-declaration]
buff =(note*)malloc(sizeof(note));
^
MYDEIVERS/buzzer.c(24): note: include the header <stdlib.h> or explicitly provide a declaration for 'malloc'
MYDEIVERS/buzzer.c(63): warning: implicitly declaring library function 'free' with type 'void (void *)' [-Wimplicit-function-declaration]
free(buzzer_play_buff.head);
^
MYDEIVERS/buzzer.c(63): note: include the header <stdlib.h> or explicitly provide a declaration for 'free'
2 warnings generated.
compiling buzzer.c...
compiling encode.c...
compiling oled.c...
compiling morsr.c...
compiling stm32f1xx_hal_tim.c...
compiling stm32f1xx_hal_i2c.c...
linking... linking...
Program Size: Code=16656 RO-data=4080 RW-data=108 ZI-data=4188 Program Size: Code=16772 RO-data=4088 RW-data=108 ZI-data=4188
FromELF: creating hex file... FromELF: creating hex file...
"f103c8t6_KEIL\f103c8t6_KEIL.axf" - 0 Error(s), 5 Warning(s). "f103c8t6_KEIL\f103c8t6_KEIL.axf" - 0 Error(s), 7 Warning(s).
<h2>Software Packages used:</h2> <h2>Software Packages used:</h2>
Package Vendor: ARM Package Vendor: ARM
http://www.keil.com/pack/ARM.CMSIS.5.8.0.pack http://www.keil.com/pack/ARM.CMSIS.5.9.0.pack
ARM.CMSIS.5.8.0 ARM.CMSIS.5.9.0
CMSIS (Common Microcontroller Software Interface Standard) CMSIS (Common Microcontroller Software Interface Standard)
* Component: CORE Version: 5.5.0 * Component: CORE Version: 5.6.0
Package Vendor: Keil Package Vendor: Keil
http://www.keil.com/pack/Keil.STM32F1xx_DFP.2.4.0.pack http://www.keil.com/pack/Keil.STM32F1xx_DFP.2.4.0.pack
@@ -67,14 +101,14 @@ Package Vendor: Keil
STMicroelectronics STM32F1 Series Device Support, Drivers and Examples STMicroelectronics STM32F1 Series Device Support, Drivers and Examples
<h2>Collection of Component include folders:</h2> <h2>Collection of Component include folders:</h2>
.\RTE\_f103c8t6_KEIL ./RTE/_f103c8t6_KEIL
C:\Users\kevin\AppData\Local\Arm\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include C:/Users/wuwen/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
C:\Users\kevin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include C:/Users/wuwen/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
<h2>Collection of Component Files used:</h2> <h2>Collection of Component Files used:</h2>
* Component: ARM::CMSIS:CORE:5.5.0 * Component: ARM::CMSIS:CORE:5.6.0
Include file: CMSIS\Core\Include\tz_context.h Include file: CMSIS/Core/Include/tz_context.h
Build Time Elapsed: 00:00:02 Build Time Elapsed: 00:00:02
</pre> </pre>
</body> </body>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.