Compare commits
No commits in common. "2ac48cf4a17dd788e666a11e58377e8fb234532a" and "d8cda927b533a7d3221f4f954f15e5685867c016" have entirely different histories.
2ac48cf4a1
...
d8cda927b5
33 changed files with 34 additions and 237 deletions
|
|
@ -1,11 +1,10 @@
|
||||||
#include <stm32f10x.h>
|
#include <stm32f10x.h>
|
||||||
#include <stdio.h> // Pour afficher
|
#include <stdio.h> // Pour afficher
|
||||||
#include "Horloge.h"
|
#include <Horloge.h>
|
||||||
#include "Accelerometre.h"
|
#include <Accelerometre.h>
|
||||||
#include "Girouette.h"
|
#include <Girouette.h>
|
||||||
#include "Servo.h"
|
#include <Servo.h>
|
||||||
#include "I2C.h"
|
#include <I2C.h>
|
||||||
|
|
||||||
|
|
||||||
//Variables
|
//Variables
|
||||||
int angleVentVar;
|
int angleVentVar;
|
||||||
|
|
@ -26,7 +25,7 @@ int main(void) {
|
||||||
// Initialisation des modules
|
// Initialisation des modules
|
||||||
initAccelo();
|
initAccelo();
|
||||||
initLacheur();
|
initLacheur();
|
||||||
for (int p = 0; p<LONGUEUR_MOY; p++){moyenne[p]=0xFFFF;} // Initialisation du tableau à 0xFFFF, pour ne pas qu'il se déclenche immediatement
|
for (int p = 0; p<LONGUEUR_MOY; p++){moyenne[p]=0xFFFF;} // Initialisation du tableau à 0xFFFF, pour ne pas déclencher immediatement
|
||||||
|
|
||||||
LocaliserZero();
|
LocaliserZero();
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
@ -38,10 +37,13 @@ int main(void) {
|
||||||
angleVoileVar = vent2voile(angleVentVar); // Transformer l'angle de girouette au l'angle des voiles souhaités
|
angleVoileVar = vent2voile(angleVentVar); // Transformer l'angle de girouette au l'angle des voiles souhaités
|
||||||
Servo_Moteur(angleVoileVar, TIM4, 3); // Faire bouger le moteur servo
|
Servo_Moteur(angleVoileVar, TIM4, 3); // Faire bouger le moteur servo
|
||||||
|
|
||||||
// Acceleromètre
|
//Moyenne Glissante
|
||||||
moyenne[i] = RecupAccelo()[2]; // Récuperation et ajout de la valeur plus récente dans le tableau dans la position i
|
moyenne[i] = RecupAccelo()[2]; // Récuperation et ajout de la valeur plus récente dans le tableau dans la position i
|
||||||
i++; if (i >= LONGUEUR_MOY) {i = 0;} // Géstion de la position i dans le tableau pour la moyenne glissante
|
i++;
|
||||||
sum = 0; for (int j = 0; j < LONGUEUR_MOY; j++){sum += moyenne[j];} moy = sum / LONGUEUR_MOY; // Calcul de la moyenne glissante
|
if (i >= LONGUEUR_MOY) {i = 0;} // Géstion de la position i dans le tableau pour la moyenne glissante
|
||||||
LacheVoile(ANGLE_LIMITE, (uint16_t) moy); // Lache la voile si le bateau dépasse l'angle limite
|
sum = 0;
|
||||||
|
for (int j = 0; j < LONGUEUR_MOY; j++){sum += moyenne[j];} moy = sum / LONGUEUR_MOY; // Calcul de la moyenne glissante
|
||||||
|
//LacheVoile(ANGLE_LIMITE, (uint16_t) moy); // Lache la voile si le bateau dépasse l'angle limite
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,88 +0,0 @@
|
||||||
<html>
|
|
||||||
<body>
|
|
||||||
<pre>
|
|
||||||
<h1>µVision Build Log</h1>
|
|
||||||
<h2>Tool Versions:</h2>
|
|
||||||
IDE-Version: µVision V5.43.1.0
|
|
||||||
Copyright (C) 2025 ARM Ltd and ARM Germany GmbH. All rights reserved.
|
|
||||||
License Information: Jens Kielland, University, LIC=----
|
|
||||||
|
|
||||||
Tool Versions:
|
|
||||||
Toolchain: MDK-Lite Version: 5.43.0.0
|
|
||||||
Toolchain Path: C:\users\klinx\AppData\Local\Keil_v5\ARM\ARMCLANG\Bin
|
|
||||||
C Compiler: ArmClang.exe V6.24
|
|
||||||
Assembler: Armasm.exe V6.24
|
|
||||||
Linker/Locator: ArmLink.exe V6.24
|
|
||||||
Library Manager: ArmAr.exe V6.24
|
|
||||||
Hex Converter: FromElf.exe V6.24
|
|
||||||
CPU DLL: SARMCM3.DLL V5.43.0.0
|
|
||||||
Dialog DLL: DARMSTM.DLL V1.69.1.0
|
|
||||||
Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.3.1.0
|
|
||||||
Dialog DLL: TARMSTM.DLL V1.67.1.0
|
|
||||||
|
|
||||||
<h2>Project:</h2>
|
|
||||||
C:\users\klinx\Documents\ecole\4A\MC\BE_VOILIER\ProjetVoilier.uvprojx
|
|
||||||
Project File Date: 12/15/2025
|
|
||||||
|
|
||||||
<h2>Output:</h2>
|
|
||||||
*** Using Compiler 'V6.24', folder: 'C:\users\klinx\AppData\Local\Keil_v5\ARM\ARMCLANG\Bin'
|
|
||||||
Rebuild target 'Simulation'
|
|
||||||
compiling principal.c...
|
|
||||||
compiling Accelerometre.c...
|
|
||||||
compiling Girouette.c...
|
|
||||||
compiling MyUart.c...
|
|
||||||
compiling Servo.c...
|
|
||||||
compiling DriverGPIO.c...
|
|
||||||
compiling Horloge.c...
|
|
||||||
compiling MYGPIO.c...
|
|
||||||
compiling MyTimer.c...
|
|
||||||
compiling PWM.c...
|
|
||||||
compiling Timer.c...
|
|
||||||
compiling I2C.c...
|
|
||||||
assembling startup_stm32f10x_md.s...
|
|
||||||
compiling system_stm32f10x.c...
|
|
||||||
linking...
|
|
||||||
.\Objects\ProjetVide.axf: Error: L6218E: Undefined symbol MySPI_Init (referred from accelerometre.o).
|
|
||||||
.\Objects\ProjetVide.axf: Error: L6218E: Undefined symbol MySPI_Clear_NSS (referred from accelerometre.o).
|
|
||||||
.\Objects\ProjetVide.axf: Error: L6218E: Undefined symbol MySPI_Send (referred from accelerometre.o).
|
|
||||||
.\Objects\ProjetVide.axf: Error: L6218E: Undefined symbol MySPI_Set_NSS (referred from accelerometre.o).
|
|
||||||
.\Objects\ProjetVide.axf: Error: L6218E: Undefined symbol MySPI_Read (referred from accelerometre.o).
|
|
||||||
Not enough information to list image symbols.
|
|
||||||
Not enough information to list load addresses in the image map.
|
|
||||||
Finished: 2 information, 0 warning and 5 error messages.
|
|
||||||
".\Objects\ProjetVide.axf" - 5 Error(s), 0 Warning(s).
|
|
||||||
|
|
||||||
<h2>Software Packages used:</h2>
|
|
||||||
|
|
||||||
Package Vendor: ARM
|
|
||||||
https://www.keil.com/pack/ARM.CMSIS.6.2.0.pack
|
|
||||||
ARM::CMSIS@6.2.0
|
|
||||||
CMSIS (Common Microcontroller Software Interface Standard)
|
|
||||||
* Component: CORE Version: 6.1.1
|
|
||||||
|
|
||||||
Package Vendor: Keil
|
|
||||||
https://www.keil.com/pack/Keil.STM32F1xx_DFP.2.4.1.pack
|
|
||||||
Keil::STM32F1xx_DFP@2.4.1
|
|
||||||
STMicroelectronics STM32F1 Series Device Support, Drivers and Examples
|
|
||||||
* Component: Startup Version: 1.0.0
|
|
||||||
|
|
||||||
<h2>Collection of Component include folders:</h2>
|
|
||||||
./RTE/Device/STM32F103RB
|
|
||||||
./RTE/_Simulation
|
|
||||||
C:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
|
|
||||||
C:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
|
|
||||||
|
|
||||||
<h2>Collection of Component Files used:</h2>
|
|
||||||
|
|
||||||
* Component: ARM::CMSIS:CORE@6.1.1
|
|
||||||
|
|
||||||
* Component: Keil::Device:Startup@1.0.0
|
|
||||||
Source file: Device/Source/ARM/startup_stm32f10x_md.s
|
|
||||||
Source file: Device/Source/system_stm32f10x.c
|
|
||||||
Include file: RTE_Driver/Config/RTE_Device.h
|
|
||||||
Source file: Device/Source/ARM/STM32F1xx_OPT.s
|
|
||||||
Target not created.
|
|
||||||
Build Time Elapsed: 00:00:32
|
|
||||||
</pre>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
--cpu Cortex-M3
|
|
||||||
".\objects\principal.o"
|
|
||||||
".\objects\accelerometre.o"
|
|
||||||
".\objects\girouette.o"
|
|
||||||
".\objects\myuart.o"
|
|
||||||
".\objects\servo.o"
|
|
||||||
".\objects\drivergpio.o"
|
|
||||||
".\objects\horloge.o"
|
|
||||||
".\objects\mygpio.o"
|
|
||||||
".\objects\mytimer.o"
|
|
||||||
".\objects\pwm.o"
|
|
||||||
".\objects\timer.o"
|
|
||||||
".\objects\i2c.o"
|
|
||||||
".\objects\startup_stm32f10x_md.o"
|
|
||||||
".\objects\system_stm32f10x.o"
|
|
||||||
--ro-base 0x08000000 --entry 0x08000000 --rw-base 0x20000000 --entry Reset_Handler --first __Vectors --strict --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
|
||||||
--info sizes --info totals --info unused --info veneers
|
|
||||||
--list ".\Listings\ProjetVide.map" -o .\Objects\ProjetVide.axf
|
|
||||||
|
|
@ -1,99 +0,0 @@
|
||||||
Dependencies for Project 'ProjetVoilier', Target 'Simulation': (DO NOT MODIFY !)
|
|
||||||
CompilerVersion: 6240000::V6.24::ARMCLANG
|
|
||||||
F (.\Application\principal.c)(0x69408BDC)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/principal.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\Horloge.h)(0x694083F8)
|
|
||||||
I (Services\Include\Accelerometre.h)(0x694083F8)
|
|
||||||
I (Services\Include\Girouette.h)(0x694083F8)
|
|
||||||
I (Services\Include\Servo.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\I2C.h)(0x694083F8)
|
|
||||||
F (.\Services\Source\Accelerometre.c)(0x69408A7D)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/accelerometre.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\Horloge.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\MySPI.h)(0x694083F8)
|
|
||||||
I (Services\Include\Accelerometre.h)(0x694083F8)
|
|
||||||
I (Services\Include\Servo.h)(0x694083F8)
|
|
||||||
F (.\Services\Source\Girouette.c)(0x69408AA1)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/girouette.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\Timer.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\DriverGPIO.h)(0x694083F8)
|
|
||||||
I (Services\Include\Girouette.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\PWM.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\MyUart.c)(0x69408C41)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/myuart.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\DriverGPIO.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\MyTimer.h)(0x694083F8)
|
|
||||||
F (.\Services\Source\Servo.c)(0x69408AB5)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/servo.o -MMD)
|
|
||||||
I (Services\Include\Servo.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\DriverGPIO.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\PWM.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\Horloge.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\DriverGPIO.c)(0x69408C3D)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/drivergpio.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\DriverGPIO.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\Horloge.c)(0x69408B5A)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/horloge.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\Horloge.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\MYGPIO.c)(0x69408AF9)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/mygpio.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\MYGPIO.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\MyTimer.c)(0x69408C31)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/mytimer.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\Timer.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\MyTimer.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\PWM.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\DriverGPIO.h)(0x694083F8)
|
|
||||||
I (Pilotes\Include\Horloge.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\PWM.c)(0x69408B46)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/pwm.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\PWM.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\Timer.c)(0x694088C4)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/timer.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\Timer.h)(0x694083F8)
|
|
||||||
F (.\Pilotes\Source\I2C.c)(0x69408B4C)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/i2c.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (Pilotes\Include\I2C.h)(0x694083F8)
|
|
||||||
F (RTE/Device/STM32F103RB/RTE_Device.h)(0x694083F8)()
|
|
||||||
F (RTE/Device/STM32F103RB/startup_stm32f10x_md.s)(0x694083F8)(--target=arm-arm-none-eabi -mcpu=cortex-m3 -masm=auto -Wa,armasm,--diag_suppress=A1950W -c
-gdwarf-4 -Wa,armasm,--pd,"__EVAL SETA 1" -I ./Pilotes/Source -I ./Pilotes/Include -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-Wa,armasm,--pd,"__UVISION_VERSION SETA 543" -Wa,armasm,--pd,"STM32F10X_MD SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1"
-o ./objects/startup_stm32f10x_md.o)
|
|
||||||
F (RTE/Device/STM32F103RB/system_stm32f10x.c)(0x694083F8)(-xc --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O0 -ffunction-sections -Wall -Wextra -Wno-packed -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./Pilotes/Include -I ./Pilotes/Source -I ./Services/Source -I ./Services/Include -I . -I ./Objects
-I./RTE/Device/STM32F103RB
-I./RTE/_Simulation
-IC:/users/klinx/AppData/Local/Arm/Packs/ARM/CMSIS/6.2.0/CMSIS/Core/Include
-IC:/users/klinx/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
-D__UVISION_VERSION="543" -DSTM32F10X_MD -D_RTE_
-o ./objects/system_stm32f10x.o -MMD)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h)(0x68F89DC5)
|
|
||||||
I (RTE\_Simulation\RTE_Components.h)(0x694083F8)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h)(0x68E55F9D)
|
|
||||||
I (C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h)(0x68F89DC5)
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/accelerometre.o: Services\Source\Accelerometre.c \
|
./objects/accelerometre.o: Services\Source\Accelerometre.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\Horloge.h Pilotes\Include\MySPI.h \
|
Pilotes\Include\Horloge.h Pilotes\Include\MySPI.h \
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/drivergpio.o: Pilotes\Source\DriverGPIO.c \
|
./objects/drivergpio.o: Pilotes\Source\DriverGPIO.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\DriverGPIO.h
|
Pilotes\Include\DriverGPIO.h
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/girouette.o: Services\Source\Girouette.c \
|
./objects/girouette.o: Services\Source\Girouette.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\Timer.h Pilotes\Include\DriverGPIO.h \
|
Pilotes\Include\Timer.h Pilotes\Include\DriverGPIO.h \
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/horloge.o: Pilotes\Source\Horloge.c \
|
./objects/horloge.o: Pilotes\Source\Horloge.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\Horloge.h
|
Pilotes\Include\Horloge.h
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/i2c.o: Pilotes\Source\I2C.c \
|
./objects/i2c.o: Pilotes\Source\I2C.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\I2C.h
|
Pilotes\Include\I2C.h
|
||||||
|
|
|
||||||
BIN
Objects/i2c.o
BIN
Objects/i2c.o
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/mygpio.o: Pilotes\Source\MYGPIO.c \
|
./objects/mygpio.o: Pilotes\Source\MYGPIO.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\MYGPIO.h
|
Pilotes\Include\MYGPIO.h
|
||||||
|
|
|
||||||
BIN
Objects/mygpio.o
BIN
Objects/mygpio.o
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/mytimer.o: Pilotes\Source\MyTimer.c \
|
./objects/mytimer.o: Pilotes\Source\MyTimer.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\Timer.h Pilotes\Include\MyTimer.h \
|
Pilotes\Include\Timer.h Pilotes\Include\MyTimer.h \
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/myuart.o: Pilotes\Source\MyUart.c \
|
./objects/myuart.o: Pilotes\Source\MyUart.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\DriverGPIO.h Pilotes\Include\MyTimer.h
|
Pilotes\Include\DriverGPIO.h Pilotes\Include\MyTimer.h
|
||||||
|
|
|
||||||
BIN
Objects/myuart.o
BIN
Objects/myuart.o
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/principal.o: Application\principal.c \
|
./objects/principal.o: Application\principal.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\Horloge.h Services\Include\Accelerometre.h \
|
Pilotes\Include\Horloge.h Services\Include\Accelerometre.h \
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/pwm.o: Pilotes\Source\PWM.c \
|
./objects/pwm.o: Pilotes\Source\PWM.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\PWM.h
|
Pilotes\Include\PWM.h
|
||||||
|
|
|
||||||
BIN
Objects/pwm.o
BIN
Objects/pwm.o
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/servo.o: Services\Source\Servo.c Services\Include\Servo.h \
|
./objects/servo.o: Services\Source\Servo.c Services\Include\Servo.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\DriverGPIO.h Pilotes\Include\PWM.h \
|
Pilotes\Include\DriverGPIO.h Pilotes\Include\PWM.h \
|
||||||
|
|
|
||||||
BIN
Objects/servo.o
BIN
Objects/servo.o
Binary file not shown.
Binary file not shown.
|
|
@ -1,5 +1,5 @@
|
||||||
./objects/system_stm32f10x.o: RTE\Device\STM32F103RB\system_stm32f10x.c \
|
./objects/system_stm32f10x.o: RTE\Device\STM32F103RB\system_stm32f10x.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
||||||
./objects/timer.o: Pilotes\Source\Timer.c \
|
./objects/timer.o: Pilotes\Source\Timer.c \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\stm32f10x.h \
|
||||||
RTE\_Simulation\RTE_Components.h \
|
RTE\_Reel\RTE_Components.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\ARM\CMSIS\6.2.0\CMSIS\Core\Include\core_cm3.h \
|
||||||
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
C:\users\klinx\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.1\Device\Include\system_stm32f10x.h \
|
||||||
Pilotes\Include\Timer.h
|
Pilotes\Include\Timer.h
|
||||||
|
|
|
||||||
BIN
Objects/timer.o
BIN
Objects/timer.o
Binary file not shown.
|
|
@ -75,7 +75,7 @@
|
||||||
<OPTFL>
|
<OPTFL>
|
||||||
<tvExp>1</tvExp>
|
<tvExp>1</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<IsCurrentTarget>0</IsCurrentTarget>
|
<IsCurrentTarget>1</IsCurrentTarget>
|
||||||
</OPTFL>
|
</OPTFL>
|
||||||
<CpuCode>18</CpuCode>
|
<CpuCode>18</CpuCode>
|
||||||
<DebugOpt>
|
<DebugOpt>
|
||||||
|
|
@ -263,7 +263,7 @@
|
||||||
<OPTFL>
|
<OPTFL>
|
||||||
<tvExp>1</tvExp>
|
<tvExp>1</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<IsCurrentTarget>1</IsCurrentTarget>
|
<IsCurrentTarget>0</IsCurrentTarget>
|
||||||
</OPTFL>
|
</OPTFL>
|
||||||
<CpuCode>18</CpuCode>
|
<CpuCode>18</CpuCode>
|
||||||
<DebugOpt>
|
<DebugOpt>
|
||||||
|
|
@ -525,7 +525,7 @@
|
||||||
<GroupNumber>3</GroupNumber>
|
<GroupNumber>3</GroupNumber>
|
||||||
<FileNumber>11</FileNumber>
|
<FileNumber>11</FileNumber>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<tvExp>1</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>.\Pilotes\Source\Timer.c</PathWithFileName>
|
<PathWithFileName>.\Pilotes\Source\Timer.c</PathWithFileName>
|
||||||
|
|
@ -537,7 +537,7 @@
|
||||||
<GroupNumber>3</GroupNumber>
|
<GroupNumber>3</GroupNumber>
|
||||||
<FileNumber>12</FileNumber>
|
<FileNumber>12</FileNumber>
|
||||||
<FileType>1</FileType>
|
<FileType>1</FileType>
|
||||||
<tvExp>1</tvExp>
|
<tvExp>0</tvExp>
|
||||||
<tvExpOptDlg>0</tvExpOptDlg>
|
<tvExpOptDlg>0</tvExpOptDlg>
|
||||||
<bDave2>0</bDave2>
|
<bDave2>0</bDave2>
|
||||||
<PathWithFileName>.\Pilotes\Source\I2C.c</PathWithFileName>
|
<PathWithFileName>.\Pilotes\Source\I2C.c</PathWithFileName>
|
||||||
|
|
|
||||||
|
|
@ -468,7 +468,7 @@
|
||||||
<TargetName>Simulation</TargetName>
|
<TargetName>Simulation</TargetName>
|
||||||
<ToolsetNumber>0x4</ToolsetNumber>
|
<ToolsetNumber>0x4</ToolsetNumber>
|
||||||
<ToolsetName>ARM-ADS</ToolsetName>
|
<ToolsetName>ARM-ADS</ToolsetName>
|
||||||
<pCCUsed>6240000::V6.24::ARMCLANG</pCCUsed>
|
<pCCUsed>6220000::V6.22::ARMCLANG</pCCUsed>
|
||||||
<uAC6>1</uAC6>
|
<uAC6>1</uAC6>
|
||||||
<TargetOption>
|
<TargetOption>
|
||||||
<TargetCommonOption>
|
<TargetCommonOption>
|
||||||
|
|
@ -798,7 +798,7 @@
|
||||||
<MiscControls></MiscControls>
|
<MiscControls></MiscControls>
|
||||||
<Define></Define>
|
<Define></Define>
|
||||||
<Undefine></Undefine>
|
<Undefine></Undefine>
|
||||||
<IncludePath>.\Pilotes\Include;.\Pilotes\Source;.\Services\Source;.\Services\Include;.;.\Objects</IncludePath>
|
<IncludePath></IncludePath>
|
||||||
</VariousControls>
|
</VariousControls>
|
||||||
</Cads>
|
</Cads>
|
||||||
<Aads>
|
<Aads>
|
||||||
|
|
@ -816,7 +816,7 @@
|
||||||
<MiscControls></MiscControls>
|
<MiscControls></MiscControls>
|
||||||
<Define></Define>
|
<Define></Define>
|
||||||
<Undefine></Undefine>
|
<Undefine></Undefine>
|
||||||
<IncludePath>.\Pilotes\Source;.\Pilotes\Include;.\Services\Source;.\Services\Include;.;.\Objects</IncludePath>
|
<IncludePath></IncludePath>
|
||||||
</VariousControls>
|
</VariousControls>
|
||||||
</Aads>
|
</Aads>
|
||||||
<LDads>
|
<LDads>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue