Compare commits
3 Commits
b3ae162809
...
dcb4f48082
Author | SHA1 | Date | |
---|---|---|---|
dcb4f48082 | |||
b042c68965 | |||
5262022945 |
5
.gitignore
vendored
5
.gitignore
vendored
@ -63,3 +63,8 @@ build/
|
||||
|
||||
# Autogenerated files
|
||||
.stm32env
|
||||
.cache/
|
||||
|
||||
# Configuration files
|
||||
.vscode/
|
||||
compile_commands.json
|
||||
|
20
.vscode/c_cpp_properties.json
vendored
20
.vscode/c_cpp_properties.json
vendored
@ -1,20 +0,0 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "STM32",
|
||||
"includePath": [
|
||||
"Core/Inc",
|
||||
"Drivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"Drivers/CMSIS/Include",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Inc/Legacy"
|
||||
],
|
||||
"defines": [
|
||||
"STM32F302x8",
|
||||
"USE_HAL_DRIVER"
|
||||
],
|
||||
"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
|
||||
}
|
32
.vscode/launch.json
vendored
32
.vscode/launch.json
vendored
@ -1,32 +0,0 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"showDevDebugOutput": "parsed",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"executable": "./build/ADBMS_Test.elf",
|
||||
"name": "Debug STM32",
|
||||
"request": "launch",
|
||||
"type": "cortex-debug",
|
||||
"servertype": "openocd",
|
||||
"preLaunchTask": "Build STM",
|
||||
"device": "stm32f302x8.s",
|
||||
"configFiles": [
|
||||
"openocd.cfg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"showDevDebugOutput": "parsed",
|
||||
"cwd": "${workspaceRoot}",
|
||||
"executable": "./build/ADBMS_Test.elf",
|
||||
"name": "Attach STM32",
|
||||
"request": "attach",
|
||||
"type": "cortex-debug",
|
||||
"servertype": "openocd",
|
||||
"preLaunchTask": "Build STM",
|
||||
"device": "stm32f302x8.s",
|
||||
"configFiles": [
|
||||
"openocd.cfg"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -1,4 +0,0 @@
|
||||
{
|
||||
"cortex-debug.armToolchainPath": "/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",
|
||||
"cortex-debug.openocdPath": "/home/chiangni/.config/Code/User/globalStorage/bmd.stm32-for-vscode/@xpack-dev-tools/openocd/0.12.0-4.1/.content/bin/openocd"
|
||||
}
|
50
.vscode/tasks.json
vendored
50
.vscode/tasks.json
vendored
@ -1,50 +0,0 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build STM",
|
||||
"type": "process",
|
||||
"command": "${command:stm32-for-vscode.build}",
|
||||
"options": {
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Build Clean STM",
|
||||
"type": "process",
|
||||
"command": "${command:stm32-for-vscode.cleanBuild}",
|
||||
"options": {
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Flash STM",
|
||||
"type": "process",
|
||||
"command": "${command:stm32-for-vscode.flash}",
|
||||
"options": {
|
||||
"cwd": "${workspaceRoot}"
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$gcc"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -15,5 +15,5 @@ uint8_t eeprom_write(uint8_t addr, uint8_t data) {
|
||||
}
|
||||
|
||||
uint8_t eeprom_read(uint8_t addr, uint8_t* data) {
|
||||
return amsReadComm(EEPROM_ADDR, addr, &data);
|
||||
return amsReadComm(EEPROM_ADDR, addr, data);
|
||||
}
|
@ -263,7 +263,7 @@ uint8_t amsWriteComm(uint8_t device, uint8_t addr, uint8_t data) {
|
||||
CHECK_RETURN(writeCMD(WRCOMM, txbuf, COMM_GROUP_SIZE));
|
||||
uint8_t rxbuf[6] = {0,0,0,0,0,0};
|
||||
readCMD(RDCOMM, rxbuf, COMM_GROUP_SIZE);
|
||||
if (rxbuf[6] != txbuf[6]) {
|
||||
if (rxbuf[5] != txbuf[5]) { // assert that the data was written correctly
|
||||
while(1){}
|
||||
}
|
||||
CHECK_RETURN(writeCMD_I2C(STCOMM, 72, NULL, 0));
|
||||
|
@ -1,871 +0,0 @@
|
||||
[
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/ADBMS_Abstraction.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/ADBMS_Abstraction.o",
|
||||
"Core/Src/ADBMS_Abstraction.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/ADBMS_Abstraction.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/ADBMS_Abstraction.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/ADBMS_LL_Driver.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/ADBMS_LL_Driver.o",
|
||||
"Core/Src/ADBMS_LL_Driver.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/ADBMS_LL_Driver.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/ADBMS_LL_Driver.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/AMS_HighLevel.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/AMS_HighLevel.o",
|
||||
"Core/Src/AMS_HighLevel.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/AMS_HighLevel.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/AMS_HighLevel.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/TMP1075.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/TMP1075.o",
|
||||
"Core/Src/TMP1075.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/TMP1075.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/TMP1075.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/stm32f3xx_it.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/stm32f3xx_it.o",
|
||||
"Core/Src/stm32f3xx_it.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/stm32f3xx_it.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/stm32f3xx_it.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/main.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/main.o",
|
||||
"Core/Src/main.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/main.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/main.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/sysmem.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/sysmem.o",
|
||||
"Core/Src/sysmem.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/sysmem.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/sysmem.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/syscalls.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/syscalls.o",
|
||||
"Core/Src/syscalls.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/syscalls.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/syscalls.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_cortex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/system_stm32f3xx.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/system_stm32f3xx.o",
|
||||
"Core/Src/system_stm32f3xx.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/system_stm32f3xx.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/system_stm32f3xx.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Core/Src/stm32f3xx_hal_msp.lst",
|
||||
"-o",
|
||||
"build/debug/Core/Src/stm32f3xx_hal_msp.o",
|
||||
"Core/Src/stm32f3xx_hal_msp.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Core/Src/stm32f3xx_hal_msp.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Core/Src/stm32f3xx_hal_msp.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_exti.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_flash_ex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_dma.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_gpio.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_i2c_ex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_pwr_ex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_rcc_ex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi_ex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_spi.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-Wa,-a,-ad,-alms=build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.lst",
|
||||
"-o",
|
||||
"build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.o",
|
||||
"Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.c",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/Drivers/STM32F3xx_HAL_Driver/Src/stm32f3xx_hal_tim_ex.o"
|
||||
},
|
||||
{
|
||||
"arguments": [
|
||||
"/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",
|
||||
"-x",
|
||||
"assembler-with-cpp",
|
||||
"-c",
|
||||
"-mcpu=cortex-m4",
|
||||
"-mthumb",
|
||||
"-mfpu=fpv4-sp-d16",
|
||||
"-mfloat-abi=hard",
|
||||
"-ICore/Inc",
|
||||
"-IDrivers/CMSIS/Device/ST/STM32F3xx/Include",
|
||||
"-IDrivers/CMSIS/Include",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc",
|
||||
"-IDrivers/STM32F3xx_HAL_Driver/Inc/Legacy",
|
||||
"-DSTM32F302x8",
|
||||
"-DUSE_HAL_DRIVER",
|
||||
"-Og",
|
||||
"-g",
|
||||
"-gdwarf",
|
||||
"-ggdb",
|
||||
"-Wall",
|
||||
"-fdata-sections",
|
||||
"-ffunction-sections",
|
||||
"-o",
|
||||
"build/debug/startup_stm32f302x8.o",
|
||||
"startup_stm32f302x8.s"
|
||||
],
|
||||
"directory": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest",
|
||||
"file": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/startup_stm32f302x8.s",
|
||||
"output": "/Windows/Users/johnn/Documents/FaSTTUBe/Git/adbmsFunctionTest/build/debug/startup_stm32f302x8.o"
|
||||
}
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user