Merge remote-tracking branch 'origin/girouette'
# Conflicts: # FileInclude/MyTimer.c # Listings/Projet1_Simulation.map # Listings/startup_stm32f10x_md.lst # Objects/Projet1_Réel.dep # Objects/Projet1_SImulation.dep # Objects/Projet1_Simulation.axf # Objects/Projet1_Simulation.build_log.htm # Objects/Projet1_Simulation.htm # Objects/Projet1_Simulation.lnp # Objects/driver_gpio.crf # Objects/driver_gpio.d # Objects/driver_gpio.o # Objects/main.crf # Objects/main.d # Objects/main.o # Objects/myadc.crf # Objects/myadc.d # Objects/myadc.o # Objects/mytimer.crf # Objects/mytimer.d # Objects/mytimer.o # Objects/startup_stm32f10x_md.o # Objects/system_stm32f10x.crf # Objects/system_stm32f10x.d # Objects/system_stm32f10x.o # Projet1.uvoptx # Projet1.uvprojx # RTE/Device/STM32F103RB/system_stm32f10x.c # Sources/main.c
This commit is contained in:
commit
4a8421eb37
40 changed files with 3721 additions and 3729 deletions
62
FileInclude/MyGirouette.c
Normal file
62
FileInclude/MyGirouette.c
Normal file
|
@ -0,0 +1,62 @@
|
|||
#include "MyGirouette.h"
|
||||
#include "Driver_GPIO.h"
|
||||
#include "MyTimer.h"
|
||||
|
||||
int x = 0;
|
||||
|
||||
void EXTI0_IRQHandler(void) {
|
||||
x++;
|
||||
//EXTI->PR &= ~(1<<0) ;
|
||||
EXTI->PR |= (1<<0) ;
|
||||
}
|
||||
|
||||
|
||||
void Init_Girouette(void){
|
||||
|
||||
MyGPIO_Struct_TypeDef GPIOA0={
|
||||
GPIOA,
|
||||
0,
|
||||
In_Floating
|
||||
};
|
||||
MyGPIO_Struct_TypeDef GPIOA1={
|
||||
GPIOA,
|
||||
1,
|
||||
In_Floating
|
||||
};
|
||||
MyGPIO_Struct_TypeDef GPIOB0={
|
||||
GPIOB,
|
||||
0,
|
||||
In_Floating
|
||||
};
|
||||
|
||||
// Configuration du timer
|
||||
/* MyTimer_Struct_TypeDef TIM;
|
||||
TIM.Timer = TIM2;
|
||||
TIM.ARR = 360*2;
|
||||
TIM.PSC = 0;
|
||||
|
||||
MyTimer_Base_Init(&TIM);
|
||||
|
||||
TIM2->CCMR1 |= 0x1 << 0; //CH1
|
||||
TIM2->CCMR1 |= 0x1 << 8; //CH2
|
||||
|
||||
TIM2->SMCR |= 0x1 << 0; // Capture Mode : 1 => seulement les fronts montants 2 => seulement les fronts descendants 3 => les 2
|
||||
//TIM2->CCMR1 |= 0x1 << 2;
|
||||
*/
|
||||
// 0 Reset
|
||||
NVIC->ISER[0] |= 1 << 6;
|
||||
NVIC->IP[6] = 1<<4;
|
||||
MyGPIO_Init(&GPIOB0);
|
||||
RCC->APB2ENR |= RCC_APB2ENR_AFIOEN ;
|
||||
AFIO->EXTICR[0] |= 0x0001; // PB0 AFIO
|
||||
EXTI->RTSR |= 1 <<0 ; // rising
|
||||
EXTI->IMR |= 1<<0 ; //mask
|
||||
|
||||
|
||||
/* MyGPIO_Init(&GPIOA0);
|
||||
MyGPIO_Init(&GPIOA1);
|
||||
|
||||
MyTimer_Base_Start(TIM2);*/
|
||||
}
|
||||
|
||||
uint16_t Get_Angle(void){return (TIM2 -> CNT)/2;}
|
8
FileInclude/MyGirouette.h
Normal file
8
FileInclude/MyGirouette.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef __MYGIROUETTE_H
|
||||
#define __MYGIROUETTE_H
|
||||
#include "stm32f10x.h"
|
||||
|
||||
void Init_Girouette(void);
|
||||
uint16_t Get_Angle(void);
|
||||
|
||||
#endif
|
|
@ -110,11 +110,6 @@ void MyTimer_PWM(TIM_TypeDef * Timer, char Channel){
|
|||
MyGPIO_Struct_TypeDef gpio;
|
||||
gpio.GPIO_Conf = AltOut_Ppull;
|
||||
|
||||
// Activation la capture du compteur (CNT) dans le registre capture register
|
||||
Timer->CCER |= TIM_CCER_CC1E;
|
||||
|
||||
|
||||
|
||||
switch ((int)Channel) { // on cast le timer pour le comparer au pointeur des timers existants
|
||||
/* ==============
|
||||
=== Channel 1 ===
|
||||
|
@ -125,6 +120,7 @@ void MyTimer_PWM(TIM_TypeDef * Timer, char Channel){
|
|||
Timer->CCMR1 |= TIM_CCMR1_OC1M_1 | TIM_CCMR1_OC1M_2;
|
||||
Timer->CCMR1 &= ~(TIM_CCMR1_CC1S | TIM_CCMR1_CC1S); // mettre 00
|
||||
Timer->CCR1 = 0;
|
||||
Timer->CCER |= TIM_CCER_CC1E;
|
||||
|
||||
switch ((int)Timer) { // on cast le timer pour le comparer au pointeur des timers existants
|
||||
case (int)TIM1 :
|
||||
|
@ -161,6 +157,7 @@ void MyTimer_PWM(TIM_TypeDef * Timer, char Channel){
|
|||
Timer->CCMR1 |= TIM_CCMR1_OC2M_1| TIM_CCMR1_OC2M_2;
|
||||
Timer->CCMR1 &= ~(TIM_CCMR1_CC2S | TIM_CCMR1_CC2S); // mettre 00
|
||||
Timer->CCR2 = 0;
|
||||
Timer->CCER |= TIM_CCER_CC2E;
|
||||
|
||||
switch ((int)Timer) { // on cast le timer pour le comparer au pointeur des timers existants
|
||||
case (int)TIM1 :
|
||||
|
@ -192,10 +189,11 @@ void MyTimer_PWM(TIM_TypeDef * Timer, char Channel){
|
|||
============== */
|
||||
case 3 :
|
||||
|
||||
// On veut mettre les bits 4 <20> 6 de OC2M <20> 110 (PWM mode 1 p 349)
|
||||
Timer->CCMR2 |= TIM_CCMR1_OC1M_1 | TIM_CCMR1_OC1M_2;
|
||||
Timer->CCMR2 &= ~(TIM_CCMR1_CC1S | TIM_CCMR1_CC1S); // mettre 00
|
||||
// On veut mettre les bits 4 <20> 6 de OC2M <20> 110 (PWM mode 1 p 415)
|
||||
Timer->CCMR2 |= TIM_CCMR2_OC3M_1 | TIM_CCMR2_OC3M_2;
|
||||
Timer->CCMR2 &= ~(TIM_CCMR2_CC3S | TIM_CCMR2_CC3S); // mettre 00
|
||||
Timer->CCR3 = 0;
|
||||
Timer->CCER |= TIM_CCER_CC3E;
|
||||
|
||||
switch ((int)Timer) { // on cast le timer pour le comparer au pointeur des timers existants
|
||||
case (int)TIM1 :
|
||||
|
@ -226,10 +224,11 @@ void MyTimer_PWM(TIM_TypeDef * Timer, char Channel){
|
|||
============== */
|
||||
case 4 :
|
||||
|
||||
// On veut mettre les bits 12 <20> 14 de OC2M <20> 110 (PWM mode 1 p 349)
|
||||
Timer->CCMR2 |= TIM_CCMR1_OC2M_1 | TIM_CCMR1_OC2M_2;
|
||||
Timer->CCMR2 &= ~(TIM_CCMR1_CC2S | TIM_CCMR1_CC2S); // mettre 00
|
||||
// On veut mettre les bits 12 <20> 14 de OC2M <20> 110 (PWM mode 1 p 415)
|
||||
Timer->CCMR2 |= TIM_CCMR2_OC4M_1 | TIM_CCMR2_OC4M_2;
|
||||
Timer->CCMR2 &= ~(TIM_CCMR2_CC4S | TIM_CCMR2_CC4S); // mettre 00
|
||||
Timer->CCR4 = 0;
|
||||
Timer->CCER |= TIM_CCER_CC4E;
|
||||
|
||||
switch ((int)Timer) { // on cast le timer pour le comparer au pointeur des timers existants
|
||||
case (int)TIM1 :
|
||||
|
|
13
FileInclude/MyVoile.h
Normal file
13
FileInclude/MyVoile.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#ifndef MYVOILE_H
|
||||
#define MYVOILE_H
|
||||
#include "stm32f10x.h"
|
||||
#include "MyTimer.h"
|
||||
|
||||
#define M (0.1-0.05)/(90.0*2.0) // Coefficient de la pente pour la fonction affine
|
||||
|
||||
void MyVoile_Init(void);
|
||||
|
||||
void Set_Voile(uint16_t angle);
|
||||
|
||||
#endif
|
||||
|
|
@ -4,53 +4,42 @@ Component: ARM Compiler 5.06 update 7 (build 960) Tool: armlink [4d3601]
|
|||
|
||||
Section Cross References
|
||||
|
||||
main.o(i.f) refers to plateau.o(i.Set_Moteur_Plateau) for Set_Moteur_Plateau
|
||||
main.o(i.f) refers to main.o(.data) for droite
|
||||
main.o(i.main) refers to telecommande.o(i.Init_USART) for Init_USART
|
||||
main.o(i.main) refers to batterie.o(i.Init_Batterie) for Init_Batterie
|
||||
main.o(i.main) refers to batterie.o(i.Get_Batterie) for Get_Batterie
|
||||
main.o(i.main) refers to telecommande.o(i.Send_Message) for Send_Message
|
||||
main.o(i.main) refers to main.o(.data) for bat
|
||||
main.o(i.Callback) refers to myadc.o(i.startADC) for startADC
|
||||
main.o(i.Callback) refers to myadc.o(i.read) for read
|
||||
main.o(i.Callback) refers to fflti.o(.text) for __aeabi_i2f
|
||||
main.o(i.Callback) refers to main.o(.data) for a
|
||||
main.o(i.main) refers to mygirouette.o(i.Init_Girouette) for Init_Girouette
|
||||
mytimer.o(i.MyTimer_ActiveIT) refers to mytimer.o(.data) for ptr1
|
||||
mytimer.o(i.MyTimer_PWM) refers to driver_gpio.o(i.MyGPIO_Init) for MyGPIO_Init
|
||||
mytimer.o(i.TIM1_UP_IRQHandler) refers to mytimer.o(.data) for ptr1
|
||||
mytimer.o(i.TIM2_IRQHandler) refers to mytimer.o(.data) for ptr2
|
||||
mytimer.o(i.TIM3_IRQHandler) refers to mytimer.o(.data) for ptr3
|
||||
mytimer.o(i.TIM4_IRQHandler) refers to mytimer.o(.data) for ptr4
|
||||
myadc.o(i.read) refers to myadc.o(i.startADC) for startADC
|
||||
plateau.o(i.Init_Plateau) refers to mytimer.o(i.MyTimer_Base_Init) for MyTimer_Base_Init
|
||||
plateau.o(i.Init_Plateau) refers to driver_gpio.o(i.MyGPIO_Init) for MyGPIO_Init
|
||||
plateau.o(i.Init_Plateau) refers to mytimer.o(i.MyTimer_Base_Start) for MyTimer_Base_Start
|
||||
plateau.o(i.Init_Plateau) refers to mytimer.o(i.MyTimer_PWM) for MyTimer_PWM
|
||||
plateau.o(i.Init_Plateau) refers to plateau.o(.data) for Data
|
||||
plateau.o(i.Init_Plateau) refers to plateau.o(.bss) for GPIOA5
|
||||
plateau.o(i.Set_Direction) refers to driver_gpio.o(i.MyGPIO_Reset) for MyGPIO_Reset
|
||||
plateau.o(i.Set_Direction) refers to driver_gpio.o(i.MyGPIO_Set) for MyGPIO_Set
|
||||
plateau.o(i.Set_Direction) refers to plateau.o(.bss) for GPIOA5
|
||||
plateau.o(i.Set_Moteur_Plateau) refers to plateau.o(i.Init_Plateau) for Init_Plateau
|
||||
plateau.o(i.Set_Moteur_Plateau) refers to plateau.o(i.Set_Direction) for Set_Direction
|
||||
plateau.o(i.Set_Moteur_Plateau) refers to plateau.o(i.Set_Vitesse) for Set_Vitesse
|
||||
plateau.o(i.Set_Vitesse) refers to mytimer.o(i.Set_PWM_PRCT) for Set_PWM_PRCT
|
||||
plateau.o(i.Set_Vitesse) refers to plateau.o(.data) for Data
|
||||
telecommande.o(i.Init_Message_Reception) refers to telecommande.o(.data) for ptr
|
||||
telecommande.o(i.Init_USART) refers to driver_gpio.o(i.MyGPIO_Init) for MyGPIO_Init
|
||||
telecommande.o(i.Init_USART) refers to telecommande.o(.bss) for GPIOA10
|
||||
telecommande.o(i.Send_Message) refers to telecommande.o(i.Send_Char) for Send_Char
|
||||
telecommande.o(i.USART1_IRQHandler) refers to telecommande.o(.data) for ptr
|
||||
telecommande.o(.data) refers to telecommande.o(.bss) for USART
|
||||
batterie.o(i.Get_Batterie) refers to myadc.o(i.read) for read
|
||||
batterie.o(i.Get_Batterie) refers to batterie.o(.data) for nivBatterie
|
||||
batterie.o(i.Init_Batterie) refers to driver_gpio.o(i.MyGPIO_Init) for MyGPIO_Init
|
||||
batterie.o(i.Init_Batterie) refers to myadc.o(i.initADC) for initADC
|
||||
batterie.o(i.Init_Batterie) refers to myadc.o(i.startADC) for startADC
|
||||
batterie.o(i.Init_Batterie) refers to batterie.o(.bss) for GPIOC0
|
||||
mygirouette.o(i.EXTI0_IRQHandler) refers to mygirouette.o(.data) for x
|
||||
mygirouette.o(i.Init_Girouette) refers to driver_gpio.o(i.MyGPIO_Init) for MyGPIO_Init
|
||||
mygirouette.o(i.Init_Girouette) refers to mygirouette.o(.constdata) for .constdata
|
||||
myvoile.o(i.MyVoile_Init) refers to mytimer.o(i.MyTimer_Base_Init) for MyTimer_Base_Init
|
||||
myvoile.o(i.MyVoile_Init) refers to mytimer.o(i.MyTimer_PWM) for MyTimer_PWM
|
||||
myvoile.o(i.MyVoile_Init) refers to mytimer.o(i.MyTimer_Base_Start) for MyTimer_Base_Start
|
||||
myvoile.o(i.MyVoile_Init) refers to myvoile.o(.constdata) for .constdata
|
||||
myvoile.o(i.Set_Voile) refers to dfltui.o(.text) for __aeabi_ui2d
|
||||
myvoile.o(i.Set_Voile) refers to cdcmple.o(.text) for __aeabi_cdcmple
|
||||
myvoile.o(i.Set_Voile) refers to dmul.o(.text) for __aeabi_dmul
|
||||
myvoile.o(i.Set_Voile) refers to ddiv.o(.text) for __aeabi_ddiv
|
||||
myvoile.o(i.Set_Voile) refers to dadd.o(.text) for __aeabi_drsub
|
||||
myvoile.o(i.Set_Voile) refers to d2f.o(.text) for __aeabi_d2f
|
||||
myvoile.o(i.Set_Voile) refers to mytimer.o(i.Get_Max_Duty) for Get_Max_Duty
|
||||
myvoile.o(i.Set_Voile) refers to ffltui.o(.text) for __aeabi_ui2f
|
||||
myvoile.o(i.Set_Voile) refers to fmul.o(.text) for __aeabi_fmul
|
||||
myvoile.o(i.Set_Voile) refers to ffixui.o(.text) for __aeabi_f2uiz
|
||||
myvoile.o(i.Set_Voile) refers to mytimer.o(i.Set_Duty_Cycle) for Set_Duty_Cycle
|
||||
startup_stm32f10x_md.o(RESET) refers to startup_stm32f10x_md.o(STACK) for __initial_sp
|
||||
startup_stm32f10x_md.o(RESET) refers to startup_stm32f10x_md.o(.text) for Reset_Handler
|
||||
startup_stm32f10x_md.o(RESET) refers to mygirouette.o(i.EXTI0_IRQHandler) for EXTI0_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to mytimer.o(i.TIM1_UP_IRQHandler) for TIM1_UP_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to mytimer.o(i.TIM2_IRQHandler) for TIM2_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to mytimer.o(i.TIM3_IRQHandler) for TIM3_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to mytimer.o(i.TIM4_IRQHandler) for TIM4_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to telecommande.o(i.USART1_IRQHandler) for USART1_IRQHandler
|
||||
startup_stm32f10x_md.o(.text) refers to system_stm32f10x.o(i.SystemInit) for SystemInit
|
||||
startup_stm32f10x_md.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
|
||||
system_stm32f10x.o(i.SetSysClock) refers to system_stm32f10x.o(i.SetSysClockTo72) for SetSysClockTo72
|
||||
|
@ -64,6 +53,25 @@ Section Cross References
|
|||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk
|
||||
fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
|
||||
dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
|
||||
dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
|
||||
dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
|
||||
ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
ddiv.o(.text) refers to depilogue.o(.text) for _double_round
|
||||
fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue
|
||||
ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue
|
||||
dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue
|
||||
ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
d2f.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
d2f.o(.text) refers to fepilogue.o(.text) for _float_round
|
||||
entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
|
||||
entry2.o(.ARM.Collect$$$$00002712) refers to startup_stm32f10x_md.o(STACK) for __initial_sp
|
||||
entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32f10x_md.o(STACK) for __initial_sp
|
||||
|
@ -71,6 +79,8 @@ Section Cross References
|
|||
entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
|
||||
entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main
|
||||
entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main
|
||||
depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
|
||||
depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
|
||||
init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
|
||||
|
||||
|
||||
|
@ -81,7 +91,26 @@ Removing Unused input sections from the image.
|
|||
Removing main.o(.rev16_text), (4 bytes).
|
||||
Removing main.o(.revsh_text), (4 bytes).
|
||||
Removing main.o(.rrx_text), (6 bytes).
|
||||
Removing main.o(i.f), (64 bytes).
|
||||
Removing main.o(i.Callback), (28 bytes).
|
||||
Removing main.o(.data), (12 bytes).
|
||||
Removing mytimer.o(.rev16_text), (4 bytes).
|
||||
Removing mytimer.o(.revsh_text), (4 bytes).
|
||||
Removing mytimer.o(.rrx_text), (6 bytes).
|
||||
Removing mytimer.o(i.Get_Max_Duty), (6 bytes).
|
||||
Removing mytimer.o(i.Get_Timer_Count), (6 bytes).
|
||||
Removing mytimer.o(i.MyTimer_ActiveIT), (176 bytes).
|
||||
Removing mytimer.o(i.MyTimer_Base_Init), (108 bytes).
|
||||
Removing mytimer.o(i.MyTimer_Base_Start), (10 bytes).
|
||||
Removing mytimer.o(i.MyTimer_Base_Stop), (10 bytes).
|
||||
Removing mytimer.o(i.MyTimer_PWM), (488 bytes).
|
||||
Removing mytimer.o(i.Set_Duty_Cycle), (40 bytes).
|
||||
Removing mytimer.o(i.Set_PWM_PRCT), (56 bytes).
|
||||
Removing myadc.o(.rev16_text), (4 bytes).
|
||||
Removing myadc.o(.revsh_text), (4 bytes).
|
||||
Removing myadc.o(.rrx_text), (6 bytes).
|
||||
Removing myadc.o(i.initADC), (60 bytes).
|
||||
Removing myadc.o(i.read), (32 bytes).
|
||||
Removing myadc.o(i.startADC), (20 bytes).
|
||||
Removing driver_gpio.o(.rev16_text), (4 bytes).
|
||||
Removing driver_gpio.o(.revsh_text), (4 bytes).
|
||||
Removing driver_gpio.o(.rrx_text), (6 bytes).
|
||||
|
@ -89,44 +118,36 @@ Removing Unused input sections from the image.
|
|||
Removing driver_gpio.o(i.MyGPIO_Reset), (14 bytes).
|
||||
Removing driver_gpio.o(i.MyGPIO_Set), (12 bytes).
|
||||
Removing driver_gpio.o(i.MyGPIO_Toggle), (12 bytes).
|
||||
Removing mytimer.o(.rev16_text), (4 bytes).
|
||||
Removing mytimer.o(.revsh_text), (4 bytes).
|
||||
Removing mytimer.o(.rrx_text), (6 bytes).
|
||||
Removing mytimer.o(i.Get_Max_Duty), (6 bytes).
|
||||
Removing mytimer.o(i.MyTimer_ActiveIT), (176 bytes).
|
||||
Removing mytimer.o(i.MyTimer_Base_Init), (108 bytes).
|
||||
Removing mytimer.o(i.MyTimer_Base_Start), (10 bytes).
|
||||
Removing mytimer.o(i.MyTimer_Base_Stop), (10 bytes).
|
||||
Removing mytimer.o(i.MyTimer_PWM), (464 bytes).
|
||||
Removing mytimer.o(i.Set_Duty_Cycle), (40 bytes).
|
||||
Removing mytimer.o(i.Set_PWM_PRCT), (56 bytes).
|
||||
Removing myadc.o(.rev16_text), (4 bytes).
|
||||
Removing myadc.o(.revsh_text), (4 bytes).
|
||||
Removing myadc.o(.rrx_text), (6 bytes).
|
||||
Removing plateau.o(.rev16_text), (4 bytes).
|
||||
Removing plateau.o(.revsh_text), (4 bytes).
|
||||
Removing plateau.o(.rrx_text), (6 bytes).
|
||||
Removing plateau.o(i.Init_Plateau), (124 bytes).
|
||||
Removing plateau.o(i.Set_Direction), (40 bytes).
|
||||
Removing plateau.o(i.Set_Moteur_Plateau), (24 bytes).
|
||||
Removing plateau.o(i.Set_Vitesse), (32 bytes).
|
||||
Removing plateau.o(.bss), (24 bytes).
|
||||
Removing plateau.o(.data), (16 bytes).
|
||||
Removing telecommande.o(.rev16_text), (4 bytes).
|
||||
Removing telecommande.o(.revsh_text), (4 bytes).
|
||||
Removing telecommande.o(.rrx_text), (6 bytes).
|
||||
Removing telecommande.o(i.Init_Message_Reception), (56 bytes).
|
||||
Removing batterie.o(.rev16_text), (4 bytes).
|
||||
Removing batterie.o(.revsh_text), (4 bytes).
|
||||
Removing batterie.o(.rrx_text), (6 bytes).
|
||||
Removing mygirouette.o(.rev16_text), (4 bytes).
|
||||
Removing mygirouette.o(.revsh_text), (4 bytes).
|
||||
Removing mygirouette.o(.rrx_text), (6 bytes).
|
||||
Removing mygirouette.o(i.Get_Angle), (14 bytes).
|
||||
Removing myvoile.o(.rev16_text), (4 bytes).
|
||||
Removing myvoile.o(.revsh_text), (4 bytes).
|
||||
Removing myvoile.o(.rrx_text), (6 bytes).
|
||||
Removing myvoile.o(i.MyVoile_Init), (40 bytes).
|
||||
Removing myvoile.o(i.Set_Voile), (236 bytes).
|
||||
Removing myvoile.o(.constdata), (8 bytes).
|
||||
Removing startup_stm32f10x_md.o(HEAP), (512 bytes).
|
||||
Removing system_stm32f10x.o(.rev16_text), (4 bytes).
|
||||
Removing system_stm32f10x.o(.revsh_text), (4 bytes).
|
||||
Removing system_stm32f10x.o(.rrx_text), (6 bytes).
|
||||
Removing system_stm32f10x.o(i.SystemCoreClockUpdate), (164 bytes).
|
||||
Removing system_stm32f10x.o(.data), (20 bytes).
|
||||
Removing fmul.o(.text), (100 bytes).
|
||||
Removing dadd.o(.text), (334 bytes).
|
||||
Removing dmul.o(.text), (228 bytes).
|
||||
Removing ddiv.o(.text), (222 bytes).
|
||||
Removing fflti.o(.text), (18 bytes).
|
||||
Removing ffltui.o(.text), (10 bytes).
|
||||
Removing dfltui.o(.text), (26 bytes).
|
||||
Removing ffixui.o(.text), (40 bytes).
|
||||
Removing cdcmple.o(.text), (48 bytes).
|
||||
Removing d2f.o(.text), (56 bytes).
|
||||
Removing fepilogue.o(.text), (110 bytes).
|
||||
Removing depilogue.o(.text), (186 bytes).
|
||||
|
||||
47 unused section(s) (total 2108 bytes) removed from the image.
|
||||
58 unused section(s) (total 3572 bytes) removed from the image.
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
@ -136,38 +157,52 @@ Image Symbol Table
|
|||
|
||||
Symbol Name Value Ov Type Size Object(Section)
|
||||
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry12b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry12a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
|
||||
FileInclude\Batterie.c 0x00000000 Number 0 batterie.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry12b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry12a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
|
||||
../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
|
||||
../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
|
||||
../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
|
||||
../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE
|
||||
../fplib/microlib/d2f.c 0x00000000 Number 0 d2f.o ABSOLUTE
|
||||
../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE
|
||||
../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE
|
||||
../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE
|
||||
../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE
|
||||
../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE
|
||||
../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE
|
||||
../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE
|
||||
../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE
|
||||
../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE
|
||||
../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE
|
||||
FileInclude\Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
FileInclude\MyADC.c 0x00000000 Number 0 myadc.o ABSOLUTE
|
||||
FileInclude\MyGirouette.c 0x00000000 Number 0 mygirouette.o ABSOLUTE
|
||||
FileInclude\MyTimer.c 0x00000000 Number 0 mytimer.o ABSOLUTE
|
||||
FileInclude\Plateau.c 0x00000000 Number 0 plateau.o ABSOLUTE
|
||||
FileInclude\Telecommande.c 0x00000000 Number 0 telecommande.o ABSOLUTE
|
||||
FileInclude\\Batterie.c 0x00000000 Number 0 batterie.o ABSOLUTE
|
||||
FileInclude\\Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
FileInclude\\MyADC.c 0x00000000 Number 0 myadc.o ABSOLUTE
|
||||
FileInclude\\MyGirouette.c 0x00000000 Number 0 mygirouette.o ABSOLUTE
|
||||
FileInclude\\MyTimer.c 0x00000000 Number 0 mytimer.o ABSOLUTE
|
||||
FileInclude\\Plateau.c 0x00000000 Number 0 plateau.o ABSOLUTE
|
||||
FileInclude\\Telecommande.c 0x00000000 Number 0 telecommande.o ABSOLUTE
|
||||
MyVoile.c 0x00000000 Number 0 myvoile.o ABSOLUTE
|
||||
MyVoile.c 0x00000000 Number 0 myvoile.o ABSOLUTE
|
||||
RTE\Device\STM32F103RB\startup_stm32f10x_md.s 0x00000000 Number 0 startup_stm32f10x_md.o ABSOLUTE
|
||||
RTE\Device\STM32F103RB\system_stm32f10x.c 0x00000000 Number 0 system_stm32f10x.o ABSOLUTE
|
||||
RTE\\Device\\STM32F103RB\\system_stm32f10x.c 0x00000000 Number 0 system_stm32f10x.o ABSOLUTE
|
||||
Sources\\main.c 0x00000000 Number 0 main.o ABSOLUTE
|
||||
Sources\main.c 0x00000000 Number 0 main.o ABSOLUTE
|
||||
U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
U:\\Documents\\4ir\\S1\\Microcontroleur\\Drivers\\FileInclude\\Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE
|
||||
dc.s 0x00000000 Number 0 dc.o ABSOLUTE
|
||||
handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE
|
||||
init.s 0x00000000 Number 0 init.o ABSOLUTE
|
||||
|
@ -185,42 +220,32 @@ Image Symbol Table
|
|||
__lit__00000000 0x08000100 Data 4 entry2.o(.ARM.Collect$$$$00002712)
|
||||
.text 0x08000104 Section 36 startup_stm32f10x_md.o(.text)
|
||||
.text 0x08000128 Section 36 init.o(.text)
|
||||
i.Get_Batterie 0x0800014c Section 0 batterie.o(i.Get_Batterie)
|
||||
i.Init_Batterie 0x08000174 Section 0 batterie.o(i.Init_Batterie)
|
||||
i.Init_USART 0x0800019c Section 0 telecommande.o(i.Init_USART)
|
||||
i.MyGPIO_Init 0x08000238 Section 0 driver_gpio.o(i.MyGPIO_Init)
|
||||
i.Send_Char 0x080002ec Section 0 telecommande.o(i.Send_Char)
|
||||
i.Send_Message 0x08000308 Section 0 telecommande.o(i.Send_Message)
|
||||
i.SetSysClock 0x08000320 Section 0 system_stm32f10x.o(i.SetSysClock)
|
||||
SetSysClock 0x08000321 Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
|
||||
i.SetSysClockTo72 0x08000328 Section 0 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
SetSysClockTo72 0x08000329 Thumb Code 214 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
i.SystemInit 0x08000408 Section 0 system_stm32f10x.o(i.SystemInit)
|
||||
i.TIM1_UP_IRQHandler 0x08000468 Section 0 mytimer.o(i.TIM1_UP_IRQHandler)
|
||||
i.TIM2_IRQHandler 0x0800048c Section 0 mytimer.o(i.TIM2_IRQHandler)
|
||||
i.TIM3_IRQHandler 0x080004b0 Section 0 mytimer.o(i.TIM3_IRQHandler)
|
||||
i.TIM4_IRQHandler 0x080004d4 Section 0 mytimer.o(i.TIM4_IRQHandler)
|
||||
i.USART1_IRQHandler 0x080004f8 Section 0 telecommande.o(i.USART1_IRQHandler)
|
||||
i.__scatterload_copy 0x08000514 Section 14 handlers.o(i.__scatterload_copy)
|
||||
i.__scatterload_null 0x08000522 Section 2 handlers.o(i.__scatterload_null)
|
||||
i.__scatterload_zeroinit 0x08000524 Section 14 handlers.o(i.__scatterload_zeroinit)
|
||||
i.initADC 0x08000534 Section 0 myadc.o(i.initADC)
|
||||
i.main 0x08000570 Section 0 main.o(i.main)
|
||||
i.read 0x0800060c Section 0 myadc.o(i.read)
|
||||
i.startADC 0x08000634 Section 0 myadc.o(i.startADC)
|
||||
.data 0x20000000 Section 16 main.o(.data)
|
||||
.data 0x20000010 Section 16 mytimer.o(.data)
|
||||
.data 0x20000020 Section 8 telecommande.o(.data)
|
||||
.data 0x20000028 Section 4 batterie.o(.data)
|
||||
.bss 0x2000002c Section 52 telecommande.o(.bss)
|
||||
.bss 0x20000060 Section 12 batterie.o(.bss)
|
||||
STACK 0x20000070 Section 1024 startup_stm32f10x_md.o(STACK)
|
||||
i.EXTI0_IRQHandler 0x0800014c Section 0 mygirouette.o(i.EXTI0_IRQHandler)
|
||||
i.Init_Girouette 0x0800016c Section 0 mygirouette.o(i.Init_Girouette)
|
||||
i.MyGPIO_Init 0x0800020c Section 0 driver_gpio.o(i.MyGPIO_Init)
|
||||
i.SetSysClock 0x080002c0 Section 0 system_stm32f10x.o(i.SetSysClock)
|
||||
SetSysClock 0x080002c1 Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
|
||||
i.SetSysClockTo72 0x080002c8 Section 0 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
SetSysClockTo72 0x080002c9 Thumb Code 214 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
i.SystemInit 0x080003a8 Section 0 system_stm32f10x.o(i.SystemInit)
|
||||
i.TIM1_UP_IRQHandler 0x08000408 Section 0 mytimer.o(i.TIM1_UP_IRQHandler)
|
||||
i.TIM2_IRQHandler 0x0800042c Section 0 mytimer.o(i.TIM2_IRQHandler)
|
||||
i.TIM3_IRQHandler 0x08000450 Section 0 mytimer.o(i.TIM3_IRQHandler)
|
||||
i.TIM4_IRQHandler 0x08000474 Section 0 mytimer.o(i.TIM4_IRQHandler)
|
||||
i.__scatterload_copy 0x08000498 Section 14 handlers.o(i.__scatterload_copy)
|
||||
i.__scatterload_null 0x080004a6 Section 2 handlers.o(i.__scatterload_null)
|
||||
i.__scatterload_zeroinit 0x080004a8 Section 14 handlers.o(i.__scatterload_zeroinit)
|
||||
i.main 0x080004b6 Section 0 main.o(i.main)
|
||||
.constdata 0x080004c0 Section 36 mygirouette.o(.constdata)
|
||||
.data 0x20000000 Section 16 mytimer.o(.data)
|
||||
.data 0x20000010 Section 4 mygirouette.o(.data)
|
||||
STACK 0x20000018 Section 1024 startup_stm32f10x_md.o(STACK)
|
||||
|
||||
Global Symbols
|
||||
|
||||
Symbol Name Value Ov Type Size Object(Section)
|
||||
|
||||
BuildAttributes$$THM_ISAv4$P$D$K$B$S$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OSPACE$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
|
||||
BuildAttributes$$THM_ISAv4$P$D$K$B$S$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
|
||||
__ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
|
||||
__arm_fini_ - Undefined Weak Reference
|
||||
__cpp_initialize__aeabi_ - Undefined Weak Reference
|
||||
|
@ -261,7 +286,6 @@ Image Symbol Table
|
|||
DMA1_Channel5_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
DMA1_Channel6_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
DMA1_Channel7_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
EXTI0_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
EXTI15_10_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
EXTI1_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
EXTI2_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
|
@ -283,6 +307,7 @@ Image Symbol Table
|
|||
TIM1_BRK_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
TIM1_CC_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
TIM1_TRG_COM_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
USART1_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
USART2_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
USART3_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
USBWakeUp_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
|
@ -291,43 +316,26 @@ Image Symbol Table
|
|||
WWDG_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
__scatterload 0x08000129 Thumb Code 28 init.o(.text)
|
||||
__scatterload_rt2 0x08000129 Thumb Code 0 init.o(.text)
|
||||
Get_Batterie 0x0800014d Thumb Code 36 batterie.o(i.Get_Batterie)
|
||||
Init_Batterie 0x08000175 Thumb Code 32 batterie.o(i.Init_Batterie)
|
||||
Init_USART 0x0800019d Thumb Code 134 telecommande.o(i.Init_USART)
|
||||
MyGPIO_Init 0x08000239 Thumb Code 166 driver_gpio.o(i.MyGPIO_Init)
|
||||
Send_Char 0x080002ed Thumb Code 22 telecommande.o(i.Send_Char)
|
||||
Send_Message 0x08000309 Thumb Code 24 telecommande.o(i.Send_Message)
|
||||
SystemInit 0x08000409 Thumb Code 78 system_stm32f10x.o(i.SystemInit)
|
||||
TIM1_UP_IRQHandler 0x08000469 Thumb Code 28 mytimer.o(i.TIM1_UP_IRQHandler)
|
||||
TIM2_IRQHandler 0x0800048d Thumb Code 32 mytimer.o(i.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x080004b1 Thumb Code 28 mytimer.o(i.TIM3_IRQHandler)
|
||||
TIM4_IRQHandler 0x080004d5 Thumb Code 28 mytimer.o(i.TIM4_IRQHandler)
|
||||
USART1_IRQHandler 0x080004f9 Thumb Code 18 telecommande.o(i.USART1_IRQHandler)
|
||||
__scatterload_copy 0x08000515 Thumb Code 14 handlers.o(i.__scatterload_copy)
|
||||
__scatterload_null 0x08000523 Thumb Code 2 handlers.o(i.__scatterload_null)
|
||||
__scatterload_zeroinit 0x08000525 Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
|
||||
initADC 0x08000535 Thumb Code 50 myadc.o(i.initADC)
|
||||
main 0x08000571 Thumb Code 92 main.o(i.main)
|
||||
read 0x0800060d Thumb Code 34 myadc.o(i.read)
|
||||
startADC 0x08000635 Thumb Code 14 myadc.o(i.startADC)
|
||||
Region$$Table$$Base 0x08000648 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x08000668 Number 0 anon$$obj.o(Region$$Table)
|
||||
droite 0x20000000 Data 4 main.o(.data)
|
||||
b 0x20000004 Data 4 main.o(.data)
|
||||
testBatterie 0x20000008 Data 4 main.o(.data)
|
||||
bat 0x2000000c Data 4 main.o(.data)
|
||||
ptr1 0x20000010 Data 4 mytimer.o(.data)
|
||||
ptr2 0x20000014 Data 4 mytimer.o(.data)
|
||||
ptr3 0x20000018 Data 4 mytimer.o(.data)
|
||||
ptr4 0x2000001c Data 4 mytimer.o(.data)
|
||||
Usart 0x20000020 Data 4 telecommande.o(.data)
|
||||
ptr 0x20000024 Data 4 telecommande.o(.data)
|
||||
nivBatterie 0x20000028 Data 4 batterie.o(.data)
|
||||
USART 0x2000002c Data 28 telecommande.o(.bss)
|
||||
GPIOA10 0x20000048 Data 12 telecommande.o(.bss)
|
||||
GPIOA9 0x20000054 Data 12 telecommande.o(.bss)
|
||||
GPIOC0 0x20000060 Data 12 batterie.o(.bss)
|
||||
__initial_sp 0x20000470 Data 0 startup_stm32f10x_md.o(STACK)
|
||||
EXTI0_IRQHandler 0x0800014d Thumb Code 24 mygirouette.o(i.EXTI0_IRQHandler)
|
||||
Init_Girouette 0x0800016d Thumb Code 134 mygirouette.o(i.Init_Girouette)
|
||||
MyGPIO_Init 0x0800020d Thumb Code 166 driver_gpio.o(i.MyGPIO_Init)
|
||||
SystemInit 0x080003a9 Thumb Code 78 system_stm32f10x.o(i.SystemInit)
|
||||
TIM1_UP_IRQHandler 0x08000409 Thumb Code 28 mytimer.o(i.TIM1_UP_IRQHandler)
|
||||
TIM2_IRQHandler 0x0800042d Thumb Code 32 mytimer.o(i.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x08000451 Thumb Code 28 mytimer.o(i.TIM3_IRQHandler)
|
||||
TIM4_IRQHandler 0x08000475 Thumb Code 28 mytimer.o(i.TIM4_IRQHandler)
|
||||
__scatterload_copy 0x08000499 Thumb Code 14 handlers.o(i.__scatterload_copy)
|
||||
__scatterload_null 0x080004a7 Thumb Code 2 handlers.o(i.__scatterload_null)
|
||||
__scatterload_zeroinit 0x080004a9 Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
|
||||
main 0x080004b7 Thumb Code 8 main.o(i.main)
|
||||
Region$$Table$$Base 0x080004e4 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x08000504 Number 0 anon$$obj.o(Region$$Table)
|
||||
ptr1 0x20000000 Data 4 mytimer.o(.data)
|
||||
ptr2 0x20000004 Data 4 mytimer.o(.data)
|
||||
ptr3 0x20000008 Data 4 mytimer.o(.data)
|
||||
ptr4 0x2000000c Data 4 mytimer.o(.data)
|
||||
x 0x20000010 Data 4 mygirouette.o(.data)
|
||||
__initial_sp 0x20000418 Data 0 startup_stm32f10x_md.o(STACK)
|
||||
|
||||
|
||||
|
||||
|
@ -337,62 +345,52 @@ Memory Map of the image
|
|||
|
||||
Image Entry point : 0x080000ed
|
||||
|
||||
Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00000694, Max: 0x00020000, ABSOLUTE)
|
||||
Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00000518, Max: 0x00020000, ABSOLUTE)
|
||||
|
||||
Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00000668, Max: 0x00020000, ABSOLUTE)
|
||||
Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00000504, Max: 0x00020000, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x08000000 0x08000000 0x000000ec Data RO 413 RESET startup_stm32f10x_md.o
|
||||
0x080000ec 0x080000ec 0x00000000 Code RO 464 * .ARM.Collect$$$$00000000 mc_w.l(entry.o)
|
||||
0x080000ec 0x080000ec 0x00000004 Code RO 467 .ARM.Collect$$$$00000001 mc_w.l(entry2.o)
|
||||
0x080000f0 0x080000f0 0x00000004 Code RO 470 .ARM.Collect$$$$00000004 mc_w.l(entry5.o)
|
||||
0x080000f4 0x080000f4 0x00000000 Code RO 472 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o)
|
||||
0x080000f4 0x080000f4 0x00000000 Code RO 474 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o)
|
||||
0x080000f4 0x080000f4 0x00000008 Code RO 475 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o)
|
||||
0x080000fc 0x080000fc 0x00000004 Code RO 482 .ARM.Collect$$$$0000000E mc_w.l(entry12b.o)
|
||||
0x08000100 0x08000100 0x00000000 Code RO 477 .ARM.Collect$$$$0000000F mc_w.l(entry10a.o)
|
||||
0x08000100 0x08000100 0x00000000 Code RO 479 .ARM.Collect$$$$00000011 mc_w.l(entry11a.o)
|
||||
0x08000100 0x08000100 0x00000004 Code RO 468 .ARM.Collect$$$$00002712 mc_w.l(entry2.o)
|
||||
0x08000104 0x08000104 0x00000024 Code RO 414 .text startup_stm32f10x_md.o
|
||||
0x08000128 0x08000128 0x00000024 Code RO 483 .text mc_w.l(init.o)
|
||||
0x0800014c 0x0800014c 0x00000028 Code RO 377 i.Get_Batterie batterie.o
|
||||
0x08000174 0x08000174 0x00000028 Code RO 378 i.Init_Batterie batterie.o
|
||||
0x0800019c 0x0800019c 0x0000009c Code RO 323 i.Init_USART telecommande.o
|
||||
0x08000238 0x08000238 0x000000b4 Code RO 84 i.MyGPIO_Init driver_gpio.o
|
||||
0x080002ec 0x080002ec 0x0000001c Code RO 324 i.Send_Char telecommande.o
|
||||
0x08000308 0x08000308 0x00000018 Code RO 325 i.Send_Message telecommande.o
|
||||
0x08000320 0x08000320 0x00000008 Code RO 421 i.SetSysClock system_stm32f10x.o
|
||||
0x08000328 0x08000328 0x000000e0 Code RO 422 i.SetSysClockTo72 system_stm32f10x.o
|
||||
0x08000408 0x08000408 0x00000060 Code RO 424 i.SystemInit system_stm32f10x.o
|
||||
0x08000468 0x08000468 0x00000024 Code RO 143 i.TIM1_UP_IRQHandler mytimer.o
|
||||
0x0800048c 0x0800048c 0x00000024 Code RO 144 i.TIM2_IRQHandler mytimer.o
|
||||
0x080004b0 0x080004b0 0x00000024 Code RO 145 i.TIM3_IRQHandler mytimer.o
|
||||
0x080004d4 0x080004d4 0x00000024 Code RO 146 i.TIM4_IRQHandler mytimer.o
|
||||
0x080004f8 0x080004f8 0x0000001c Code RO 326 i.USART1_IRQHandler telecommande.o
|
||||
0x08000514 0x08000514 0x0000000e Code RO 487 i.__scatterload_copy mc_w.l(handlers.o)
|
||||
0x08000522 0x08000522 0x00000002 Code RO 488 i.__scatterload_null mc_w.l(handlers.o)
|
||||
0x08000524 0x08000524 0x0000000e Code RO 489 i.__scatterload_zeroinit mc_w.l(handlers.o)
|
||||
0x08000532 0x08000532 0x00000002 PAD
|
||||
0x08000534 0x08000534 0x0000003c Code RO 234 i.initADC myadc.o
|
||||
0x08000570 0x08000570 0x0000009c Code RO 5 i.main main.o
|
||||
0x0800060c 0x0800060c 0x00000028 Code RO 235 i.read myadc.o
|
||||
0x08000634 0x08000634 0x00000014 Code RO 236 i.startADC myadc.o
|
||||
0x08000648 0x08000648 0x00000020 Data RO 485 Region$$Table anon$$obj.o
|
||||
0x08000000 0x08000000 0x000000ec Data RO 346 RESET startup_stm32f10x_md.o
|
||||
0x080000ec 0x080000ec 0x00000000 Code RO 397 * .ARM.Collect$$$$00000000 mc_w.l(entry.o)
|
||||
0x080000ec 0x080000ec 0x00000004 Code RO 420 .ARM.Collect$$$$00000001 mc_w.l(entry2.o)
|
||||
0x080000f0 0x080000f0 0x00000004 Code RO 423 .ARM.Collect$$$$00000004 mc_w.l(entry5.o)
|
||||
0x080000f4 0x080000f4 0x00000000 Code RO 425 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o)
|
||||
0x080000f4 0x080000f4 0x00000000 Code RO 427 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o)
|
||||
0x080000f4 0x080000f4 0x00000008 Code RO 428 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o)
|
||||
0x080000fc 0x080000fc 0x00000004 Code RO 435 .ARM.Collect$$$$0000000E mc_w.l(entry12b.o)
|
||||
0x08000100 0x08000100 0x00000000 Code RO 430 .ARM.Collect$$$$0000000F mc_w.l(entry10a.o)
|
||||
0x08000100 0x08000100 0x00000000 Code RO 432 .ARM.Collect$$$$00000011 mc_w.l(entry11a.o)
|
||||
0x08000100 0x08000100 0x00000004 Code RO 421 .ARM.Collect$$$$00002712 mc_w.l(entry2.o)
|
||||
0x08000104 0x08000104 0x00000024 Code RO 347 .text startup_stm32f10x_md.o
|
||||
0x08000128 0x08000128 0x00000024 Code RO 445 .text mc_w.l(init.o)
|
||||
0x0800014c 0x0800014c 0x00000020 Code RO 273 i.EXTI0_IRQHandler mygirouette.o
|
||||
0x0800016c 0x0800016c 0x000000a0 Code RO 275 i.Init_Girouette mygirouette.o
|
||||
0x0800020c 0x0800020c 0x000000b4 Code RO 225 i.MyGPIO_Init driver_gpio.o
|
||||
0x080002c0 0x080002c0 0x00000008 Code RO 354 i.SetSysClock system_stm32f10x.o
|
||||
0x080002c8 0x080002c8 0x000000e0 Code RO 355 i.SetSysClockTo72 system_stm32f10x.o
|
||||
0x080003a8 0x080003a8 0x00000060 Code RO 357 i.SystemInit system_stm32f10x.o
|
||||
0x08000408 0x08000408 0x00000024 Code RO 90 i.TIM1_UP_IRQHandler mytimer.o
|
||||
0x0800042c 0x0800042c 0x00000024 Code RO 91 i.TIM2_IRQHandler mytimer.o
|
||||
0x08000450 0x08000450 0x00000024 Code RO 92 i.TIM3_IRQHandler mytimer.o
|
||||
0x08000474 0x08000474 0x00000024 Code RO 93 i.TIM4_IRQHandler mytimer.o
|
||||
0x08000498 0x08000498 0x0000000e Code RO 451 i.__scatterload_copy mc_w.l(handlers.o)
|
||||
0x080004a6 0x080004a6 0x00000002 Code RO 452 i.__scatterload_null mc_w.l(handlers.o)
|
||||
0x080004a8 0x080004a8 0x0000000e Code RO 453 i.__scatterload_zeroinit mc_w.l(handlers.o)
|
||||
0x080004b6 0x080004b6 0x00000008 Code RO 5 i.main main.o
|
||||
0x080004be 0x080004be 0x00000002 PAD
|
||||
0x080004c0 0x080004c0 0x00000024 Data RO 276 .constdata mygirouette.o
|
||||
0x080004e4 0x080004e4 0x00000020 Data RO 449 Region$$Table anon$$obj.o
|
||||
|
||||
|
||||
Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08000668, Size: 0x00000470, Max: 0x00005000, ABSOLUTE)
|
||||
Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08000504, Size: 0x00000418, Max: 0x00005000, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x20000000 0x08000668 0x00000010 Data RW 6 .data main.o
|
||||
0x20000010 0x08000678 0x00000010 Data RW 147 .data mytimer.o
|
||||
0x20000020 0x08000688 0x00000008 Data RW 328 .data telecommande.o
|
||||
0x20000028 0x08000690 0x00000004 Data RW 380 .data batterie.o
|
||||
0x2000002c - 0x00000034 Zero RW 327 .bss telecommande.o
|
||||
0x20000060 - 0x0000000c Zero RW 379 .bss batterie.o
|
||||
0x2000006c 0x08000694 0x00000004 PAD
|
||||
0x20000070 - 0x00000400 Zero RW 411 STACK startup_stm32f10x_md.o
|
||||
0x20000000 0x08000504 0x00000010 Data RW 94 .data mytimer.o
|
||||
0x20000010 0x08000514 0x00000004 Data RW 277 .data mygirouette.o
|
||||
0x20000014 0x08000518 0x00000004 PAD
|
||||
0x20000018 - 0x00000400 Zero RW 344 STACK startup_stm32f10x_md.o
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
@ -402,19 +400,17 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
|
||||
|
||||
80 12 0 4 12 1168 batterie.o
|
||||
180 14 0 0 0 1658 driver_gpio.o
|
||||
156 64 0 16 0 207163 main.o
|
||||
120 22 0 0 0 1308 myadc.o
|
||||
144 28 0 16 0 3521 mytimer.o
|
||||
36 8 236 0 1024 808 startup_stm32f10x_md.o
|
||||
328 28 0 0 0 1973 system_stm32f10x.o
|
||||
236 38 0 8 52 2809 telecommande.o
|
||||
180 14 0 0 0 878 driver_gpio.o
|
||||
8 0 0 0 0 206747 main.o
|
||||
192 34 36 4 0 1136 mygirouette.o
|
||||
144 28 0 16 0 3385 mytimer.o
|
||||
36 8 236 0 1024 792 startup_stm32f10x_md.o
|
||||
328 28 0 0 0 1901 system_stm32f10x.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
1280 214 268 44 1092 220408 Object Totals
|
||||
890 112 304 20 1028 214839 Object Totals
|
||||
0 0 32 0 0 0 (incl. Generated)
|
||||
0 0 0 0 4 0 (incl. Padding)
|
||||
2 0 0 0 4 0 (incl. Padding)
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
@ -433,8 +429,8 @@ Image component sizes
|
|||
36 8 0 0 0 68 init.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
92 16 0 0 0 68 Library Totals
|
||||
2 0 0 0 0 0 (incl. Padding)
|
||||
90 16 0 0 0 68 Library Totals
|
||||
0 0 0 0 0 0 (incl. Padding)
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
@ -443,7 +439,7 @@ Image component sizes
|
|||
90 16 0 0 0 68 mc_w.l
|
||||
|
||||
----------------------------------------------------------------------
|
||||
92 16 0 0 0 68 Library Totals
|
||||
90 16 0 0 0 68 Library Totals
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
@ -452,15 +448,15 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug
|
||||
|
||||
1372 230 268 44 1092 219848 Grand Totals
|
||||
1372 230 268 44 1092 219848 ELF Image Totals
|
||||
1372 230 268 44 0 0 ROM Totals
|
||||
980 128 304 20 1028 214591 Grand Totals
|
||||
980 128 304 20 1028 214591 ELF Image Totals
|
||||
980 128 304 20 0 0 ROM Totals
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 1640 ( 1.60kB)
|
||||
Total RW Size (RW Data + ZI Data) 1136 ( 1.11kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 1684 ( 1.64kB)
|
||||
Total RO Size (Code + RO Data) 1284 ( 1.25kB)
|
||||
Total RW Size (RW Data + ZI Data) 1048 ( 1.02kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 1304 ( 1.27kB)
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
|
26
MyVoile.c
Normal file
26
MyVoile.c
Normal file
|
@ -0,0 +1,26 @@
|
|||
#include "MyVoile.h"
|
||||
|
||||
|
||||
void MyVoile_Init(){
|
||||
MyTimer_Struct_TypeDef Tim_Conf_Servo = {
|
||||
TIM4,
|
||||
1199,
|
||||
1199
|
||||
};
|
||||
MyTimer_Base_Init(&Tim_Conf_Servo);
|
||||
MyTimer_PWM(TIM4,3);
|
||||
MyTimer_Base_Start(TIM4);
|
||||
}
|
||||
|
||||
void Set_Voile(uint16_t angle){
|
||||
float k;
|
||||
if(angle < 180.0){
|
||||
k = (0.1- angle*M);
|
||||
Set_Duty_Cycle(TIM4,3,k*Get_Max_Duty(TIM4));
|
||||
}else{
|
||||
k = (0.1 - (360.0 - angle)*M);
|
||||
Set_Duty_Cycle(TIM4,3,k*Get_Max_Duty(TIM4));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,101 +1,80 @@
|
|||
Dependencies for Project 'Projet1', Target 'Réel': (DO NOT MODIFY !)
|
||||
CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARMCC
|
||||
F (.\Sources\main.c)(0x6372704A)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d)
|
||||
F (.\Sources\main.c)(0x6372735F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (.\FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
I (.\FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (.\FileInclude\MyADC.h)(0x6352AB58)
|
||||
I (.\FileInclude\Plateau.h)(0x63725F44)
|
||||
I (.\FileInclude\Telecommande.h)(0x6368CE08)
|
||||
I (.\FileInclude\Batterie.h)(0x63712E97)
|
||||
F (U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c)(0x633153E6)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\driver_gpio.o --omf_browse .\objects\driver_gpio.crf --depend .\objects\driver_gpio.d)
|
||||
I (U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.h)(0x63315001)
|
||||
I (.\FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
I (.\FileInclude\MyADC.h)(0x6352AB45)
|
||||
I (.\FileInclude\MyGirouette.h)(0x635BBB64)
|
||||
I (.\FileInclude\MyVoile.h)(0x6368DF83)
|
||||
I (.\FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
F (.\FileInclude\MyTimer.c)(0x635BD048)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\mytimer.o --omf_browse .\objects\mytimer.crf --depend .\objects\mytimer.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
F (.\FileInclude\MyTimer.c)(0x635EAD7F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\mytimer.o --omf_browse .\objects\mytimer.crf --depend .\objects\mytimer.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
F (.\FileInclude\MyADC.c)(0x6352AB45)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\myadc.o --omf_browse .\objects\myadc.crf --depend .\objects\myadc.d)
|
||||
I (FileInclude\MyADC.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
F (.\FileInclude\MyTimer.h)(0x6352B8A4)()
|
||||
F (.\FileInclude\MyADC.c)(0x63726E79)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\myadc.o --omf_browse .\objects\myadc.crf --depend .\objects\myadc.d)
|
||||
I (FileInclude\MyADC.h)(0x6352AB58)
|
||||
I (FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
F (.\FileInclude\Driver_GPIO.c)(0x6352AB45)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\driver_gpio.o --omf_browse .\objects\driver_gpio.crf --depend .\objects\driver_gpio.d)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
F (.\FileInclude\MyADC.h)(0x6352AB58)()
|
||||
F (.\FileInclude\Plateau.c)(0x635BB6D1)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\plateau.o --omf_browse .\objects\plateau.crf --depend .\objects\plateau.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
F (.\FileInclude\MyGirouette.c)(0x63727A50)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\mygirouette.o --omf_browse .\objects\mygirouette.crf --depend .\objects\mygirouette.d)
|
||||
I (FileInclude\MyGirouette.h)(0x635BBB64)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
I (FileInclude\Plateau.h)(0x63725F44)
|
||||
F (.\FileInclude\Telecommande.c)(0x6368E779)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\telecommande.o --omf_browse .\objects\telecommande.crf --depend .\objects\telecommande.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
I (FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
F (.\MyVoile.c)(0x6368DE1F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\myvoile.o --omf_browse .\objects\myvoile.crf --depend .\objects\myvoile.d)
|
||||
I (.\FileInclude\MyVoile.h)(0x6368DF83)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
I (FileInclude\Plateau.h)(0x63725F44)
|
||||
I (FileInclude\Telecommande.h)(0x6368CE08)
|
||||
F (.\FileInclude\Plateau.h)(0x63725F44)()
|
||||
F (.\FileInclude\Telecommande.h)(0x6368CE08)()
|
||||
F (.\FileInclude\Batterie.c)(0x637268C7)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\batterie.o --omf_browse .\objects\batterie.crf --depend .\objects\batterie.d)
|
||||
I (FileInclude\Batterie.h)(0x63712E97)
|
||||
I (.\FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
F (RTE\Device\STM32F103RB\RTE_Device.h)(0x6352AB45)()
|
||||
F (RTE\Device\STM32F103RB\startup_stm32f10x_md.s)(0x63725E20)(--cpu Cortex-M3 --pd "__EVAL SETA 1" -g --apcs=interwork --pd "__MICROLIB SETA 1"
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
--pd "__UVISION_VERSION SETA 534" --pd "_RTE_ SETA 1" --pd "STM32F10X_MD SETA 1" --pd "_RTE_ SETA 1"
--list .\listings\startup_stm32f10x_md.lst --xref -o .\objects\startup_stm32f10x_md.o --depend .\objects\startup_stm32f10x_md.d)
|
||||
F (RTE\Device\STM32F103RB\system_stm32f10x.c)(0x6352B469)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\system_stm32f10x.o --omf_browse .\objects\system_stm32f10x.crf --depend .\objects\system_stm32f10x.d)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\MyADC.h)(0x6352AB58)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
F (.\FileInclude\Batterie.h)(0x63712E97)()
|
||||
F (RTE\Device\STM32F103RB\RTE_Device.h)(0x6352AB59)()
|
||||
F (RTE\Device\STM32F103RB\startup_stm32f10x_md.s)(0x6352AB59)(--cpu Cortex-M3 --pd "__EVAL SETA 1" -g --apcs=interwork --pd "__MICROLIB SETA 1"
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
--pd "__UVISION_VERSION SETA 534" --pd "_RTE_ SETA 1" --pd "STM32F10X_MD SETA 1" --pd "_RTE_ SETA 1"
--list .\listings\startup_stm32f10x_md.lst --xref -o .\objects\startup_stm32f10x_md.o --depend .\objects\startup_stm32f10x_md.d)
|
||||
F (RTE\Device\STM32F103RB\system_stm32f10x.c)(0x6352AB59)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_R_el
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\system_stm32f10x.o --omf_browse .\objects\system_stm32f10x.crf --depend .\objects\system_stm32f10x.d)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_R_el\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
|
|
|
@ -1,101 +1,80 @@
|
|||
Dependencies for Project 'Projet1', Target 'SImulation': (DO NOT MODIFY !)
|
||||
CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARMCC
|
||||
F (.\Sources\main.c)(0x63725877)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d)
|
||||
F (.\Sources\main.c)(0x6372735F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\main.o --omf_browse .\objects\main.crf --depend .\objects\main.d)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (.\FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
I (.\FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (.\FileInclude\MyADC.h)(0x6352AB58)
|
||||
I (.\FileInclude\Plateau.h)(0x635B93E6)
|
||||
I (.\FileInclude\Telecommande.h)(0x6368CE08)
|
||||
I (.\FileInclude\Batterie.h)(0x63712E97)
|
||||
F (U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c)(0x633153E6)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\driver_gpio.o --omf_browse .\objects\driver_gpio.crf --depend .\objects\driver_gpio.d)
|
||||
I (U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.h)(0x63315001)
|
||||
I (.\FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
I (.\FileInclude\MyADC.h)(0x6352AB45)
|
||||
I (.\FileInclude\MyGirouette.h)(0x635BBB64)
|
||||
I (.\FileInclude\MyVoile.h)(0x6368DF83)
|
||||
I (.\FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
F (.\FileInclude\MyTimer.c)(0x635BD048)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\mytimer.o --omf_browse .\objects\mytimer.crf --depend .\objects\mytimer.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
F (.\FileInclude\MyTimer.c)(0x635EAD7F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\mytimer.o --omf_browse .\objects\mytimer.crf --depend .\objects\mytimer.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
F (.\FileInclude\MyADC.c)(0x6352AB45)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\myadc.o --omf_browse .\objects\myadc.crf --depend .\objects\myadc.d)
|
||||
I (FileInclude\MyADC.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
F (.\FileInclude\MyTimer.h)(0x6352B8A4)()
|
||||
F (.\FileInclude\MyADC.c)(0x6352AB58)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\myadc.o --omf_browse .\objects\myadc.crf --depend .\objects\myadc.d)
|
||||
I (FileInclude\MyADC.h)(0x6352AB58)
|
||||
I (FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
F (.\FileInclude\Driver_GPIO.c)(0x6352AB45)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\driver_gpio.o --omf_browse .\objects\driver_gpio.crf --depend .\objects\driver_gpio.d)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
F (.\FileInclude\MyADC.h)(0x6352AB58)()
|
||||
F (.\FileInclude\Plateau.c)(0x635BB6D1)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\plateau.o --omf_browse .\objects\plateau.crf --depend .\objects\plateau.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
F (.\FileInclude\MyGirouette.c)(0x6372759F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\mygirouette.o --omf_browse .\objects\mygirouette.crf --depend .\objects\mygirouette.d)
|
||||
I (FileInclude\MyGirouette.h)(0x635BBB64)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
I (FileInclude\Plateau.h)(0x635B93E6)
|
||||
F (.\FileInclude\Telecommande.c)(0x6368E779)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\telecommande.o --omf_browse .\objects\telecommande.crf --depend .\objects\telecommande.d)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x63726BB4)
|
||||
I (FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
F (.\MyVoile.c)(0x6368DE1F)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\myvoile.o --omf_browse .\objects\myvoile.crf --depend .\objects\myvoile.d)
|
||||
I (.\FileInclude\MyVoile.h)(0x6368DF83)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
I (FileInclude\Plateau.h)(0x635B93E6)
|
||||
I (FileInclude\Telecommande.h)(0x6368CE08)
|
||||
F (.\FileInclude\Plateau.h)(0x635B93E6)()
|
||||
F (.\FileInclude\Telecommande.h)(0x6368CE08)()
|
||||
F (.\FileInclude\Batterie.c)(0x63712DDE)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\batterie.o --omf_browse .\objects\batterie.crf --depend .\objects\batterie.d)
|
||||
I (FileInclude\Batterie.h)(0x63712E97)
|
||||
I (.\FileInclude\MyTimer.h)(0x6352B1EA)
|
||||
F (RTE\Device\STM32F103RB\RTE_Device.h)(0x6352AB45)()
|
||||
F (RTE\Device\STM32F103RB\startup_stm32f10x_md.s)(0x63725E20)(--cpu Cortex-M3 --pd "__EVAL SETA 1" -g --apcs=interwork --pd "__MICROLIB SETA 1"
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
--pd "__UVISION_VERSION SETA 534" --pd "_RTE_ SETA 1" --pd "STM32F10X_MD SETA 1" --pd "_RTE_ SETA 1"
--list .\listings\startup_stm32f10x_md.lst --xref -o .\objects\startup_stm32f10x_md.o --depend .\objects\startup_stm32f10x_md.d)
|
||||
F (RTE\Device\STM32F103RB\system_stm32f10x.c)(0x6352B469)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\system_stm32f10x.o --omf_browse .\objects\system_stm32f10x.crf --depend .\objects\system_stm32f10x.d)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h)(0x5E835B22)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h)(0x5E8F2582)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h)(0x58258CCC)
|
||||
I (FileInclude\MyADC.h)(0x6352AB58)
|
||||
I (FileInclude\MyTimer.h)(0x6352B8A4)
|
||||
I (FileInclude\Driver_GPIO.h)(0x6352AB58)
|
||||
F (.\FileInclude\Batterie.h)(0x63712E97)()
|
||||
F (RTE\Device\STM32F103RB\RTE_Device.h)(0x6352AB59)()
|
||||
F (RTE\Device\STM32F103RB\startup_stm32f10x_md.s)(0x6352AB59)(--cpu Cortex-M3 --pd "__EVAL SETA 1" -g --apcs=interwork --pd "__MICROLIB SETA 1"
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
--pd "__UVISION_VERSION SETA 534" --pd "_RTE_ SETA 1" --pd "STM32F10X_MD SETA 1" --pd "_RTE_ SETA 1"
--list .\listings\startup_stm32f10x_md.lst --xref -o .\objects\startup_stm32f10x_md.o --depend .\objects\startup_stm32f10x_md.d)
|
||||
F (RTE\Device\STM32F103RB\system_stm32f10x.c)(0x6352AB59)(-c --cpu Cortex-M3 -D__EVAL -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I .\FileInclude
-I.\RTE\Device\STM32F103RB
-I.\RTE\_SImulation
-IC:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include
-IC:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include
-D__UVISION_VERSION="534" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o .\objects\system_stm32f10x.o --omf_browse .\objects\system_stm32f10x.crf --depend .\objects\system_stm32f10x.d)
|
||||
I (C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h)(0x58258CCC)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB59)
|
||||
I (.\RTE\_SImulation\RTE_Components.h)(0x6352AB45)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h)(0x5E8F2582)
|
||||
I (C:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E9122)
|
||||
I (C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h)(0x5E8F2582)
|
||||
|
|
Binary file not shown.
|
@ -21,24 +21,28 @@ Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.0.8.0
|
|||
Dialog DLL: TARMSTM.DLL V1.66.0.0
|
||||
|
||||
<h2>Project:</h2>
|
||||
U:\Documents\4ir\S1\Microcontroleur\TP_Voilier\Projet1.uvprojx
|
||||
Project File Date: 11/13/2022
|
||||
U:\Documents\4IR\TP_Voilier\Projet1.uvprojx
|
||||
Project File Date: 11/14/2022
|
||||
|
||||
<h2>Output:</h2>
|
||||
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin'
|
||||
Rebuild target 'Réel'
|
||||
compiling MyADC.c...
|
||||
compiling Plateau.c...
|
||||
compiling Batterie.c...
|
||||
compiling Driver_GPIO.c...
|
||||
compiling Telecommande.c...
|
||||
compiling main.c...
|
||||
compiling MyTimer.c...
|
||||
assembling startup_stm32f10x_md.s...
|
||||
compiling MyVoile.c...
|
||||
compiling Driver_GPIO.c...
|
||||
compiling main.c...
|
||||
compiling MyADC.c...
|
||||
compiling MyGirouette.c...
|
||||
FileInclude\MyGirouette.c(16): warning: #177-D: variable "GPIOA0" was declared but never referenced
|
||||
MyGPIO_Struct_TypeDef GPIOA0={
|
||||
FileInclude\MyGirouette.c(21): warning: #177-D: variable "GPIOA1" was declared but never referenced
|
||||
MyGPIO_Struct_TypeDef GPIOA1={
|
||||
FileInclude\MyGirouette.c: 2 warnings, 0 errors
|
||||
compiling MyTimer.c...
|
||||
compiling system_stm32f10x.c...
|
||||
linking...
|
||||
Program Size: Code=1372 RO-data=268 RW-data=44 ZI-data=1092
|
||||
".\Objects\Projet1_Simulation.axf" - 0 Error(s), 0 Warning(s).
|
||||
Program Size: Code=980 RO-data=304 RW-data=20 ZI-data=1028
|
||||
".\Objects\Projet1_Simulation.axf" - 0 Error(s), 2 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
|
@ -66,10 +70,10 @@ Package Vendor: Keil
|
|||
|
||||
* Component: Keil::Device:Startup:1.0.0
|
||||
Source file: Device\Source\system_stm32f10x.c
|
||||
Include file: RTE_Driver\Config\RTE_Device.h
|
||||
Source file: Device\Source\ARM\STM32F1xx_OPT.s
|
||||
Source file: Device\Source\ARM\startup_stm32f10x_md.s
|
||||
Build Time Elapsed: 00:00:02
|
||||
Source file: Device\Source\ARM\STM32F1xx_OPT.s
|
||||
Include file: RTE_Driver\Config\RTE_Device.h
|
||||
Build Time Elapsed: 00:00:01
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
<title>Static Call Graph - [.\Objects\Projet1_Simulation.axf]</title></head>
|
||||
<body><HR>
|
||||
<H1>Static Call Graph for image .\Objects\Projet1_Simulation.axf</H1><HR>
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Mon Nov 14 17:43:57 2022
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Mon Nov 14 18:26:44 2022
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 28 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
<H3>Maximum Stack Usage = 52 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
Call chain for Maximum Stack Depth:</H3>
|
||||
SystemInit ⇒ SetSysClock ⇒ SetSysClockTo72
|
||||
main ⇒ Init_Girouette ⇒ MyGPIO_Init
|
||||
<P>
|
||||
<H3>
|
||||
Mutually Recursive functions
|
||||
|
@ -38,7 +38,7 @@ Function Pointers
|
|||
<LI><a href="#[1a]">DMA1_Channel6_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[1b]">DMA1_Channel7_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[7]">DebugMon_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[10]">EXTI0_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[10]">EXTI0_IRQHandler</a> from mygirouette.o(i.EXTI0_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[32]">EXTI15_10_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[11]">EXTI1_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[12]">EXTI2_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
|
@ -72,7 +72,7 @@ Function Pointers
|
|||
<LI><a href="#[26]">TIM2_IRQHandler</a> from mytimer.o(i.TIM2_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[27]">TIM3_IRQHandler</a> from mytimer.o(i.TIM3_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[28]">TIM4_IRQHandler</a> from mytimer.o(i.TIM4_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[2f]">USART1_IRQHandler</a> from telecommande.o(i.USART1_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[2f]">USART1_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[30]">USART2_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[31]">USART3_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[34]">USBWakeUp_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
|
@ -90,7 +90,7 @@ Global Symbols
|
|||
<P><STRONG><a name="[37]"></a>__main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(.text)
|
||||
</UL>
|
||||
<P><STRONG><a name="[46]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
|
||||
<P><STRONG><a name="[3f]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
|
||||
|
||||
<P><STRONG><a name="[38]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[39]">>></a> __scatterload
|
||||
|
@ -100,17 +100,17 @@ Global Symbols
|
|||
<BR><BR>[Called By]<UL><LI><a href="#[39]">>></a> __scatterload
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[47]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
|
||||
<P><STRONG><a name="[40]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
|
||||
|
||||
<P><STRONG><a name="[48]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
|
||||
<P><STRONG><a name="[41]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
|
||||
|
||||
<P><STRONG><a name="[49]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
|
||||
<P><STRONG><a name="[42]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
|
||||
|
||||
<P><STRONG><a name="[4a]"></a>__rt_lib_shutdown_fini</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry12b.o(.ARM.Collect$$$$0000000E))
|
||||
<P><STRONG><a name="[43]"></a>__rt_lib_shutdown_fini</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry12b.o(.ARM.Collect$$$$0000000E))
|
||||
|
||||
<P><STRONG><a name="[4b]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000F))
|
||||
<P><STRONG><a name="[44]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000F))
|
||||
|
||||
<P><STRONG><a name="[4c]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$00000011))
|
||||
<P><STRONG><a name="[45]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$00000011))
|
||||
|
||||
<P><STRONG><a name="[0]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
|
@ -212,9 +212,6 @@ Global Symbols
|
|||
<P><STRONG><a name="[1b]"></a>DMA1_Channel7_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[10]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[32]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
|
@ -278,6 +275,9 @@ Global Symbols
|
|||
<P><STRONG><a name="[24]"></a>TIM1_TRG_COM_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2f]"></a>USART1_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[30]"></a>USART2_IRQHandler</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
|
@ -302,57 +302,29 @@ Global Symbols
|
|||
<BR>[Called By]<UL><LI><a href="#[38]">>></a> _main_scatterload
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[4d]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
|
||||
<P><STRONG><a name="[46]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[3b]"></a>Get_Batterie</STRONG> (Thumb, 36 bytes, Stack size 8 bytes, batterie.o(i.Get_Batterie))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = Get_Batterie ⇒ read
|
||||
<P><STRONG><a name="[10]"></a>EXTI0_IRQHandler</STRONG> (Thumb, 24 bytes, Stack size 0 bytes, mygirouette.o(i.EXTI0_IRQHandler))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3c]">>></a> read
|
||||
<P><STRONG><a name="[3b]"></a>Init_Girouette</STRONG> (Thumb, 134 bytes, Stack size 40 bytes, mygirouette.o(i.Init_Girouette))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = Init_Girouette ⇒ MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3c]">>></a> MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[3d]"></a>Init_Batterie</STRONG> (Thumb, 32 bytes, Stack size 8 bytes, batterie.o(i.Init_Batterie))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = Init_Batterie ⇒ MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[40]">>></a> startADC
|
||||
<LI><a href="#[3f]">>></a> initADC
|
||||
<LI><a href="#[3e]">>></a> MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[41]"></a>Init_USART</STRONG> (Thumb, 134 bytes, Stack size 8 bytes, telecommande.o(i.Init_USART))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = Init_USART ⇒ MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3e]">>></a> MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[3e]"></a>MyGPIO_Init</STRONG> (Thumb, 166 bytes, Stack size 12 bytes, driver_gpio.o(i.MyGPIO_Init))
|
||||
<P><STRONG><a name="[3c]"></a>MyGPIO_Init</STRONG> (Thumb, 166 bytes, Stack size 12 bytes, driver_gpio.o(i.MyGPIO_Init))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[41]">>></a> Init_USART
|
||||
<LI><a href="#[3d]">>></a> Init_Batterie
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[43]"></a>Send_Char</STRONG> (Thumb, 22 bytes, Stack size 0 bytes, telecommande.o(i.Send_Char))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[42]">>></a> Send_Message
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[42]"></a>Send_Message</STRONG> (Thumb, 24 bytes, Stack size 4 bytes, telecommande.o(i.Send_Message))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = Send_Message
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[43]">>></a> Send_Char
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
<BR>[Called By]<UL><LI><a href="#[3b]">>></a> Init_Girouette
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[36]"></a>SystemInit</STRONG> (Thumb, 78 bytes, Stack size 8 bytes, system_stm32f10x.o(i.SystemInit))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 28<LI>Call Chain = SystemInit ⇒ SetSysClock ⇒ SetSysClockTo72
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[44]">>></a> SetSysClock
|
||||
<BR>[Calls]<UL><LI><a href="#[3d]">>></a> SetSysClock
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(.text)
|
||||
</UL>
|
||||
|
@ -376,59 +348,34 @@ Global Symbols
|
|||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[2f]"></a>USART1_IRQHandler</STRONG> (Thumb, 18 bytes, Stack size 8 bytes, telecommande.o(i.USART1_IRQHandler))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = USART1_IRQHandler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[4e]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
|
||||
<P><STRONG><a name="[47]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[4f]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
|
||||
<P><STRONG><a name="[48]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[50]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
|
||||
<P><STRONG><a name="[49]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[3f]"></a>initADC</STRONG> (Thumb, 50 bytes, Stack size 0 bytes, myadc.o(i.initADC))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[3d]">>></a> Init_Batterie
|
||||
<P><STRONG><a name="[35]"></a>main</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, main.o(i.main))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 52<LI>Call Chain = main ⇒ Init_Girouette ⇒ MyGPIO_Init
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[35]"></a>main</STRONG> (Thumb, 92 bytes, Stack size 0 bytes, main.o(i.main))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = main ⇒ Init_USART ⇒ MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[42]">>></a> Send_Message
|
||||
<LI><a href="#[41]">>></a> Init_USART
|
||||
<LI><a href="#[3d]">>></a> Init_Batterie
|
||||
<LI><a href="#[3b]">>></a> Get_Batterie
|
||||
<BR>[Calls]<UL><LI><a href="#[3b]">>></a> Init_Girouette
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
|
||||
</UL>
|
||||
<P><STRONG><a name="[3c]"></a>read</STRONG> (Thumb, 34 bytes, Stack size 4 bytes, myadc.o(i.read))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = read
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[40]">>></a> startADC
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[3b]">>></a> Get_Batterie
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[40]"></a>startADC</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, myadc.o(i.startADC))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[3c]">>></a> read
|
||||
<LI><a href="#[3d]">>></a> Init_Batterie
|
||||
</UL>
|
||||
<P>
|
||||
</UL><P>
|
||||
<H3>
|
||||
Local Symbols
|
||||
</H3>
|
||||
<P><STRONG><a name="[44]"></a>SetSysClock</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, system_stm32f10x.o(i.SetSysClock))
|
||||
<P><STRONG><a name="[3d]"></a>SetSysClock</STRONG> (Thumb, 8 bytes, Stack size 8 bytes, system_stm32f10x.o(i.SetSysClock))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 20<LI>Call Chain = SetSysClock ⇒ SetSysClockTo72
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[45]">>></a> SetSysClockTo72
|
||||
<BR>[Calls]<UL><LI><a href="#[3e]">>></a> SetSysClockTo72
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[36]">>></a> SystemInit
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[45]"></a>SetSysClockTo72</STRONG> (Thumb, 214 bytes, Stack size 12 bytes, system_stm32f10x.o(i.SetSysClockTo72))
|
||||
<P><STRONG><a name="[3e]"></a>SetSysClockTo72</STRONG> (Thumb, 214 bytes, Stack size 12 bytes, system_stm32f10x.o(i.SetSysClockTo72))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = SetSysClockTo72
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[44]">>></a> SetSysClock
|
||||
<BR>[Called By]<UL><LI><a href="#[3d]">>></a> SetSysClock
|
||||
</UL>
|
||||
<P>
|
||||
<H3>
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
--cpu Cortex-M3
|
||||
".\objects\main.o"
|
||||
".\objects\driver_gpio.o"
|
||||
".\objects\mytimer.o"
|
||||
".\objects\myadc.o"
|
||||
".\objects\plateau.o"
|
||||
".\objects\telecommande.o"
|
||||
".\objects\batterie.o"
|
||||
".\objects\driver_gpio.o"
|
||||
".\objects\mygirouette.o"
|
||||
".\objects\myvoile.o"
|
||||
".\objects\startup_stm32f10x_md.o"
|
||||
".\objects\system_stm32f10x.o"
|
||||
--library_type=microlib --strict --scatter ".\Objects\Projet1_Simulation.sct"
|
||||
|
|
Binary file not shown.
|
@ -1,5 +1,5 @@
|
|||
.\objects\driver_gpio.o: U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c
|
||||
.\objects\driver_gpio.o: U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.h
|
||||
.\objects\driver_gpio.o: FileInclude\Driver_GPIO.c
|
||||
.\objects\driver_gpio.o: FileInclude\Driver_GPIO.h
|
||||
.\objects\driver_gpio.o: C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h
|
||||
.\objects\driver_gpio.o: .\RTE\_R_el\RTE_Components.h
|
||||
.\objects\driver_gpio.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h
|
||||
|
|
Binary file not shown.
BIN
Objects/main.crf
BIN
Objects/main.crf
Binary file not shown.
|
@ -8,8 +8,7 @@
|
|||
.\objects\main.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h
|
||||
.\objects\main.o: C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h
|
||||
.\objects\main.o: .\FileInclude\Driver_GPIO.h
|
||||
.\objects\main.o: .\FileInclude\MyTimer.h
|
||||
.\objects\main.o: .\FileInclude\MyADC.h
|
||||
.\objects\main.o: .\FileInclude\Plateau.h
|
||||
.\objects\main.o: .\FileInclude\Telecommande.h
|
||||
.\objects\main.o: .\FileInclude\Batterie.h
|
||||
.\objects\main.o: .\FileInclude\MyGirouette.h
|
||||
.\objects\main.o: .\FileInclude\MyVoile.h
|
||||
.\objects\main.o: .\FileInclude\MyTimer.h
|
||||
|
|
BIN
Objects/main.o
BIN
Objects/main.o
Binary file not shown.
Binary file not shown.
BIN
Objects/myadc.o
BIN
Objects/myadc.o
Binary file not shown.
BIN
Objects/mygirouette.crf
Normal file
BIN
Objects/mygirouette.crf
Normal file
Binary file not shown.
12
Objects/mygirouette.d
Normal file
12
Objects/mygirouette.d
Normal file
|
@ -0,0 +1,12 @@
|
|||
.\objects\mygirouette.o: FileInclude\MyGirouette.c
|
||||
.\objects\mygirouette.o: FileInclude\MyGirouette.h
|
||||
.\objects\mygirouette.o: C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h
|
||||
.\objects\mygirouette.o: .\RTE\_R_el\RTE_Components.h
|
||||
.\objects\mygirouette.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h
|
||||
.\objects\mygirouette.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\mygirouette.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h
|
||||
.\objects\mygirouette.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h
|
||||
.\objects\mygirouette.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h
|
||||
.\objects\mygirouette.o: C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h
|
||||
.\objects\mygirouette.o: FileInclude\Driver_GPIO.h
|
||||
.\objects\mygirouette.o: FileInclude\MyTimer.h
|
BIN
Objects/mygirouette.o
Normal file
BIN
Objects/mygirouette.o
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Objects/myvoile.crf
Normal file
BIN
Objects/myvoile.crf
Normal file
Binary file not shown.
11
Objects/myvoile.d
Normal file
11
Objects/myvoile.d
Normal file
|
@ -0,0 +1,11 @@
|
|||
.\objects\myvoile.o: MyVoile.c
|
||||
.\objects\myvoile.o: .\FileInclude\MyVoile.h
|
||||
.\objects\myvoile.o: C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\stm32f10x.h
|
||||
.\objects\myvoile.o: .\RTE\_R_el\RTE_Components.h
|
||||
.\objects\myvoile.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\core_cm3.h
|
||||
.\objects\myvoile.o: C:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
|
||||
.\objects\myvoile.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_version.h
|
||||
.\objects\myvoile.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_compiler.h
|
||||
.\objects\myvoile.o: C:\Programdata\Keil\Arm\Packs\ARM\CMSIS\5.7.0\CMSIS\Core\Include\cmsis_armcc.h
|
||||
.\objects\myvoile.o: C:\Programdata\Keil\Arm\Packs\Keil\STM32F1xx_DFP\2.3.0\Device\Include\system_stm32f10x.h
|
||||
.\objects\myvoile.o: .\FileInclude\MyTimer.h
|
BIN
Objects/myvoile.o
Normal file
BIN
Objects/myvoile.o
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
202
Projet1.uvoptx
202
Projet1.uvoptx
|
@ -125,7 +125,7 @@
|
|||
<SetRegEntry>
|
||||
<Number>0</Number>
|
||||
<Key>DLGDARM</Key>
|
||||
<Name>(1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(100=47,253,693,926,0)(110=61,96,281,556,0)(111=1226,87,1446,547,0)(1011=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(120=1283,103,1704,530,0)(121=-1,-1,-1,-1,0)(122=704,251,1125,678,0)(123=-1,-1,-1,-1,0)(140=848,409,1536,749,0)(240=-1,-1,-1,-1,0)(190=-1,-1,-1,-1,0)(200=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(130=885,128,1479,879,0)(131=1134,216,1728,967,0)(132=-1,-1,-1,-1,0)(133=-1,-1,-1,-1,0)(160=1413,241,1861,655,0)(161=-1,-1,-1,-1,0)(162=165,202,613,616,0)(210=-1,-1,-1,-1,0)(211=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(221=-1,-1,-1,-1,0)(230=-1,-1,-1,-1,0)(234=308,356,824,709,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(150=1246,187,1849,938,0)(151=-1,-1,-1,-1,0)</Name>
|
||||
<Name>(1010=1430,289,1806,846,1)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(100=15,39,661,712,0)(110=61,96,281,556,0)(111=60,88,280,548,0)(1011=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(120=1028,194,1449,621,0)(121=1016,366,1437,793,1)(122=704,251,1125,678,0)(123=-1,-1,-1,-1,0)(140=202,674,890,1014,1)(240=559,262,958,607,1)(190=-1,-1,-1,-1,0)(200=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(130=885,128,1479,879,0)(131=937,153,1531,904,0)(132=-1,-1,-1,-1,0)(133=-1,-1,-1,-1,0)(160=-1,-1,-1,-1,0)(161=-1,-1,-1,-1,0)(162=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(211=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(221=-1,-1,-1,-1,0)(230=-1,-1,-1,-1,0)(234=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(150=1246,187,1849,938,0)(151=-1,-1,-1,-1,0)</Name>
|
||||
</SetRegEntry>
|
||||
<SetRegEntry>
|
||||
<Number>0</Number>
|
||||
|
@ -138,17 +138,29 @@
|
|||
<Name>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F10x_128 -FS08000000 -FL020000 -FP0($$Device:STM32F103RB$Flash\STM32F10x_128.FLM))</Name>
|
||||
</SetRegEntry>
|
||||
</TargetDriverDllRegistry>
|
||||
<Breakpoint/>
|
||||
<Breakpoint>
|
||||
<Bp>
|
||||
<Number>0</Number>
|
||||
<Type>0</Type>
|
||||
<LineNumber>8</LineNumber>
|
||||
<EnabledFlag>1</EnabledFlag>
|
||||
<Address>134218060</Address>
|
||||
<ByteObject>0</ByteObject>
|
||||
<HtxType>0</HtxType>
|
||||
<ManyObjects>0</ManyObjects>
|
||||
<SizeOfObject>0</SizeOfObject>
|
||||
<BreakByAccess>0</BreakByAccess>
|
||||
<BreakIfRCount>1</BreakIfRCount>
|
||||
<Filename>.\FileInclude\MyGirouette.c</Filename>
|
||||
<ExecCommand></ExecCommand>
|
||||
<Expression>\\Projet1_Simulation\FileInclude/MyGirouette.c\8</Expression>
|
||||
</Bp>
|
||||
</Breakpoint>
|
||||
<WatchWindow1>
|
||||
<Ww>
|
||||
<count>0</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>USART1_DR</ItemText>
|
||||
</Ww>
|
||||
<Ww>
|
||||
<count>1</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>b</ItemText>
|
||||
<ItemText>x</ItemText>
|
||||
</Ww>
|
||||
</WatchWindow1>
|
||||
<Tracepoint>
|
||||
|
@ -171,7 +183,7 @@
|
|||
<AscS3>0</AscS3>
|
||||
<aSer3>0</aSer3>
|
||||
<eProf>0</eProf>
|
||||
<aLa>1</aLa>
|
||||
<aLa>0</aLa>
|
||||
<aPa1>0</aPa1>
|
||||
<AscS4>0</AscS4>
|
||||
<aSer4>0</aSer4>
|
||||
|
@ -196,13 +208,13 @@
|
|||
<LogicAnalyzers>
|
||||
<Wi>
|
||||
<IntNumber>0</IntNumber>
|
||||
<FirstString>((PORTA & 0x00000200) >> 9 & 0x200) >> 9</FirstString>
|
||||
<SecondString>00008000000000000000000000000000E0FFEF400000000000000000000000000000000028504F5254412026203078303030303032303029203E3E2039000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000000000000000000E03F150000000000000000000000000000000000000096020008</SecondString>
|
||||
<FirstString>((PORTC & 0x00000400) >> 10 & 0x400) >> 10</FirstString>
|
||||
<SecondString>FF000000000000000000000000000000E0FFEF400100000000000000000000000000000028504F5254432026203078303030303034303029203E3E2031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000000000000000000E03F170000000000000000000000000000000000000030040008</SecondString>
|
||||
</Wi>
|
||||
<Wi>
|
||||
<IntNumber>1</IntNumber>
|
||||
<FirstString>((PORTA & 0x00000400) >> 10 & 0x400) >> 10</FirstString>
|
||||
<SecondString>00000000000000000000000000000000E0FFEF400000000000000000000000000000000028504F5254412026203078303030303034303029203E3E2031300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000002000000000000000000E03F150000000000000000000000000000000000000096020008</SecondString>
|
||||
<FirstString>((PORTA & 0x00000008) >> 3 & 0x8) >> 3</FirstString>
|
||||
<SecondString>00800000000000000000000000000000E0FFEF400100000000000000000000000000000028504F5254412026203078303030303030303829203E3E2033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000002000000000000000000E03F17000000000000000000000000000000000000007E050008</SecondString>
|
||||
</Wi>
|
||||
</LogicAnalyzers>
|
||||
<DebugDescription>
|
||||
|
@ -314,7 +326,7 @@
|
|||
<SetRegEntry>
|
||||
<Number>0</Number>
|
||||
<Key>DLGTARM</Key>
|
||||
<Name>(1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(100=-1,-1,-1,-1,0)(110=-1,-1,-1,-1,0)(111=-1,-1,-1,-1,0)(1011=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(120=1364,310,1785,715,0)(121=-1,-1,-1,-1,0)(122=1260,243,1681,648,0)(123=-1,-1,-1,-1,0)(140=-1,-1,-1,-1,0)(240=-1,-1,-1,-1,0)(190=-1,-1,-1,-1,0)(200=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(130=-1,-1,-1,-1,0)(131=697,228,1291,922,0)(132=549,184,1143,878,0)(133=-1,-1,-1,-1,0)(160=457,182,905,596,0)(161=-1,-1,-1,-1,0)(162=-1,-1,-1,-1,0)(210=-1,-1,-1,-1,0)(211=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(221=-1,-1,-1,-1,0)(230=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(151=-1,-1,-1,-1,0)</Name>
|
||||
<Name>(1010=1507,235,1883,792,1)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)(100=-1,-1,-1,-1,0)(110=60,88,280,548,0)(111=60,88,280,548,0)(1011=-1,-1,-1,-1,0)(180=-1,-1,-1,-1,0)(120=757,193,1178,598,0)(121=96,506,517,911,1)(122=1260,243,1681,648,0)(123=-1,-1,-1,-1,0)(140=699,144,1387,484,1)(240=647,562,1046,907,1)(190=-1,-1,-1,-1,0)(200=-1,-1,-1,-1,0)(170=-1,-1,-1,-1,0)(130=150,186,744,880,0)(131=1231,145,1825,839,0)(132=-1,-1,-1,-1,0)(133=1272,303,1866,997,0)(160=-1,-1,-1,-1,0)(161=-1,-1,-1,-1,0)(162=-1,-1,-1,-1,0)(210=1580,389,1907,750,0)(211=-1,-1,-1,-1,0)(220=-1,-1,-1,-1,0)(221=-1,-1,-1,-1,0)(230=-1,-1,-1,-1,0)(231=-1,-1,-1,-1,0)(232=-1,-1,-1,-1,0)(233=-1,-1,-1,-1,0)(150=-1,-1,-1,-1,0)(151=-1,-1,-1,-1,0)</Name>
|
||||
</SetRegEntry>
|
||||
<SetRegEntry>
|
||||
<Number>0</Number>
|
||||
|
@ -347,37 +359,49 @@
|
|||
<Name>UL2CM3(-S0 -C0 -P0 -FD20000000 -FC1000 -FN1 -FF0STM32F10x_128 -FS08000000 -FL020000 -FP0($$Device:STM32F103RB$Flash\STM32F10x_128.FLM))</Name>
|
||||
</SetRegEntry>
|
||||
</TargetDriverDllRegistry>
|
||||
<Breakpoint/>
|
||||
<Breakpoint>
|
||||
<Bp>
|
||||
<Number>0</Number>
|
||||
<Type>0</Type>
|
||||
<LineNumber>8</LineNumber>
|
||||
<EnabledFlag>1</EnabledFlag>
|
||||
<Address>134218060</Address>
|
||||
<ByteObject>0</ByteObject>
|
||||
<HtxType>0</HtxType>
|
||||
<ManyObjects>0</ManyObjects>
|
||||
<SizeOfObject>0</SizeOfObject>
|
||||
<BreakByAccess>0</BreakByAccess>
|
||||
<BreakIfRCount>1</BreakIfRCount>
|
||||
<Filename>.\FileInclude\MyGirouette.c</Filename>
|
||||
<ExecCommand></ExecCommand>
|
||||
<Expression>\\Projet1_Simulation\FileInclude/MyGirouette.c\8</Expression>
|
||||
</Bp>
|
||||
</Breakpoint>
|
||||
<WatchWindow1>
|
||||
<Ww>
|
||||
<count>0</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>test</ItemText>
|
||||
<ItemText>k,0x0A</ItemText>
|
||||
</Ww>
|
||||
<Ww>
|
||||
<count>1</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>b,0x0A</ItemText>
|
||||
<ItemText>m</ItemText>
|
||||
</Ww>
|
||||
<Ww>
|
||||
<count>2</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>ismoins100</ItemText>
|
||||
<ItemText>a</ItemText>
|
||||
</Ww>
|
||||
<Ww>
|
||||
<count>3</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>is100</ItemText>
|
||||
<ItemText>ID_acc,0x10</ItemText>
|
||||
</Ww>
|
||||
<Ww>
|
||||
<count>4</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>c</ItemText>
|
||||
</Ww>
|
||||
<Ww>
|
||||
<count>5</count>
|
||||
<WinNumber>1</WinNumber>
|
||||
<ItemText>bat,0x0A</ItemText>
|
||||
<ItemText>x</ItemText>
|
||||
</Ww>
|
||||
</WatchWindow1>
|
||||
<Tracepoint>
|
||||
|
@ -400,7 +424,7 @@
|
|||
<AscS3>0</AscS3>
|
||||
<aSer3>0</aSer3>
|
||||
<eProf>0</eProf>
|
||||
<aLa>1</aLa>
|
||||
<aLa>0</aLa>
|
||||
<aPa1>0</aPa1>
|
||||
<AscS4>0</AscS4>
|
||||
<aSer4>0</aSer4>
|
||||
|
@ -465,18 +489,6 @@
|
|||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c</PathWithFileName>
|
||||
<FilenameWithoutPath>Driver_GPIO.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>3</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\MyTimer.c</PathWithFileName>
|
||||
<FilenameWithoutPath>MyTimer.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
|
@ -484,19 +496,7 @@
|
|||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>4</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\MyTimer.h</PathWithFileName>
|
||||
<FilenameWithoutPath>MyTimer.h</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>5</FileNumber>
|
||||
<FileNumber>3</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
|
@ -506,87 +506,39 @@
|
|||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>4</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Driver_GPIO.c</PathWithFileName>
|
||||
<FilenameWithoutPath>Driver_GPIO.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>5</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>1</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\MyGirouette.c</PathWithFileName>
|
||||
<FilenameWithoutPath>MyGirouette.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>6</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\MyADC.h</PathWithFileName>
|
||||
<FilenameWithoutPath>MyADC.h</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>7</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Plateau.c</PathWithFileName>
|
||||
<FilenameWithoutPath>Plateau.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>8</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Telecommande.c</PathWithFileName>
|
||||
<FilenameWithoutPath>Telecommande.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>9</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Plateau.h</PathWithFileName>
|
||||
<FilenameWithoutPath>Plateau.h</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>10</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Telecommande.h</PathWithFileName>
|
||||
<FilenameWithoutPath>Telecommande.h</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>11</FileNumber>
|
||||
<FileType>1</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Batterie.c</PathWithFileName>
|
||||
<FilenameWithoutPath>Batterie.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
<File>
|
||||
<GroupNumber>2</GroupNumber>
|
||||
<FileNumber>12</FileNumber>
|
||||
<FileType>5</FileType>
|
||||
<tvExp>0</tvExp>
|
||||
<tvExpOptDlg>0</tvExpOptDlg>
|
||||
<bDave2>0</bDave2>
|
||||
<PathWithFileName>.\FileInclude\Batterie.h</PathWithFileName>
|
||||
<FilenameWithoutPath>Batterie.h</FilenameWithoutPath>
|
||||
<PathWithFileName>.\MyVoile.c</PathWithFileName>
|
||||
<FilenameWithoutPath>MyVoile.c</FilenameWithoutPath>
|
||||
<RteFlg>0</RteFlg>
|
||||
<bShared>0</bShared>
|
||||
</File>
|
||||
|
|
|
@ -393,60 +393,30 @@
|
|||
<Group>
|
||||
<GroupName>MesDrivers</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>Driver_GPIO.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyTimer.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\MyTimer.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyTimer.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\MyTimer.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyADC.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\MyADC.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyADC.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\MyADC.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Plateau.c</FileName>
|
||||
<FileName>Driver_GPIO.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\Plateau.c</FilePath>
|
||||
<FilePath>.\FileInclude\Driver_GPIO.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Telecommande.c</FileName>
|
||||
<FileName>MyGirouette.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\Telecommande.c</FilePath>
|
||||
<FilePath>.\FileInclude\MyGirouette.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Plateau.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\Plateau.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Telecommande.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\Telecommande.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Batterie.c</FileName>
|
||||
<FileName>MyVoile.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\Batterie.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Batterie.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\Batterie.h</FilePath>
|
||||
<FilePath>.\MyVoile.c</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
|
@ -845,60 +815,30 @@
|
|||
<Group>
|
||||
<GroupName>MesDrivers</GroupName>
|
||||
<Files>
|
||||
<File>
|
||||
<FileName>Driver_GPIO.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>U:\Documents\4ir\S1\Microcontroleur\Drivers\FileInclude\Driver_GPIO.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyTimer.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\MyTimer.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyTimer.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\MyTimer.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyADC.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\MyADC.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>MyADC.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\MyADC.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Plateau.c</FileName>
|
||||
<FileName>Driver_GPIO.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\Plateau.c</FilePath>
|
||||
<FilePath>.\FileInclude\Driver_GPIO.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Telecommande.c</FileName>
|
||||
<FileName>MyGirouette.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\Telecommande.c</FilePath>
|
||||
<FilePath>.\FileInclude\MyGirouette.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Plateau.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\Plateau.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Telecommande.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\Telecommande.h</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Batterie.c</FileName>
|
||||
<FileName>MyVoile.c</FileName>
|
||||
<FileType>1</FileType>
|
||||
<FilePath>.\FileInclude\Batterie.c</FilePath>
|
||||
</File>
|
||||
<File>
|
||||
<FileName>Batterie.h</FileName>
|
||||
<FileType>5</FileType>
|
||||
<FilePath>.\FileInclude\Batterie.h</FilePath>
|
||||
<FilePath>.\MyVoile.c</FilePath>
|
||||
</File>
|
||||
</Files>
|
||||
</Group>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/**
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file system_stm32f10x.c
|
||||
* @author MCD Application Team
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
#include <Plateau.h>
|
||||
#include <Telecommande.h>
|
||||
#include <Batterie.h>
|
||||
#include <MyGirouette.h>
|
||||
#include <MyVoile.h>
|
||||
|
||||
int droite;
|
||||
int b;
|
||||
|
@ -27,19 +29,22 @@ void f (char a) {
|
|||
}
|
||||
|
||||
|
||||
|
||||
int main (void)
|
||||
{
|
||||
|
||||
char* visuBatterie = "[-----]";
|
||||
/* Pour la telecommande */
|
||||
Init_USART(USART1);
|
||||
/*Init_Message_Reception(&f);
|
||||
Init_Plateau();*/
|
||||
|
||||
Init_Message_Reception(&f);
|
||||
Init_Plateau();
|
||||
Init_Girouette();
|
||||
MyVoile_Init();
|
||||
|
||||
/* Batterie */
|
||||
Init_Batterie();
|
||||
while (1) {
|
||||
Set_Voile(Get_Angle());
|
||||
bat = Get_Batterie();
|
||||
if (bat < 20) {
|
||||
visuBatterie = "[-----]";
|
||||
|
@ -57,4 +62,11 @@ int main (void)
|
|||
Send_Message(visuBatterie);
|
||||
Send_Message("\r");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
do {
|
||||
}
|
||||
while (1);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue