Compare commits
13 commits
Author | SHA1 | Date | |
---|---|---|---|
0039eddc4e | |||
574670718b | |||
fe352d342d | |||
a952effbaa | |||
75c907efc8 | |||
3c2cf648cd | |||
6142877aec | |||
e06f63afdb | |||
ff290776d5 | |||
7b3c68a4b5 | |||
95fffa02f5 | |||
12752ff03b | |||
c930991ccb |
37 changed files with 2314 additions and 250 deletions
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
@ -1,6 +1,11 @@
|
|||
{
|
||||
"files.associations": {
|
||||
"driver_uart.h": "c",
|
||||
<<<<<<< HEAD
|
||||
"driver_imu.h": "c",
|
||||
"myspi.h": "c"
|
||||
=======
|
||||
"app_girouette.h": "c"
|
||||
>>>>>>> encoder
|
||||
}
|
||||
}
|
|
@ -47,17 +47,20 @@ void driver_adc_1_init (char Prio, void (*IT_function)(void))
|
|||
ADC1_2_fx = IT_function;
|
||||
}
|
||||
|
||||
/* Fonction de lancement*/
|
||||
void driver_adc_1_launch_read (void)
|
||||
{
|
||||
//Lancement de la conversion
|
||||
ADC1->CR2 |= ADC_CR2_SWSTART;
|
||||
}
|
||||
|
||||
/*Lecture de la converstion*/
|
||||
uint16_t driver_adc_1_read (void)
|
||||
{
|
||||
//Retour de la conversion
|
||||
return ADC1->DR &~ ((0x0F) << 12);
|
||||
}
|
||||
|
||||
void ADC1_2_IRQHandler(void)
|
||||
{
|
||||
//On abaisse le flag pour la prochaine lecture
|
||||
|
|
|
@ -2,8 +2,33 @@
|
|||
#define DRIVER_ADC_H
|
||||
#include "stm32f10x.h"
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Activation et configuration de l'ADC1.
|
||||
* @param -> char Prio: défini la priorité de l'interruption pour le flag EOC
|
||||
-> void (*IT_function)(void) : pointeur de fonction qui sera appelé dans l'interruption
|
||||
* @Note -> Fonction à lancer systématiquement avant d’aller plus en détail
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void driver_adc_1_init (char Prio, void (*IT_function)(void));
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour lancer la convertion
|
||||
* @param -> none
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void driver_adc_1_launch_read (void);
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour lire la valeur convertie
|
||||
* @param -> none
|
||||
* @return -> retour de la valeur convertie
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
uint16_t driver_adc_1_read (void);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#include "Driver_GPIO.h"
|
||||
#include "stm32f10x.h"
|
||||
#include "stdio.h"
|
||||
|
||||
/* GPIO init function */
|
||||
void MyGPIO_Init ( MyGPIO_Struct_TypeDef * GPIOStructPtr )
|
||||
{
|
||||
|
@ -45,21 +46,25 @@ void MyGPIO_Init ( MyGPIO_Struct_TypeDef * GPIOStructPtr )
|
|||
GPIOStructPtr->GPIO->ODR |= 0x1<<(GPIOStructPtr->GPIO_Pin);
|
||||
}
|
||||
}
|
||||
|
||||
/* Read of the state of the GPIO */
|
||||
int MyGPIO_Read ( GPIO_TypeDef * GPIO , char GPIO_Pin )
|
||||
{
|
||||
return ((GPIO->IDR & (0x1<<GPIO_Pin))>>GPIO_Pin);
|
||||
}
|
||||
|
||||
/* Set the state of the GPIO */
|
||||
void MyGPIO_Set (GPIO_TypeDef * GPIO , char GPIO_Pin)
|
||||
{
|
||||
GPIO->ODR |= 0x1<<GPIO_Pin;
|
||||
}
|
||||
|
||||
/* Reset the state of the GPIO */
|
||||
void MyGPIO_Reset (GPIO_TypeDef * GPIO , char GPIO_Pin)
|
||||
{
|
||||
GPIO->ODR &= ~(0x1<<GPIO_Pin);
|
||||
}
|
||||
|
||||
/* Toogle the state of the GPIO */
|
||||
void MyGPIO_Toggle ( GPIO_TypeDef * GPIO , char GPIO_Pin )
|
||||
{
|
||||
|
|
|
@ -17,9 +17,48 @@ typedef struct
|
|||
#define AltOut_Ppull 0xA
|
||||
#define AltOut_OD 0xE
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction d'initialisation pour les GPIO
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le pin, le port et la conf du GPIO
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyGPIO_Init ( MyGPIO_Struct_TypeDef * GPIOStructPtr );
|
||||
int MyGPIO_Read ( GPIO_TypeDef * GPIO , char GPIO_Pin ) ; // renvoie 0 ou autre chose different de 0
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour lire l'<EFBFBD>tat de la GPIO
|
||||
* @param : Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le pin et le port
|
||||
* @return : Renvoie 0 ou autre chose diff<EFBFBD>rent de 0
|
||||
*************************************************************************************************
|
||||
*/
|
||||
int MyGPIO_Read ( GPIO_TypeDef * GPIO , char GPIO_Pin );
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour set le pin voulu
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le pin et le port
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyGPIO_Set ( GPIO_TypeDef * GPIO , char GPIO_Pin );
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour reset le pin voulu
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le pin et le port
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyGPIO_Reset ( GPIO_TypeDef * GPIO , char GPIO_Pin );
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour toogle le pin voulu
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le pin et le port
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyGPIO_Toggle ( GPIO_TypeDef * GPIO , char GPIO_Pin ) ;
|
||||
#endif
|
||||
|
|
63
driver/Driver_IMU.c
Normal file
63
driver/Driver_IMU.c
Normal file
|
@ -0,0 +1,63 @@
|
|||
#include "MySpi.h"
|
||||
|
||||
const char POWER_CTL = 0x2D; //Power Control Register
|
||||
const char BW_RATE = 0x2C;
|
||||
const char DATA_FORMAT = 0x31;
|
||||
|
||||
/*fonction écriture registre IMU*/
|
||||
void driver_IMU_write_register(char registerAddress, char value)
|
||||
{
|
||||
// On s'assure que le Chip Select est bien au niveau bas
|
||||
MySPI_Clear_NSS();
|
||||
// Envoi de l'adresse du registre par SPI
|
||||
MySPI_Send(registerAddress);
|
||||
// Envoi de la valeur désirée du registre par SPI
|
||||
MySPI_Send(value);
|
||||
// On active le chip select
|
||||
MySPI_Set_NSS();
|
||||
}
|
||||
|
||||
/* Fonction d'initialisation*/
|
||||
void driver_IMU_init(void)
|
||||
{
|
||||
/* FSCK = 281kHz, Repos SCK = '1', Front actif = up
|
||||
Gestion /CS logicielle à part, configure les 4 IO
|
||||
- SCK, MOSI : Out Alt push pull
|
||||
- MISO : floating input
|
||||
- /NSS (/CS) : Out push pull */
|
||||
MySPI_Init(SPI1);
|
||||
//Paramètrage du registre POWER_CTL
|
||||
driver_IMU_write_register(POWER_CTL, 0x08);
|
||||
//Paramètrage du registe BW_RATE
|
||||
driver_IMU_write_register(BW_RATE, 0x0A);
|
||||
//Paramètrage du registre DATA_FORMAT
|
||||
driver_IMU_write_register(BW_RATE, 0x08); //Full resolution, et alignement à droite
|
||||
|
||||
}
|
||||
|
||||
/* Fonction de lecture des données*/
|
||||
/*
|
||||
@param *values : Les valeurs x, y, z sont chacune stockée sur 2 octets dans le tableau values
|
||||
x = values[1]<<8 & value[0];
|
||||
y = values[3]<<8 & value[2];
|
||||
z = values[5]<<8 & value[4];
|
||||
@param numBytes : Le nombre de registre à lire à partir de registerAddress
|
||||
@param registerAddress : Adresse du premier registre à lire*/
|
||||
void driver_IMU_read(char registerAddress, int numBytes, unsigned char * values)
|
||||
{
|
||||
int i;
|
||||
// Pour effectuer une lecture des registre, on doit mettre les bits R/W et MB à 1
|
||||
char trame = registerAddress | 0x80;
|
||||
trame = trame | 0x40;
|
||||
// On active le chip select (niveau bas)
|
||||
MySPI_Clear_NSS();
|
||||
// Envoie de la config
|
||||
MySPI_Send(trame);
|
||||
// On effectue la lecture
|
||||
for(i=0; i<numBytes; i++)
|
||||
{
|
||||
values[i] = MySPI_Read();
|
||||
}
|
||||
// On met le Chip Select au niveau haut
|
||||
MySPI_Set_NSS();
|
||||
}
|
26
driver/Driver_IMU.h
Normal file
26
driver/Driver_IMU.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef IMU_H_
|
||||
#define IMU_H_
|
||||
|
||||
#include "stm32f10x.h"
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction d'initialisation de l'IMU
|
||||
* @param -> none
|
||||
* @Note -> Fonction a appelé avant l'utilisation du périphérique
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void driver_IMU_init(void);
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction de lecture des données de l'IMU
|
||||
* @param -> char registerAddress : adresse du registre
|
||||
* -> int numBytes : nombre de bytes à recevoir
|
||||
* -> unsigned char * values : tableau où les valeurs seront stockés
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void driver_IMU_read(char registerAddress, int numBytes, unsigned char * values);
|
||||
|
||||
#endif
|
44
driver/Driver_SPI.c
Normal file
44
driver/Driver_SPI.c
Normal file
|
@ -0,0 +1,44 @@
|
|||
#include "stm32f10x.h"
|
||||
#include "stdio.h"
|
||||
#include "Driver_SPI.h"
|
||||
|
||||
void driver_spi_1_init(char Prio, void (*IT_function)(void))
|
||||
{
|
||||
/*Activation de la clock*/
|
||||
RCC->APB2ENR = RCC_APB2ENR_SPI1EN;
|
||||
/*Select the freq*/
|
||||
SPI1->CR1 |= SPI_CR1_BR_1; //5Mhz max -> fPCLK = 36Mhz -> 010: fPCLK/8
|
||||
/*Select Master mode*/
|
||||
SPI1->CR1 |= SPI_CR1_MSTR;
|
||||
/*Software slave management*/
|
||||
SPI1->CR1 |= SPI_CR1_SSM;
|
||||
/*Clock Phase Selection*/
|
||||
SPI1->CR1 |= SPI_CR1_CPHA;
|
||||
/*Clock Polarity Selection*/
|
||||
SPI1->CR1 |= SPI_CR1_CPOL;
|
||||
/*Mode 16bits - 16-bit data frame format*/
|
||||
//SPI1->CR1 |= SPI_CR1_DFF;
|
||||
/*Activation de l'interruption*/
|
||||
SPI1->CR2 |= SPI_CR2_RXNEIE;
|
||||
NVIC_EnableIRQ(SPI_IRQn);
|
||||
NVIC_SetPriority(ADC1_2_IRQn, Prio);
|
||||
/*Vider le buffer d'emission/réception 0xFFFF*/
|
||||
SPI1->DR = SPI_DR_DR;
|
||||
/*Enable SPI*/
|
||||
SPI1->CR1 |= SPI_CR1_SPE;
|
||||
}
|
||||
|
||||
void driver_spi_1_write(uint16_t data_write)
|
||||
{
|
||||
SPI1->DR = data_write;
|
||||
/*Active la sélection du SLAVE*/
|
||||
SPI1->CR1 |= SPI_CR1_SSI;
|
||||
}
|
||||
|
||||
uint16_t driver_spi_1_read()
|
||||
{
|
||||
//Abaissage automatique du flag RxNE
|
||||
return SPI1->DR;
|
||||
}
|
||||
|
||||
|
5
driver/Driver_SPI.h
Normal file
5
driver/Driver_SPI.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
#ifndef DRIVER_SPI_H
|
||||
#define DRIVER_SPI_H
|
||||
#include "stm32f10x.h"
|
||||
|
||||
#endif
|
|
@ -1,6 +1,7 @@
|
|||
#include "Driver_Timer.h"
|
||||
#include "stm32f10x.h"
|
||||
#include "stdio.h"
|
||||
|
||||
/* Timer init function */
|
||||
void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer)
|
||||
{
|
||||
|
@ -26,62 +27,49 @@ void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer)
|
|||
Timer->Timer->ARR = Timer->ARR;
|
||||
}
|
||||
|
||||
|
||||
/* Start function */
|
||||
void MyTimer_Start(MyTimer_Struct_TypeDef * Timer)
|
||||
{
|
||||
Timer->Timer->CR1 |= TIM_CR1_CEN;
|
||||
}
|
||||
|
||||
/* Stop function*/
|
||||
void MyTimer_Stop(MyTimer_Struct_TypeDef * Timer)
|
||||
{
|
||||
Timer->Timer->CR1 &= ~TIM_CR1_CEN;
|
||||
}
|
||||
|
||||
// Note : PWM Tested on PA0 and PA1
|
||||
void MyTimer_ConfigurePWM(MyTimer_Struct_TypeDef *Timer, uint16_t duty_cycle) {
|
||||
// Note : PWM Tested on PA0
|
||||
/*Configuration PWM*/
|
||||
void MyTimer_ConfigurePWM(MyTimer_Struct_TypeDef *Timer, uint8_t channel, uint16_t duty_cycle) {
|
||||
|
||||
uint16_t CCR_Value = (duty_cycle * TIM2->ARR) / 100;
|
||||
|
||||
// Configurer le Channel
|
||||
if (Timer->channel == 1) {
|
||||
Timer->Timer->CCMR1 = TIM_CCMR1_OC1M_2 | TIM_CCMR1_OC1M_1;
|
||||
Timer->Timer->CCMR1 |= TIM_CCMR1_OC1PE; // activer la précharge du registre de comparaison
|
||||
Timer->Timer->CCMR1 |= TIM_CCMR1_OC1PE; // activer la pr<EFBFBD>charge du registre de comparaison
|
||||
Timer->Timer->CCER |= TIM_CCER_CC1E;
|
||||
Timer->Timer->CCR1 = CCR_Value;
|
||||
} else if (Timer->channel == 2) {
|
||||
Timer->Timer->CCMR1 = TIM_CCMR1_OC2M_2 | TIM_CCMR1_OC2M_1;
|
||||
Timer->Timer->CCMR1 |= TIM_CCMR1_OC2PE; // activer la précharge du registre de comparaison
|
||||
Timer->Timer->CCMR1 |= TIM_CCMR1_OC2PE; // activer la pr<EFBFBD>charge du registre de comparaison
|
||||
Timer->Timer->CCER |= TIM_CCER_CC2E;
|
||||
Timer->Timer->CCR2 = CCR_Value;
|
||||
} else if (Timer->channel == 3) {
|
||||
Timer->Timer->CCMR2 = TIM_CCMR2_OC3M_2 | TIM_CCMR2_OC3M_1;
|
||||
Timer->Timer->CCMR2 |= TIM_CCMR2_OC3PE; // activer la précharge du registre de comparaison
|
||||
Timer->Timer->CCMR2 |= TIM_CCMR2_OC3PE; // activer la pr<EFBFBD>charge du registre de comparaison
|
||||
Timer->Timer->CCER |= TIM_CCER_CC3E;
|
||||
Timer->Timer->CCER &= ~TIM_CCER_CC3P;
|
||||
Timer->Timer->CCR3 = CCR_Value;
|
||||
} else if (Timer->channel == 4) {
|
||||
Timer->Timer->CCMR2 = TIM_CCMR2_OC4M_2 | TIM_CCMR2_OC4M_1;
|
||||
Timer->Timer->CCMR2 |= TIM_CCMR2_OC4PE; // activer la précharge du registre de comparaison
|
||||
Timer->Timer->CCMR2 |= TIM_CCMR2_OC4PE; // activer la pr<EFBFBD>charge du registre de comparaison
|
||||
Timer->Timer->CCER |= TIM_CCER_CC4E;
|
||||
Timer->Timer->CCR4 = CCR_Value;
|
||||
}
|
||||
}
|
||||
|
||||
void MyTimer_SetPWMDutyCycle(MyTimer_Struct_TypeDef *Timer, uint16_t duty_cycle) {
|
||||
uint16_t CCR_Value = (duty_cycle * TIM2->ARR) / 100;
|
||||
|
||||
if (Timer->channel == 1) {
|
||||
Timer->Timer->CCR1 = CCR_Value;
|
||||
} else if (Timer->channel == 2) {
|
||||
Timer->Timer->CCR2 = CCR_Value;
|
||||
} else if (Timer->channel == 3) {
|
||||
Timer->Timer->CCER &= ~TIM_CCER_CC3P;
|
||||
Timer->Timer->CCR3 = CCR_Value;
|
||||
} else if (Timer->channel == 4) {
|
||||
Timer->Timer->CCR4 = CCR_Value;
|
||||
}
|
||||
}
|
||||
|
||||
// Utiliser le TIM4
|
||||
void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer) {
|
||||
Timer->Timer->PSC = 0; // Configurer le prescaler à 0 (pour diviser l'horloge de base de 72 MHz par 1)
|
||||
|
@ -114,15 +102,16 @@ void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer) {
|
|||
NVIC_EnableIRQ(EXTI3_IRQn);
|
||||
}
|
||||
|
||||
|
||||
void Bug (void)
|
||||
{
|
||||
while(1);
|
||||
}
|
||||
|
||||
void (*TIM2_fx) (void) = &Bug;
|
||||
void (*TIM3_fx) (void) = &Bug;
|
||||
void (*TIM4_fx) (void) = &Bug;
|
||||
|
||||
/* Interrupt function */
|
||||
void MyTimer_ActiveIT (TIM_TypeDef * Timer, char Prio, void (*IT_function)(void))
|
||||
{
|
||||
Timer->DIER |= TIM_DIER_UIE;
|
||||
|
|
|
@ -13,43 +13,57 @@ typedef struct
|
|||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) contenant les informations de base
|
||||
* @Note -> Fonction <EFBFBD> lancer syst<EFBFBD>matiquement avant d<EFBFBD>aller plus en d<EFBFBD>tail dans les conf plus fines (PWM, codeur inc...)
|
||||
*************************************************************************************************
|
||||
* @brief Initialisation du timer
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) contenant les informations du timer
|
||||
* @Note -> Fonction <EFBFBD> lancer syst<EFBFBD>matiquement avant d<EFBFBD>aller plus en d<EFBFBD>tail dans les conf plus fines (PWM, codeur inc...)*************************************************************************************************
|
||||
*/
|
||||
void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer);
|
||||
|
||||
/*#define MyTimer_Base_Start(Timer) ...
|
||||
#define MyTimer_Base_Stop(Timer) ...
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour lancer le timer voulu
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le num<EFBFBD>ro du timer
|
||||
* @Note ->
|
||||
*************************************************************************************************
|
||||
*/
|
||||
|
||||
void MyTimer_Start(MyTimer_Struct_TypeDef * Timer);
|
||||
void MyTimer_Stop(MyTimer_Struct_TypeDef * Timer) ;
|
||||
|
||||
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour arr<EFBFBD>ter le timer voulu
|
||||
* @param -> Param<EFBFBD>tre sous forme d<EFBFBD>une structure (son adresse) qui d<EFBFBD>fini le num<EFBFBD>ro du timer
|
||||
* @Note
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyTimer_Stop(MyTimer_Struct_TypeDef * Timer);
|
||||
/**
|
||||
**************************************************************************************************
|
||||
* @brief
|
||||
* @param : -TIM_TypeDef * Timer : Timer concerne
|
||||
- char Prio: de 0 a 15
|
||||
* @Note : La fonction MyTimer_Base_Init doit avoir ete lancee au prealable
|
||||
* @brief Active une interruption utilisant un timer
|
||||
* @param : -TIM_TypeDef * Timer : Timer concern<EFBFBD>
|
||||
* - char Prio: de 0 a 15
|
||||
* @Note : La fonction MyTimer_Base_Init doit avoir <EFBFBD>t<EFBFBD> lanc<EFBFBD>e au prealable
|
||||
**************************************************************************************************
|
||||
*/
|
||||
void MyTimer_ActiveIT (TIM_TypeDef * Timer, char Prio, void (*IT_function)(void));
|
||||
|
||||
/**
|
||||
* @brief
|
||||
* @param
|
||||
* @Note Active le channel sp<EFBFBD>cifi<EFBFBD> sur Timer le timer sp<EFBFBD>cifi<EFBFBD>
|
||||
* la gestion de la configuration I/O n<EFBFBD>est pas faite dans cette fonction
|
||||
* ni le r<EFBFBD>glage de la p<EFBFBD>riode de la PWM (ARR, PSC)
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour le timer du PWM
|
||||
* @param : -TIM_TypeDef * Timer : Timer concern<EFBFBD>
|
||||
* - char Channel : channel du PWM concern<EFBFBD>
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyTimer_PWM(TIM_TypeDef * Timer, char Channel);
|
||||
|
||||
void MyTimer_ConfigurePWM(MyTimer_Struct_TypeDef *Timer, uint16_t duty_cycle);
|
||||
|
||||
void MyTimer_SetPWMDutyCycle(MyTimer_Struct_TypeDef *Timer, uint16_t duty_cycle);
|
||||
/**
|
||||
*************************************************************************************************
|
||||
* @brief Fonction pour configurer le PWM
|
||||
* @param : -TIM_TypeDef * Timer : Timer concern<EFBFBD>
|
||||
* - uint8_t pwm_channel : choix du channel du PWM utilis<EFBFBD>
|
||||
* - uint16_t duty_cycle : choix du temps <EFBFBD> la l'<EFBFBD>tat haut
|
||||
*************************************************************************************************
|
||||
*/
|
||||
void MyTimer_ConfigurePWM(MyTimer_Struct_TypeDef *Timer, uint8_t pwm_channel, uint16_t duty_cycle);
|
||||
|
||||
void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer);
|
||||
|
||||
|
|
BIN
driver/Lib_Com_Periph_2022.lib
Normal file
BIN
driver/Lib_Com_Periph_2022.lib
Normal file
Binary file not shown.
229
driver/MyI2C.h
Normal file
229
driver/MyI2C.h
Normal file
|
@ -0,0 +1,229 @@
|
|||
#ifndef _I2C_
|
||||
#define _I2C_
|
||||
|
||||
#include "stm32f10x.h"
|
||||
|
||||
/*************************************************************************************
|
||||
===================== By Periph team INSA GEI 2022 ===========================
|
||||
*************************************************************************************/
|
||||
|
||||
/*
|
||||
*************************************************************************************
|
||||
===================== I2C les IO STM32F103 =================================
|
||||
*************************************************************************************
|
||||
|
||||
Les IO sont pris en charge par la lib, pas besoin de faire les configurations Alt OD.
|
||||
|
||||
**I2C1**
|
||||
SCL PB6
|
||||
SDA PB7
|
||||
|
||||
**I2C2**
|
||||
SCL PB10
|
||||
SDA PB11
|
||||
|
||||
|
||||
*************************************************************************************
|
||||
==================== Fondamentaux I2C ==========================================
|
||||
*************************************************************************************
|
||||
- Bus synchrone Low speed (<100kHz) ou high speed (=400kHz), Ici Low speed 100kHz.
|
||||
- Transfert octet par octet, poids fort en premier, avec aquittement pour chaque octet
|
||||
- Deux lignes SDA et SCL (horloge) en open drain, repos '1'
|
||||
- bit "normal" = SDA stable lors du pulse SCL (ie durant l'état haut de SCL, SDA est stable)
|
||||
- bit Start/Stop/Restart = SDA non stable lorsque SCL vaut '1' (violation règle précédente)
|
||||
* Start : front descendant de SDA lorsque SCL vaut '1'
|
||||
* Stop : front montant de SDA lorsque SCL = '1'
|
||||
* Restart = Start en cours de trame (typiquement pour changer Write/read).
|
||||
- uC en Mode Master uniquement (c'est notre choix) : c'est le uC qui est maître de l'horloge SCL.
|
||||
- Le Slave a une @ 7 bits. On ajoute un bit LSB qui est /WR (donc 0 pour écriture, 1 pour lecture)
|
||||
- Une adresse s'écrit donc |a6 a5 a4 a3 a2 a1 a0 /WR| ce qui donne 8 bits. Elle indique une future
|
||||
lecture ou écriture.
|
||||
On parle d'@ 7 bits en regroupant |a6 a5 a4 a3 a2 a1 a0|
|
||||
On parle d'@ 8 bits en regroupant |a6 a5 a4 a3 a2 a1 a0 /WR| (donc une @ écriture, une @ lecture)
|
||||
NB : préférer le concept @7bits...c'est plus clair.
|
||||
|
||||
- On peut lire ou écrire une ou plusieurs données à la suite. C'est lors de l'envoie de l'adresse Slave
|
||||
par le Master que le sens à venir pour les datas est indiqué.
|
||||
- En écriture,
|
||||
* les Ack sont faits par le slave après chaque octet envoyé par le master (Ack = mise à 0 le bit 9).
|
||||
- En lecture,
|
||||
* dès que le l@ slave est transmise (/RW = 1), et le Ack réalisé, le slave positionne le bit 7
|
||||
du prochain octet à lire sur SDA par anticipation ,
|
||||
* le master enchaîne ses pulses (9), lors du pulse 9 (le dernier) c'est le master qui acquite.
|
||||
* Après chaque acquitement, le Slave amorce le prochain octet en positionnant son bit 7 sur SDA
|
||||
* Après le dernier octet, le Master génère un stop.
|
||||
* Pour pouvoir générer le stop, le Master doit piloter SDA, or ce n'est pas possible puisque
|
||||
le Slave positionne le futur bit 7 ... Pour régler ce problème :
|
||||
lors du dernier transfert, le Master N'acquitte PAS (NACK). Ainsi le Slave ne
|
||||
propose plus le bit 7 du prochain octet sur SDA et libère SDA. Le Master peut alors clôturer la
|
||||
communication avec un Stop.
|
||||
|
||||
|
||||
|
||||
|
||||
======= Echange typique avec un Slave ================================================================
|
||||
- Une lecture ou écriture se fait vers un Slave et à partir d'une adresse mémoire donnée (pointeur interne).
|
||||
Ce pointeur est automatiquement incrémenté dans le slave lors des accès écriture ou lecture.
|
||||
|
||||
- Ecriture de N octets , trame complète (@ = adresse slave, pt = valeur de chargement du pointeur interne)
|
||||
|Start Cond |@6|@5|@4|@3|@2|@1|@0| Wr =0 |Slave ACK|
|
||||
|pt7|pt6|pt5|pt4|pt3|pt2|pt1|pt0|Slave ACK|
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Slave ACK| (data 1)
|
||||
.....
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Salve ACK|Stop Cond| (data N)
|
||||
|
||||
- Lecture de N octets à partir d'une adresse de pointeur donnée
|
||||
|Start Cond |@6|@5|@4|@3|@2|@1|@0| Wr =0 |Slave ACK|
|
||||
|pt7|pt6|pt5|pt4|pt3|pt2|pt1|pt0|Slave ACK|
|
||||
|ReStart Cond |@6|@5|@4|@3|@2|@1|@0| Wr =1 |Slave ACK| (NB: restart nécessaire pour changer écriture / lecture)
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Master ACK| (data 1)
|
||||
.....
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Master ACK| (data N-1)
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Master NACK|Stop Cond| (data N)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*************************************************************************************
|
||||
==================== La lib I2C ==========================================
|
||||
*************************************************************************************
|
||||
|
||||
3 fonctions essentielles :
|
||||
MyI2C_Init
|
||||
MyI2C_PutString
|
||||
MyI2C_GetString
|
||||
|
||||
1 fonction spéciale : MyI2C_Get_Error
|
||||
|
||||
Les fonctions Put/Get string fonctionnent sur le principe classique décrit précédemment
|
||||
(Slave@, Pter @, Data...).
|
||||
La fonction init prend parmi ses paramètres le nom d'une fct callback d'erreur.
|
||||
En fait, le driver gère en IT les erreurs possibles I2C. La fonction MyI2C_Get_Error permet de
|
||||
recevoir un code erreur.
|
||||
Il est conseillé d'utiliser ce callback. Si on tombe dedans, c'est qu'une erreur s'est produite.
|
||||
Si le code erreur est "inconnu", souvent c'est qu'il y a un soucis à l'adressage slave:
|
||||
Vérifier alors la connectique physique SDA/SCL ainsi que l'alimentation du slave ou tout simplement
|
||||
l'@ slave !
|
||||
|
||||
|
||||
==========================================================================================*/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*=========================================================================================
|
||||
GESTION ERREURS
|
||||
========================================================================================= */
|
||||
typedef enum
|
||||
{
|
||||
OK,
|
||||
BusError, //
|
||||
AckFail, // Pas,d'ack
|
||||
TimeOut, // SCL est resté plus de 25ms à l'état bas
|
||||
UnknownError // IT erreur déclenchée mais pas de flag explicite ...
|
||||
} MyI2C_Err_Enum;
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief Retourne les erreurs I2C
|
||||
* @param I2Cx: where x can be 1 or 2 to select the I2C peripheral.
|
||||
* @retval Type d'erreur rencontrée , voir MyI2C_Err_Enum
|
||||
*/
|
||||
|
||||
MyI2C_Err_Enum MyI2C_Get_Error(I2C_TypeDef * I2Cx);
|
||||
|
||||
|
||||
|
||||
/*=========================================================================================
|
||||
INITIALISATION I2C
|
||||
========================================================================================= */
|
||||
|
||||
|
||||
/**
|
||||
* @brief Initialise l'interface I2C (1 ou 2)
|
||||
* @param I2Cx: where x can be 1 or 2 to select the I2C peripheral.
|
||||
* @param char IT_Prio_I2CErr 0 à 15 (utilisé en cas d'erreur, IT courte et non bloquante
|
||||
* @param *ITErr_function : callback à utiliser pour sortir d'un plantage transmission
|
||||
* @retval None
|
||||
* @Example MyI2C_Init(I2C1, 2,My_CallbackErr);
|
||||
|
||||
|
||||
|
||||
*/
|
||||
void MyI2C_Init(I2C_TypeDef * I2Cx, char IT_Prio_I2CErr, void (*ITErr_function) (void));
|
||||
|
||||
|
||||
|
||||
/*=========================================================================================
|
||||
EMISSION I2C : PutString
|
||||
========================================================================================= */
|
||||
|
||||
|
||||
// Structure de données pour l'émission ou la réception I2C :
|
||||
typedef struct
|
||||
{
|
||||
char SlaveAdress7bits; // l'adresse I2C du slave device
|
||||
char * Ptr_Data; // l'adresse du début de tableau char à recevoir/émettre (tableau en RAM uC)
|
||||
char Nb_Data; // le nbre d'octets à envoyer / recevoir
|
||||
}
|
||||
MyI2C_RecSendData_Typedef;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief|Start Cond |@6|@5|@4|@3|@2|@1|@0| Wr =0 |Slave ACK|
|
||||
|pt7|pt6|pt5|pt4|pt3|pt2|pt1|pt0|Slave ACK|
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Slave ACK| (data 1)
|
||||
.....
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Salve ACK|Stop Cond| (data N)
|
||||
|
||||
* @param I2Cx: where x can be 1 or 2 to select the I2C peripheral.
|
||||
* @param PteurAdress = adresse de démarrage écriture à l'interieur du slave I2C
|
||||
* @param DataToSend, adresse de la structure qui contient les informations à transmettre
|
||||
voir définition MyI2C_RecSendData_Typedef
|
||||
* @retval None
|
||||
* @Example MyI2C_PutString(I2C1,0xAA, &MyI2C_SendTimeData);
|
||||
* Ecrit dans le slave câblé sur I2C1 à partir de l'@ mémoire interne Slave 0xAA
|
||||
|
||||
*/
|
||||
void MyI2C_PutString(I2C_TypeDef * I2Cx, char PteurAdress, MyI2C_RecSendData_Typedef * DataToSend);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*=========================================================================================
|
||||
Réception I2C : GetString
|
||||
========================================================================================= */
|
||||
|
||||
/**
|
||||
* @brief |Start Cond |@6|@5|@4|@3|@2|@1|@0| Wr =0 |Slave ACK|
|
||||
|pt7|pt6|pt5|pt4|pt3|pt2|pt1|pt0|Slave ACK|
|
||||
|ReStart Cond |@6|@5|@4|@3|@2|@1|@0| Wr =1 |Slave ACK|
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Master ACK| (data 1)
|
||||
.....
|
||||
|d7|d6|d5|d4|d3|d2|d1|d0|Master NACK|Stop Cond| (data N)
|
||||
|
||||
* @param I2Cx: where x can be 1 or 2 to select the I2C peripheral.
|
||||
* @param PteurAdress = adresse de démarrage lecture à l'interieur du slave I2C
|
||||
* @param DataToSend, adresse de la structure qui contient les informations nécessaires à la
|
||||
réception des données voir définition MyI2C_RecSendData_Typedef
|
||||
* @retval None
|
||||
* @Example MyI2C_GetString(I2C1,0xAA, &MyI2C_RecevievedTimeData);
|
||||
Lit dans le slave câblé sur I2C1 à partir de l'@ mémoire interne Slave 0xAA
|
||||
*/
|
||||
void MyI2C_GetString(I2C_TypeDef * I2Cx, char PteurAdress, MyI2C_RecSendData_Typedef * DataToReceive);
|
||||
|
||||
|
||||
|
||||
|
||||
#endif
|
129
driver/MySPI.h
Normal file
129
driver/MySPI.h
Normal file
|
@ -0,0 +1,129 @@
|
|||
|
||||
#ifndef INC_MYSPI_H_
|
||||
#define INC_MYSPI_H_
|
||||
|
||||
#include "stm32f10x.h"
|
||||
|
||||
/*************************************************************************************
|
||||
===================== By Periph team INSA GEI 2022 ===========================
|
||||
*************************************************************************************/
|
||||
|
||||
/*
|
||||
*************************************************************************************
|
||||
===================== I2C les IO STM32F103 =================================
|
||||
*************************************************************************************
|
||||
Les IO sont pris en charge par la lib, pas besoin de faire les configurations
|
||||
|
||||
|
||||
Sur la Nucléo , le SPI1 est perturbé par la LED2 (PA5), mais doit pouvoir subir les front SCK qd même (LED clignote vite..)
|
||||
le SPI2 n'est pas utilisable car pin non connectées par défaut (sauf à modifier les SB). En fait la Nucléo fait un choix entre SPI1
|
||||
et SPI2 par soudage jumper (SB).
|
||||
|
||||
-> Utiliser SPI1 avec la carte Nucléo
|
||||
|
||||
* **IO SPI 1**
|
||||
SPI1_NSS PA4
|
||||
SPI1_SCK PA5
|
||||
SPI1_MISO PA6
|
||||
SPI1_MOSI PA7
|
||||
|
||||
**IO SPI 2**
|
||||
SPI2_NSS PB12
|
||||
SPI2_SCK PB13
|
||||
SPI2_MISO PB14
|
||||
SPI2_MOSI PB15
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
*************************************************************************************
|
||||
==================== Fondamentaux SPI ==========================================
|
||||
*************************************************************************************
|
||||
- Bus Synchrone, 4 fils (même si on peut l'utiliser en 3 fils)
|
||||
- Transfert à l'octet
|
||||
- Protocole entre un Master (contrôle SCK) et un Slave
|
||||
- SCK permet de synchroniser les bits de chaque octet. Il se configure par :
|
||||
* son niveau de repos : ici niveau '1'
|
||||
* le front actif de synchronisation pour chaque bit : ici front montant (front up durant bit stable)
|
||||
- /CS ou /NSS active le slave sur l'état bas
|
||||
- MOSI : Master Out Slave In (donc data circulant du Master vers le Slave, donc écriture dans le Slave)
|
||||
- MISO : Master In Slave Out (donc data circulant du Slave vers le Master, donc lecture du Slave)
|
||||
|
||||
Bien que la lib propose une fonction d'écriture et de lecture :
|
||||
* une écriture s'accompagne obligatoirement d'une lecture (bidon)
|
||||
* une lecture s'accompagne obligatoirement d'une écriture (bidon)
|
||||
La gestion /CS = /NSS se fait "à la main". On peut alors lire toute une série d'octets
|
||||
en laissant /CS à l'état bas pendant toute la durée de circulation des octets.
|
||||
|
||||
|
||||
*************************************************************************************
|
||||
==================== La lib SPI ==========================================
|
||||
*************************************************************************************
|
||||
|
||||
fonctions essentielles :
|
||||
|
||||
MySPI_Init
|
||||
MySPI_Send
|
||||
MySPI_Read
|
||||
MySPI_Set_NSS
|
||||
MySPI_Clear_NSS
|
||||
|
||||
|
||||
==========================================================================================*/
|
||||
|
||||
|
||||
|
||||
|
||||
/*=========================================================================================
|
||||
INITIALISATION SPI
|
||||
========================================================================================= */
|
||||
|
||||
/**
|
||||
* @brief Configure le SPI spécifié : FSCK = 281kHz, Repos SCK = '1', Front actif = up
|
||||
Gestion /CS logicielle à part, configure les 4 IO
|
||||
- SCK, MOSI : Out Alt push pull
|
||||
- MISO : floating input
|
||||
- /NSS (/CS) : Out push pull
|
||||
* @param SPI_TypeDef * SPI : SPI1 ou SPI2
|
||||
*/
|
||||
void MySPI_Init(SPI_TypeDef * SPI);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief Envoie un octet (/CS non géré, à faire logiciellement)
|
||||
Plus en détail, émission de l'octet souhaité sur MOSI
|
||||
Lecture en même temps d'un octet poubelle sur MISO (non exploité)
|
||||
* @param : char ByteToSend : l'octet à envoyer
|
||||
*/
|
||||
void MySPI_Send(char ByteToSend);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Reçoit un octet (/CS non géré, à faire logiciellement)
|
||||
Plus en détail, émission d'un octet bidon sur MOSI (0x00)
|
||||
pour élaborer les 8 fronts sur SCK et donc piloter le slave en lecture
|
||||
qui répond sur MISO
|
||||
* @param : none
|
||||
* @retval : l'octet lu.
|
||||
*/
|
||||
char MySPI_Read(void);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief Positionne /CS = /NSS à '1'. A utiliser pour borner les octets à transmettre/recevoir
|
||||
* @param : none
|
||||
*/
|
||||
void MySPI_Set_NSS(void);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @brief Positionne /CS = /NSS à '0'. A utiliser pour borner les octets à transmettre/recevoir
|
||||
* @param :none
|
||||
*/
|
||||
void MySPI_Clear_NSS(void);
|
||||
|
||||
#endif
|
|
@ -4,11 +4,23 @@ Component: Arm Compiler for Embedded 6.19 Tool: armlink [5e73cb00]
|
|||
|
||||
Section Cross References
|
||||
|
||||
<<<<<<< HEAD
|
||||
main.o(.text.main) refers to driver_adc.o(.text.driver_adc_1_launch_read) for driver_adc_1_launch_read
|
||||
main.o(.text.main) refers to driver_imu.o(.text.driver_IMU_init) for driver_IMU_init
|
||||
main.o(.text.main) refers to driver_imu.o(.text.driver_IMU_read) for driver_IMU_read
|
||||
=======
|
||||
main.o(.text.main) refers to driver_gpio.o(.text.MyGPIO_Init) for MyGPIO_Init
|
||||
main.o(.text.main) refers to driver_uart.o(.text.MyUART_Init) for MyUART_Init
|
||||
<<<<<<< HEAD
|
||||
main.o(.text.main) refers to driver_timer.o(.text.MyTimer_Base_Init) for MyTimer_Base_Init
|
||||
main.o(.text.main) refers to driver_timer.o(.text.MyTimer_ConfigureEncoder) for MyTimer_ConfigureEncoder
|
||||
main.o(.text.main) refers to driver_timer.o(.text.MyTimer_Start) for MyTimer_Start
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
main.o(.text.main) refers to app_girouette.o(.text.App_Girouette_Init) for App_Girouette_Init
|
||||
main.o(.text.main) refers to app_girouette.o(.text.App_Girouette_GetDirection) for App_Girouette_GetDirection
|
||||
main.o(.text.main) refers to driver_uart.o(.text.MyUART_SendByte) for MyUART_SendByte
|
||||
>>>>>>> encoder
|
||||
main.o(.ARM.exidx.text.main) refers to main.o(.text.main) for [Anonymous Symbol]
|
||||
app_girouette.o(.text.App_Girouette_Init) refers to driver_timer.o(.text.MyTimer_Base_Init) for MyTimer_Base_Init
|
||||
app_girouette.o(.text.App_Girouette_Init) refers to driver_timer.o(.text.MyTimer_ConfigureEncoder) for MyTimer_ConfigureEncoder
|
||||
|
@ -26,7 +38,6 @@ Section Cross References
|
|||
driver_timer.o(.ARM.exidx.text.MyTimer_Start) refers to driver_timer.o(.text.MyTimer_Start) for [Anonymous Symbol]
|
||||
driver_timer.o(.ARM.exidx.text.MyTimer_Stop) refers to driver_timer.o(.text.MyTimer_Stop) for [Anonymous Symbol]
|
||||
driver_timer.o(.ARM.exidx.text.MyTimer_ConfigurePWM) refers to driver_timer.o(.text.MyTimer_ConfigurePWM) for [Anonymous Symbol]
|
||||
driver_timer.o(.ARM.exidx.text.MyTimer_SetPWMDutyCycle) refers to driver_timer.o(.text.MyTimer_SetPWMDutyCycle) for [Anonymous Symbol]
|
||||
driver_timer.o(.ARM.exidx.text.MyTimer_ConfigureEncoder) refers to driver_timer.o(.text.MyTimer_ConfigureEncoder) for [Anonymous Symbol]
|
||||
driver_timer.o(.ARM.exidx.text.Bug) refers to driver_timer.o(.text.Bug) for [Anonymous Symbol]
|
||||
driver_timer.o(.text.MyTimer_ActiveIT) refers to driver_timer.o(.data.TIM2_fx) for TIM2_fx
|
||||
|
@ -57,12 +68,32 @@ Section Cross References
|
|||
driver_adc.o(.text.ADC1_2_IRQHandler) refers to driver_adc.o(.data.ADC1_2_fx) for ADC1_2_fx
|
||||
driver_adc.o(.ARM.exidx.text.ADC1_2_IRQHandler) refers to driver_adc.o(.text.ADC1_2_IRQHandler) for [Anonymous Symbol]
|
||||
driver_adc.o(.data.ADC1_2_fx) refers to driver_adc.o(.text.erreur) for erreur
|
||||
<<<<<<< HEAD
|
||||
driver_imu.o(.text.driver_IMU_write_register) refers to myspi.o(i.MySPI_Clear_NSS) for MySPI_Clear_NSS
|
||||
driver_imu.o(.text.driver_IMU_write_register) refers to myspi.o(i.MySPI_Send) for MySPI_Send
|
||||
driver_imu.o(.text.driver_IMU_write_register) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
driver_imu.o(.ARM.exidx.text.driver_IMU_write_register) refers to driver_imu.o(.text.driver_IMU_write_register) for [Anonymous Symbol]
|
||||
driver_imu.o(.text.driver_IMU_init) refers to myspi.o(i.MySPI_Init) for MySPI_Init
|
||||
driver_imu.o(.text.driver_IMU_init) refers to myspi.o(i.MySPI_Clear_NSS) for MySPI_Clear_NSS
|
||||
driver_imu.o(.text.driver_IMU_init) refers to myspi.o(i.MySPI_Send) for MySPI_Send
|
||||
driver_imu.o(.text.driver_IMU_init) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
driver_imu.o(.ARM.exidx.text.driver_IMU_init) refers to driver_imu.o(.text.driver_IMU_init) for [Anonymous Symbol]
|
||||
driver_imu.o(.text.driver_IMU_read) refers to myspi.o(i.MySPI_Clear_NSS) for MySPI_Clear_NSS
|
||||
driver_imu.o(.text.driver_IMU_read) refers to myspi.o(i.MySPI_Send) for MySPI_Send
|
||||
driver_imu.o(.text.driver_IMU_read) refers to myspi.o(i.MySPI_Read) for MySPI_Read
|
||||
driver_imu.o(.text.driver_IMU_read) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
driver_imu.o(.ARM.exidx.text.driver_IMU_read) refers to driver_imu.o(.text.driver_IMU_read) for [Anonymous Symbol]
|
||||
=======
|
||||
>>>>>>> encoder
|
||||
startup_stm32f10x_md.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
|
||||
startup_stm32f10x_md.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
|
||||
startup_stm32f10x_md.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
|
||||
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
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(.text.EXTI3_IRQHandler) for EXTI3_IRQHandler
|
||||
>>>>>>> encoder
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_adc.o(.text.ADC1_2_IRQHandler) for ADC1_2_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(.text.TIM2_IRQHandler) for TIM2_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(.text.TIM3_IRQHandler) for TIM3_IRQHandler
|
||||
|
@ -77,6 +108,12 @@ Section Cross References
|
|||
system_stm32f10x.o(.text.SystemCoreClockUpdate) refers to system_stm32f10x.o(.data.SystemCoreClock) for SystemCoreClock
|
||||
system_stm32f10x.o(.text.SystemCoreClockUpdate) refers to system_stm32f10x.o(.rodata.AHBPrescTable) for AHBPrescTable
|
||||
system_stm32f10x.o(.ARM.exidx.text.SystemCoreClockUpdate) refers to system_stm32f10x.o(.text.SystemCoreClockUpdate) for [Anonymous Symbol]
|
||||
myspi.o(i.MySPI_Clear_NSS) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Init) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
myspi.o(i.MySPI_Init) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Read) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Send) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Set_NSS) refers to myspi.o(.data) for ActiveSPI
|
||||
__main.o(!!!main) refers to __rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
|
||||
__rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
|
||||
__rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
|
||||
|
@ -195,6 +232,7 @@ Removing Unused input sections from the image.
|
|||
Removing app_girouette.o(.ARM.exidx.text.App_Girouette_Init), (8 bytes).
|
||||
Removing app_girouette.o(.ARM.exidx.text.App_Girouette_GetDirection), (8 bytes).
|
||||
Removing driver_gpio.o(.text), (0 bytes).
|
||||
Removing driver_gpio.o(.text.MyGPIO_Init), (156 bytes).
|
||||
Removing driver_gpio.o(.ARM.exidx.text.MyGPIO_Init), (8 bytes).
|
||||
Removing driver_gpio.o(.text.MyGPIO_Read), (12 bytes).
|
||||
Removing driver_gpio.o(.ARM.exidx.text.MyGPIO_Read), (8 bytes).
|
||||
|
@ -205,14 +243,15 @@ Removing Unused input sections from the image.
|
|||
Removing driver_gpio.o(.text.MyGPIO_Toggle), (14 bytes).
|
||||
Removing driver_gpio.o(.ARM.exidx.text.MyGPIO_Toggle), (8 bytes).
|
||||
Removing driver_timer.o(.text), (0 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_Base_Init), (140 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.MyTimer_Base_Init), (8 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_Start), (12 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.MyTimer_Start), (8 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_Stop), (12 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.MyTimer_Stop), (8 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_ConfigurePWM), (166 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.MyTimer_ConfigurePWM), (8 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_SetPWMDutyCycle), (82 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.MyTimer_SetPWMDutyCycle), (8 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_ConfigureEncoder), (70 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.MyTimer_ConfigureEncoder), (8 bytes).
|
||||
Removing driver_timer.o(.ARM.exidx.text.Bug), (8 bytes).
|
||||
Removing driver_timer.o(.text.MyTimer_ActiveIT), (150 bytes).
|
||||
|
@ -234,19 +273,44 @@ Removing Unused input sections from the image.
|
|||
Removing driver_adc.o(.ARM.exidx.text.erreur), (8 bytes).
|
||||
Removing driver_adc.o(.text.driver_adc_1_init), (160 bytes).
|
||||
Removing driver_adc.o(.ARM.exidx.text.driver_adc_1_init), (8 bytes).
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
Removing driver_adc.o(.text.driver_adc_1_launch_read), (18 bytes).
|
||||
>>>>>>> encoder
|
||||
Removing driver_adc.o(.ARM.exidx.text.driver_adc_1_launch_read), (8 bytes).
|
||||
Removing driver_adc.o(.text.driver_adc_1_read), (16 bytes).
|
||||
Removing driver_adc.o(.ARM.exidx.text.driver_adc_1_read), (8 bytes).
|
||||
Removing driver_adc.o(.ARM.exidx.text.ADC1_2_IRQHandler), (8 bytes).
|
||||
<<<<<<< HEAD
|
||||
Removing driver_imu.o(.text), (0 bytes).
|
||||
Removing driver_imu.o(.text.driver_IMU_write_register), (30 bytes).
|
||||
Removing driver_imu.o(.ARM.exidx.text.driver_IMU_write_register), (8 bytes).
|
||||
Removing driver_imu.o(.ARM.exidx.text.driver_IMU_init), (8 bytes).
|
||||
Removing driver_imu.o(.ARM.exidx.text.driver_IMU_read), (8 bytes).
|
||||
Removing driver_imu.o(.rodata.POWER_CTL), (1 bytes).
|
||||
Removing driver_imu.o(.rodata.BW_RATE), (1 bytes).
|
||||
Removing driver_imu.o(.rodata.DATA_FORMAT), (1 bytes).
|
||||
=======
|
||||
>>>>>>> encoder
|
||||
Removing system_stm32f10x.o(.text), (0 bytes).
|
||||
Removing system_stm32f10x.o(.ARM.exidx.text.SystemInit), (8 bytes).
|
||||
Removing system_stm32f10x.o(.text.SystemCoreClockUpdate), (110 bytes).
|
||||
Removing system_stm32f10x.o(.ARM.exidx.text.SystemCoreClockUpdate), (8 bytes).
|
||||
Removing system_stm32f10x.o(.data.SystemCoreClock), (4 bytes).
|
||||
Removing system_stm32f10x.o(.rodata.AHBPrescTable), (16 bytes).
|
||||
Removing myspi.o(.rev16_text), (4 bytes).
|
||||
Removing myspi.o(.revsh_text), (4 bytes).
|
||||
Removing myspi.o(.rrx_text), (6 bytes).
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
64 unused section(s) (total 1481 bytes) removed from the image.
|
||||
=======
|
||||
54 unused section(s) (total 1084 bytes) removed from the image.
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
57 unused section(s) (total 1086 bytes) removed from the image.
|
||||
>>>>>>> encoder
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
@ -311,8 +375,11 @@ Image Symbol Table
|
|||
App_girouette.c 0x00000000 Number 0 app_girouette.o ABSOLUTE
|
||||
Driver_ADC.c 0x00000000 Number 0 driver_adc.o ABSOLUTE
|
||||
Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
Driver_IMU.c 0x00000000 Number 0 driver_imu.o ABSOLUTE
|
||||
Driver_Timer.c 0x00000000 Number 0 driver_timer.o ABSOLUTE
|
||||
Driver_UART.c 0x00000000 Number 0 driver_uart.o ABSOLUTE
|
||||
MyDrivers\MySPI.c 0x00000000 Number 0 myspi.o ABSOLUTE
|
||||
MyDrivers\\MySPI.c 0x00000000 Number 0 myspi.o ABSOLUTE
|
||||
RTE/Device/STM32F103RB/startup_stm32f10x_md.s 0x00000000 Number 0 startup_stm32f10x_md.o ABSOLUTE
|
||||
dc.s 0x00000000 Number 0 dc.o ABSOLUTE
|
||||
main.c 0x00000000 Number 0 main.o ABSOLUTE
|
||||
|
@ -373,6 +440,46 @@ Image Symbol Table
|
|||
.text 0x08000240 Section 2 use_no_semi.o(.text)
|
||||
.text 0x08000242 Section 0 indicate_semi.o(.text)
|
||||
[Anonymous Symbol] 0x08000244 Section 0 driver_adc.o(.text.ADC1_2_IRQHandler)
|
||||
<<<<<<< HEAD
|
||||
[Anonymous Symbol] 0x08000260 Section 0 driver_timer.o(.text.Bug)
|
||||
<<<<<<< HEAD
|
||||
[Anonymous Symbol] 0x08000264 Section 0 system_stm32f10x.o(.text.SystemInit)
|
||||
[Anonymous Symbol] 0x08000374 Section 0 driver_timer.o(.text.TIM2_IRQHandler)
|
||||
[Anonymous Symbol] 0x08000390 Section 0 driver_timer.o(.text.TIM3_IRQHandler)
|
||||
[Anonymous Symbol] 0x080003ac Section 0 driver_timer.o(.text.TIM4_IRQHandler)
|
||||
[Anonymous Symbol] 0x080003c8 Section 0 driver_uart.o(.text.USART3_IRQHandler)
|
||||
[Anonymous Symbol] 0x080003d8 Section 0 driver_imu.o(.text.driver_IMU_init)
|
||||
[Anonymous Symbol] 0x08000428 Section 0 driver_imu.o(.text.driver_IMU_read)
|
||||
[Anonymous Symbol] 0x08000458 Section 0 driver_adc.o(.text.driver_adc_1_launch_read)
|
||||
[Anonymous Symbol] 0x0800046c Section 0 driver_adc.o(.text.erreur)
|
||||
[Anonymous Symbol] 0x08000470 Section 0 main.o(.text.main)
|
||||
i.MySPI_Clear_NSS 0x0800048c Section 0 myspi.o(i.MySPI_Clear_NSS)
|
||||
i.MySPI_Init 0x080004bc Section 0 myspi.o(i.MySPI_Init)
|
||||
i.MySPI_Read 0x080006b0 Section 0 myspi.o(i.MySPI_Read)
|
||||
i.MySPI_Send 0x08000704 Section 0 myspi.o(i.MySPI_Send)
|
||||
i.MySPI_Set_NSS 0x08000754 Section 0 myspi.o(i.MySPI_Set_NSS)
|
||||
.data 0x20000000 Section 4 myspi.o(.data)
|
||||
.bss 0x20000018 Section 96 libspace.o(.bss)
|
||||
Heap_Mem 0x20000078 Data 512 startup_stm32f10x_md.o(HEAP)
|
||||
HEAP 0x20000078 Section 512 startup_stm32f10x_md.o(HEAP)
|
||||
Stack_Mem 0x20000278 Data 1024 startup_stm32f10x_md.o(STACK)
|
||||
STACK 0x20000278 Section 1024 startup_stm32f10x_md.o(STACK)
|
||||
__initial_sp 0x20000678 Data 0 startup_stm32f10x_md.o(STACK)
|
||||
=======
|
||||
[Anonymous Symbol] 0x08000264 Section 0 driver_timer.o(.text.EXTI3_IRQHandler)
|
||||
[Anonymous Symbol] 0x08000268 Section 0 driver_gpio.o(.text.MyGPIO_Init)
|
||||
[Anonymous Symbol] 0x08000304 Section 0 driver_timer.o(.text.MyTimer_Base_Init)
|
||||
[Anonymous Symbol] 0x08000390 Section 0 driver_timer.o(.text.MyTimer_ConfigureEncoder)
|
||||
[Anonymous Symbol] 0x08000438 Section 0 driver_timer.o(.text.MyTimer_Start)
|
||||
[Anonymous Symbol] 0x08000444 Section 0 driver_uart.o(.text.MyUART_Init)
|
||||
[Anonymous Symbol] 0x08000490 Section 0 system_stm32f10x.o(.text.SystemInit)
|
||||
[Anonymous Symbol] 0x080005a0 Section 0 driver_timer.o(.text.TIM2_IRQHandler)
|
||||
[Anonymous Symbol] 0x080005bc Section 0 driver_timer.o(.text.TIM3_IRQHandler)
|
||||
[Anonymous Symbol] 0x080005d8 Section 0 driver_timer.o(.text.TIM4_IRQHandler)
|
||||
[Anonymous Symbol] 0x080005f4 Section 0 driver_uart.o(.text.USART3_IRQHandler)
|
||||
[Anonymous Symbol] 0x08000604 Section 0 driver_adc.o(.text.erreur)
|
||||
[Anonymous Symbol] 0x08000608 Section 0 main.o(.text.main)
|
||||
=======
|
||||
[Anonymous Symbol] 0x08000260 Section 0 app_girouette.o(.text.App_Girouette_GetDirection)
|
||||
[Anonymous Symbol] 0x0800027c Section 0 app_girouette.o(.text.App_Girouette_Init)
|
||||
[Anonymous Symbol] 0x080002cc Section 0 driver_timer.o(.text.Bug)
|
||||
|
@ -391,12 +498,14 @@ Image Symbol Table
|
|||
[Anonymous Symbol] 0x0800067c Section 0 driver_uart.o(.text.USART3_IRQHandler)
|
||||
[Anonymous Symbol] 0x0800068c Section 0 driver_adc.o(.text.erreur)
|
||||
[Anonymous Symbol] 0x08000690 Section 0 main.o(.text.main)
|
||||
>>>>>>> encoder
|
||||
.bss 0x20000010 Section 96 libspace.o(.bss)
|
||||
Heap_Mem 0x20000070 Data 512 startup_stm32f10x_md.o(HEAP)
|
||||
HEAP 0x20000070 Section 512 startup_stm32f10x_md.o(HEAP)
|
||||
Stack_Mem 0x20000270 Data 1024 startup_stm32f10x_md.o(STACK)
|
||||
STACK 0x20000270 Section 1024 startup_stm32f10x_md.o(STACK)
|
||||
__initial_sp 0x20000670 Data 0 startup_stm32f10x_md.o(STACK)
|
||||
>>>>>>> encoder
|
||||
|
||||
Global Symbols
|
||||
|
||||
|
@ -546,6 +655,50 @@ Image Symbol Table
|
|||
__use_no_semihosting_swi 0x08000241 Thumb Code 2 use_no_semi.o(.text)
|
||||
__semihosting_library_function 0x08000243 Thumb Code 0 indicate_semi.o(.text)
|
||||
ADC1_2_IRQHandler 0x08000245 Thumb Code 28 driver_adc.o(.text.ADC1_2_IRQHandler)
|
||||
<<<<<<< HEAD
|
||||
Bug 0x08000261 Thumb Code 2 driver_timer.o(.text.Bug)
|
||||
<<<<<<< HEAD
|
||||
SystemInit 0x08000265 Thumb Code 272 system_stm32f10x.o(.text.SystemInit)
|
||||
TIM2_IRQHandler 0x08000375 Thumb Code 26 driver_timer.o(.text.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x08000391 Thumb Code 28 driver_timer.o(.text.TIM3_IRQHandler)
|
||||
TIM4_IRQHandler 0x080003ad Thumb Code 28 driver_timer.o(.text.TIM4_IRQHandler)
|
||||
USART3_IRQHandler 0x080003c9 Thumb Code 14 driver_uart.o(.text.USART3_IRQHandler)
|
||||
driver_IMU_init 0x080003d9 Thumb Code 78 driver_imu.o(.text.driver_IMU_init)
|
||||
driver_IMU_read 0x08000429 Thumb Code 48 driver_imu.o(.text.driver_IMU_read)
|
||||
driver_adc_1_launch_read 0x08000459 Thumb Code 18 driver_adc.o(.text.driver_adc_1_launch_read)
|
||||
erreur 0x0800046d Thumb Code 2 driver_adc.o(.text.erreur)
|
||||
main 0x08000471 Thumb Code 28 main.o(.text.main)
|
||||
MySPI_Clear_NSS 0x0800048d Thumb Code 30 myspi.o(i.MySPI_Clear_NSS)
|
||||
MySPI_Init 0x080004bd Thumb Code 480 myspi.o(i.MySPI_Init)
|
||||
MySPI_Read 0x080006b1 Thumb Code 70 myspi.o(i.MySPI_Read)
|
||||
MySPI_Send 0x08000705 Thumb Code 68 myspi.o(i.MySPI_Send)
|
||||
MySPI_Set_NSS 0x08000755 Thumb Code 28 myspi.o(i.MySPI_Set_NSS)
|
||||
Region$$Table$$Base 0x08000780 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x080007a0 Number 0 anon$$obj.o(Region$$Table)
|
||||
ActiveSPI 0x20000000 Data 4 myspi.o(.data)
|
||||
ADC1_2_fx 0x20000004 Data 4 driver_adc.o(.data.ADC1_2_fx)
|
||||
TIM2_fx 0x20000008 Data 4 driver_timer.o(.data.TIM2_fx)
|
||||
TIM3_fx 0x2000000c Data 4 driver_timer.o(.data.TIM3_fx)
|
||||
TIM4_fx 0x20000010 Data 4 driver_timer.o(.data.TIM4_fx)
|
||||
__libspace_start 0x20000018 Data 96 libspace.o(.bss)
|
||||
__temporary_stack_top$libspace 0x20000078 Data 0 libspace.o(.bss)
|
||||
=======
|
||||
EXTI3_IRQHandler 0x08000265 Thumb Code 2 driver_timer.o(.text.EXTI3_IRQHandler)
|
||||
MyGPIO_Init 0x08000269 Thumb Code 140 driver_gpio.o(.text.MyGPIO_Init)
|
||||
MyTimer_Base_Init 0x08000305 Thumb Code 140 driver_timer.o(.text.MyTimer_Base_Init)
|
||||
MyTimer_ConfigureEncoder 0x08000391 Thumb Code 168 driver_timer.o(.text.MyTimer_ConfigureEncoder)
|
||||
MyTimer_Start 0x08000439 Thumb Code 12 driver_timer.o(.text.MyTimer_Start)
|
||||
MyUART_Init 0x08000445 Thumb Code 76 driver_uart.o(.text.MyUART_Init)
|
||||
SystemInit 0x08000491 Thumb Code 272 system_stm32f10x.o(.text.SystemInit)
|
||||
TIM2_IRQHandler 0x080005a1 Thumb Code 26 driver_timer.o(.text.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x080005bd Thumb Code 28 driver_timer.o(.text.TIM3_IRQHandler)
|
||||
TIM4_IRQHandler 0x080005d9 Thumb Code 28 driver_timer.o(.text.TIM4_IRQHandler)
|
||||
USART3_IRQHandler 0x080005f5 Thumb Code 14 driver_uart.o(.text.USART3_IRQHandler)
|
||||
erreur 0x08000605 Thumb Code 2 driver_adc.o(.text.erreur)
|
||||
main 0x08000609 Thumb Code 126 main.o(.text.main)
|
||||
Region$$Table$$Base 0x08000688 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x080006a8 Number 0 anon$$obj.o(Region$$Table)
|
||||
=======
|
||||
App_Girouette_GetDirection 0x08000261 Thumb Code 26 app_girouette.o(.text.App_Girouette_GetDirection)
|
||||
App_Girouette_Init 0x0800027d Thumb Code 80 app_girouette.o(.text.App_Girouette_Init)
|
||||
Bug 0x080002cd Thumb Code 2 driver_timer.o(.text.Bug)
|
||||
|
@ -566,12 +719,14 @@ Image Symbol Table
|
|||
main 0x08000691 Thumb Code 82 main.o(.text.main)
|
||||
Region$$Table$$Base 0x080006e4 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x08000704 Number 0 anon$$obj.o(Region$$Table)
|
||||
>>>>>>> encoder
|
||||
ADC1_2_fx 0x20000000 Data 4 driver_adc.o(.data.ADC1_2_fx)
|
||||
TIM2_fx 0x20000004 Data 4 driver_timer.o(.data.TIM2_fx)
|
||||
TIM3_fx 0x20000008 Data 4 driver_timer.o(.data.TIM3_fx)
|
||||
TIM4_fx 0x2000000c Data 4 driver_timer.o(.data.TIM4_fx)
|
||||
__libspace_start 0x20000010 Data 96 libspace.o(.bss)
|
||||
__temporary_stack_top$libspace 0x20000070 Data 0 libspace.o(.bss)
|
||||
>>>>>>> encoder
|
||||
|
||||
|
||||
|
||||
|
@ -581,7 +736,122 @@ Memory Map of the image
|
|||
|
||||
Image Entry point : 0x08000189
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x000007b4, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Execution Region ER_RO (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000007a0, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x08000000 0x08000000 0x000000ec Data RO 113 RESET startup_stm32f10x_md.o
|
||||
0x080000ec 0x080000ec 0x00000008 Code RO 155 * !!!main c_w.l(__main.o)
|
||||
0x080000f4 0x080000f4 0x00000034 Code RO 320 !!!scatter c_w.l(__scatter.o)
|
||||
0x08000128 0x08000128 0x0000001a Code RO 322 !!handler_copy c_w.l(__scatter_copy.o)
|
||||
0x08000142 0x08000142 0x00000002 PAD
|
||||
0x08000144 0x08000144 0x0000001c Code RO 324 !!handler_zi c_w.l(__scatter_zi.o)
|
||||
0x08000160 0x08000160 0x00000002 Code RO 182 .ARM.Collect$$libinit$$00000000 c_w.l(libinit.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 189 .ARM.Collect$$libinit$$00000002 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 191 .ARM.Collect$$libinit$$00000004 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 193 .ARM.Collect$$libinit$$00000006 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 196 .ARM.Collect$$libinit$$0000000C c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 198 .ARM.Collect$$libinit$$0000000E c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 200 .ARM.Collect$$libinit$$00000010 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 203 .ARM.Collect$$libinit$$00000013 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 205 .ARM.Collect$$libinit$$00000015 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 207 .ARM.Collect$$libinit$$00000017 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 209 .ARM.Collect$$libinit$$00000019 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 211 .ARM.Collect$$libinit$$0000001B c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 213 .ARM.Collect$$libinit$$0000001D c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 215 .ARM.Collect$$libinit$$0000001F c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 217 .ARM.Collect$$libinit$$00000021 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 219 .ARM.Collect$$libinit$$00000023 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 221 .ARM.Collect$$libinit$$00000025 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 223 .ARM.Collect$$libinit$$00000027 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 227 .ARM.Collect$$libinit$$0000002E c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 229 .ARM.Collect$$libinit$$00000030 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 231 .ARM.Collect$$libinit$$00000032 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000000 Code RO 233 .ARM.Collect$$libinit$$00000034 c_w.l(libinit2.o)
|
||||
0x08000162 0x08000162 0x00000002 Code RO 234 .ARM.Collect$$libinit$$00000035 c_w.l(libinit2.o)
|
||||
0x08000164 0x08000164 0x00000002 Code RO 256 .ARM.Collect$$libshutdown$$00000000 c_w.l(libshutdown.o)
|
||||
0x08000166 0x08000166 0x00000000 Code RO 271 .ARM.Collect$$libshutdown$$00000002 c_w.l(libshutdown2.o)
|
||||
0x08000166 0x08000166 0x00000000 Code RO 273 .ARM.Collect$$libshutdown$$00000004 c_w.l(libshutdown2.o)
|
||||
0x08000166 0x08000166 0x00000000 Code RO 276 .ARM.Collect$$libshutdown$$00000007 c_w.l(libshutdown2.o)
|
||||
0x08000166 0x08000166 0x00000000 Code RO 279 .ARM.Collect$$libshutdown$$0000000A c_w.l(libshutdown2.o)
|
||||
0x08000166 0x08000166 0x00000000 Code RO 281 .ARM.Collect$$libshutdown$$0000000C c_w.l(libshutdown2.o)
|
||||
0x08000166 0x08000166 0x00000000 Code RO 284 .ARM.Collect$$libshutdown$$0000000F c_w.l(libshutdown2.o)
|
||||
0x08000166 0x08000166 0x00000002 Code RO 285 .ARM.Collect$$libshutdown$$00000010 c_w.l(libshutdown2.o)
|
||||
0x08000168 0x08000168 0x00000000 Code RO 157 .ARM.Collect$$rtentry$$00000000 c_w.l(__rtentry.o)
|
||||
0x08000168 0x08000168 0x00000000 Code RO 159 .ARM.Collect$$rtentry$$00000002 c_w.l(__rtentry2.o)
|
||||
0x08000168 0x08000168 0x00000006 Code RO 171 .ARM.Collect$$rtentry$$00000004 c_w.l(__rtentry4.o)
|
||||
0x0800016e 0x0800016e 0x00000000 Code RO 161 .ARM.Collect$$rtentry$$00000009 c_w.l(__rtentry2.o)
|
||||
0x0800016e 0x0800016e 0x00000004 Code RO 162 .ARM.Collect$$rtentry$$0000000A c_w.l(__rtentry2.o)
|
||||
0x08000172 0x08000172 0x00000000 Code RO 164 .ARM.Collect$$rtentry$$0000000C c_w.l(__rtentry2.o)
|
||||
0x08000172 0x08000172 0x00000008 Code RO 165 .ARM.Collect$$rtentry$$0000000D c_w.l(__rtentry2.o)
|
||||
0x0800017a 0x0800017a 0x00000002 Code RO 186 .ARM.Collect$$rtexit$$00000000 c_w.l(rtexit.o)
|
||||
0x0800017c 0x0800017c 0x00000000 Code RO 236 .ARM.Collect$$rtexit$$00000002 c_w.l(rtexit2.o)
|
||||
0x0800017c 0x0800017c 0x00000004 Code RO 237 .ARM.Collect$$rtexit$$00000003 c_w.l(rtexit2.o)
|
||||
0x08000180 0x08000180 0x00000006 Code RO 238 .ARM.Collect$$rtexit$$00000004 c_w.l(rtexit2.o)
|
||||
0x08000186 0x08000186 0x00000002 PAD
|
||||
0x08000188 0x08000188 0x00000040 Code RO 114 * .text startup_stm32f10x_md.o
|
||||
0x080001c8 0x080001c8 0x00000006 Code RO 153 .text c_w.l(heapauxi.o)
|
||||
0x080001ce 0x080001ce 0x0000004a Code RO 173 .text c_w.l(sys_stackheap_outer.o)
|
||||
0x08000218 0x08000218 0x00000012 Code RO 175 .text c_w.l(exit.o)
|
||||
0x0800022a 0x0800022a 0x00000002 PAD
|
||||
0x0800022c 0x0800022c 0x00000008 Code RO 183 .text c_w.l(libspace.o)
|
||||
0x08000234 0x08000234 0x0000000c Code RO 246 .text c_w.l(sys_exit.o)
|
||||
0x08000240 0x08000240 0x00000002 Code RO 261 .text c_w.l(use_no_semi.o)
|
||||
0x08000242 0x08000242 0x00000000 Code RO 263 .text c_w.l(indicate_semi.o)
|
||||
0x08000242 0x08000242 0x00000002 PAD
|
||||
0x08000244 0x08000244 0x0000001c Code RO 84 .text.ADC1_2_IRQHandler driver_adc.o
|
||||
0x08000260 0x08000260 0x00000002 Code RO 39 .text.Bug driver_timer.o
|
||||
0x08000262 0x08000262 0x00000002 PAD
|
||||
0x08000264 0x08000264 0x00000110 Code RO 121 .text.SystemInit system_stm32f10x.o
|
||||
0x08000374 0x08000374 0x0000001a Code RO 43 .text.TIM2_IRQHandler driver_timer.o
|
||||
0x0800038e 0x0800038e 0x00000002 PAD
|
||||
0x08000390 0x08000390 0x0000001c Code RO 45 .text.TIM3_IRQHandler driver_timer.o
|
||||
0x080003ac 0x080003ac 0x0000001c Code RO 47 .text.TIM4_IRQHandler driver_timer.o
|
||||
0x080003c8 0x080003c8 0x0000000e Code RO 66 .text.USART3_IRQHandler driver_uart.o
|
||||
0x080003d6 0x080003d6 0x00000002 PAD
|
||||
0x080003d8 0x080003d8 0x0000004e Code RO 97 .text.driver_IMU_init driver_imu.o
|
||||
0x08000426 0x08000426 0x00000002 PAD
|
||||
0x08000428 0x08000428 0x00000030 Code RO 99 .text.driver_IMU_read driver_imu.o
|
||||
0x08000458 0x08000458 0x00000012 Code RO 80 .text.driver_adc_1_launch_read driver_adc.o
|
||||
0x0800046a 0x0800046a 0x00000002 PAD
|
||||
0x0800046c 0x0800046c 0x00000002 Code RO 76 .text.erreur driver_adc.o
|
||||
0x0800046e 0x0800046e 0x00000002 PAD
|
||||
0x08000470 0x08000470 0x0000001c Code RO 2 .text.main main.o
|
||||
0x0800048c 0x0800048c 0x00000030 Code RO 137 i.MySPI_Clear_NSS Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x080004bc 0x080004bc 0x000001f4 Code RO 138 i.MySPI_Init Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x080006b0 0x080006b0 0x00000054 Code RO 139 i.MySPI_Read Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x08000704 0x08000704 0x00000050 Code RO 140 i.MySPI_Send Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x08000754 0x08000754 0x0000002c Code RO 141 i.MySPI_Set_NSS Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x08000780 0x08000780 0x00000020 Data RO 319 Region$$Table anon$$obj.o
|
||||
|
||||
|
||||
Execution Region ER_RW (Exec base: 0x20000000, Load base: 0x080007a0, Size: 0x00000014, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x20000000 0x080007a0 0x00000004 Data RW 142 .data Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x20000004 0x080007a4 0x00000004 Data RW 86 .data.ADC1_2_fx driver_adc.o
|
||||
0x20000008 0x080007a8 0x00000004 Data RW 49 .data.TIM2_fx driver_timer.o
|
||||
0x2000000c 0x080007ac 0x00000004 Data RW 50 .data.TIM3_fx driver_timer.o
|
||||
0x20000010 0x080007b0 0x00000004 Data RW 51 .data.TIM4_fx driver_timer.o
|
||||
|
||||
|
||||
Execution Region ER_ZI (Exec base: 0x20000018, Load base: 0x080007b4, Size: 0x00000660, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x20000018 - 0x00000060 Zero RW 184 .bss c_w.l(libspace.o)
|
||||
0x20000078 - 0x00000200 Zero RW 112 HEAP startup_stm32f10x_md.o
|
||||
0x20000278 - 0x00000400 Zero RW 111 STACK startup_stm32f10x_md.o
|
||||
=======
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x000006b8, Max: 0xffffffff, ABSOLUTE)
|
||||
=======
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x00000714, Max: 0xffffffff, ABSOLUTE)
|
||||
>>>>>>> encoder
|
||||
|
||||
Execution Region ER_RO (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00000704, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
|
@ -690,9 +960,16 @@ Memory Map of the image
|
|||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
<<<<<<< HEAD
|
||||
0x20000010 - 0x00000060 Zero RW 156 .bss c_w.l(libspace.o)
|
||||
0x20000070 - 0x00000200 Zero RW 101 HEAP startup_stm32f10x_md.o
|
||||
0x20000270 - 0x00000400 Zero RW 100 STACK startup_stm32f10x_md.o
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
0x20000010 - 0x00000060 Zero RW 170 .bss c_w.l(libspace.o)
|
||||
0x20000070 - 0x00000200 Zero RW 115 HEAP startup_stm32f10x_md.o
|
||||
0x20000270 - 0x00000400 Zero RW 114 STACK startup_stm32f10x_md.o
|
||||
>>>>>>> encoder
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
@ -702,17 +979,41 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
48 0 0 4 0 4525 driver_adc.o
|
||||
126 0 0 0 0 2309 driver_imu.o
|
||||
84 0 0 12 0 6988 driver_timer.o
|
||||
14 0 0 0 0 2250 driver_uart.o
|
||||
28 0 0 0 0 1165 main.o
|
||||
=======
|
||||
30 0 0 4 0 4524 driver_adc.o
|
||||
156 16 0 0 0 2108 driver_gpio.o
|
||||
406 0 0 12 0 8028 driver_timer.o
|
||||
90 0 0 0 0 2250 driver_uart.o
|
||||
126 0 0 0 0 2548 main.o
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
106 0 0 0 0 2427 app_girouette.o
|
||||
30 0 0 4 0 4524 driver_adc.o
|
||||
156 16 0 0 0 2108 driver_gpio.o
|
||||
410 0 0 12 0 8169 driver_timer.o
|
||||
112 0 0 0 0 2250 driver_uart.o
|
||||
82 0 0 0 0 1572 main.o
|
||||
>>>>>>> encoder
|
||||
64 26 236 0 1536 864 startup_stm32f10x_md.o
|
||||
272 0 0 0 0 2813 system_stm32f10x.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
648 26 268 16 1536 20914 Object Totals
|
||||
=======
|
||||
1156 42 268 16 1536 23135 Object Totals
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
1248 42 268 16 1536 24727 Object Totals
|
||||
>>>>>>> encoder
|
||||
0 0 32 0 0 0 (incl. Generated)
|
||||
16 0 0 0 0 0 (incl. Padding)
|
||||
|
||||
|
@ -720,6 +1021,7 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
|
||||
|
||||
756 80 0 4 0 348 myspi.o
|
||||
8 0 0 0 0 68 __main.o
|
||||
0 0 0 0 0 0 __rtentry.o
|
||||
12 0 0 0 0 0 __rtentry2.o
|
||||
|
@ -742,17 +1044,18 @@ Image component sizes
|
|||
2 0 0 0 0 68 use_no_semi.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
280 16 0 0 96 584 Library Totals
|
||||
1036 96 0 4 96 932 Library Totals
|
||||
8 0 0 0 0 0 (incl. Padding)
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Library Name
|
||||
|
||||
756 80 0 4 0 348 Lib_Com_Periph_2022.lib
|
||||
272 16 0 0 96 584 c_w.l
|
||||
|
||||
----------------------------------------------------------------------
|
||||
280 16 0 0 96 584 Library Totals
|
||||
1036 96 0 4 96 932 Library Totals
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
@ -761,15 +1064,37 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
1684 122 268 20 1632 21482 Grand Totals
|
||||
1684 122 268 20 1632 21482 ELF Image Totals
|
||||
1684 122 268 20 0 0 ROM Totals
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 1952 ( 1.91kB)
|
||||
Total RW Size (RW Data + ZI Data) 1652 ( 1.61kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 1972 ( 1.93kB)
|
||||
=======
|
||||
1436 58 268 16 1632 23511 Grand Totals
|
||||
1436 58 268 16 1632 23511 ELF Image Totals
|
||||
1436 58 268 16 0 0 ROM Totals
|
||||
=======
|
||||
1528 58 268 16 1632 25083 Grand Totals
|
||||
1528 58 268 16 1632 25083 ELF Image Totals
|
||||
1528 58 268 16 0 0 ROM Totals
|
||||
>>>>>>> encoder
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 1796 ( 1.75kB)
|
||||
Total RW Size (RW Data + ZI Data) 1648 ( 1.61kB)
|
||||
<<<<<<< HEAD
|
||||
Total ROM Size (Code + RO Data + RW Data) 1720 ( 1.68kB)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
Total ROM Size (Code + RO Data + RW Data) 1812 ( 1.77kB)
|
||||
>>>>>>> encoder
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
|
|
@ -1,9 +1,40 @@
|
|||
Component: Arm Compiler for Embedded 6.19 Tool: armlink [5e73cb00]
|
||||
Component: ARM Compiler 5.06 update 7 (build 960) Tool: armlink [4d3601]
|
||||
|
||||
==============================================================================
|
||||
|
||||
Section Cross References
|
||||
|
||||
<<<<<<< HEAD
|
||||
main.o(i.main) refers to driver_adc.o(i.driver_adc_1_launch_read) for driver_adc_1_launch_read
|
||||
main.o(i.main) refers to driver_imu.o(i.driver_IMU_init) for driver_IMU_init
|
||||
main.o(i.main) refers to driver_imu.o(i.driver_IMU_read) for driver_IMU_read
|
||||
driver_timer.o(i.MyTimer_ActiveIT) refers to driver_timer.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
|
||||
driver_timer.o(i.MyTimer_ActiveIT) refers to driver_timer.o(i.__NVIC_SetPriority) for __NVIC_SetPriority
|
||||
driver_timer.o(i.MyTimer_ActiveIT) refers to driver_timer.o(.data) for TIM2_fx
|
||||
driver_timer.o(i.TIM2_IRQHandler) refers to driver_timer.o(.data) for TIM2_fx
|
||||
driver_timer.o(i.TIM3_IRQHandler) refers to driver_timer.o(.data) for TIM3_fx
|
||||
driver_timer.o(i.TIM4_IRQHandler) refers to driver_timer.o(.data) for TIM4_fx
|
||||
driver_timer.o(.data) refers to driver_timer.o(i.Bug) for Bug
|
||||
driver_adc.o(i.ADC1_2_IRQHandler) refers to driver_adc.o(.data) for ADC1_2_fx
|
||||
driver_adc.o(i.driver_adc_1_init) refers to driver_adc.o(.data) for ADC1_2_fx
|
||||
driver_adc.o(.data) refers to driver_adc.o(i.erreur) for erreur
|
||||
driver_imu.o(i.driver_IMU_init) refers to myspi.o(i.MySPI_Init) for MySPI_Init
|
||||
driver_imu.o(i.driver_IMU_init) refers to driver_imu.o(i.driver_IMU_write_register) for driver_IMU_write_register
|
||||
driver_imu.o(i.driver_IMU_read) refers to myspi.o(i.MySPI_Clear_NSS) for MySPI_Clear_NSS
|
||||
driver_imu.o(i.driver_IMU_read) refers to myspi.o(i.MySPI_Send) for MySPI_Send
|
||||
driver_imu.o(i.driver_IMU_read) refers to myspi.o(i.MySPI_Read) for MySPI_Read
|
||||
driver_imu.o(i.driver_IMU_read) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
driver_imu.o(i.driver_IMU_write_register) refers to myspi.o(i.MySPI_Clear_NSS) for MySPI_Clear_NSS
|
||||
driver_imu.o(i.driver_IMU_write_register) refers to myspi.o(i.MySPI_Send) for MySPI_Send
|
||||
driver_imu.o(i.driver_IMU_write_register) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
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 driver_adc.o(i.ADC1_2_IRQHandler) for ADC1_2_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(i.TIM2_IRQHandler) for TIM2_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(i.TIM3_IRQHandler) for TIM3_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(i.TIM4_IRQHandler) for TIM4_IRQHandler
|
||||
startup_stm32f10x_md.o(.text) refers to system_stm32f10x.o(i.SystemInit) for SystemInit
|
||||
=======
|
||||
main.o(.text.main) refers to driver_gpio.o(.text.MyGPIO_Init) for MyGPIO_Init
|
||||
main.o(.text.main) refers to driver_timer.o(.text.MyTimer_Base_Init) for MyTimer_Base_Init
|
||||
main.o(.text.main) refers to driver_timer.o(.text.MyTimer_ConfigurePWM) for MyTimer_ConfigurePWM
|
||||
|
@ -77,13 +108,20 @@ Section Cross References
|
|||
startup_stm32f10x_md.o(RESET) refers to driver_timer.o(.text.TIM4_IRQHandler) for TIM4_IRQHandler
|
||||
startup_stm32f10x_md.o(RESET) refers to driver_uart.o(.text.USART3_IRQHandler) for USART3_IRQHandler
|
||||
startup_stm32f10x_md.o(.text) refers to system_stm32f10x.o(.text.SystemInit) for SystemInit
|
||||
>>>>>>> encoder
|
||||
startup_stm32f10x_md.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
|
||||
system_stm32f10x.o(.ARM.exidx.text.SystemInit) refers to system_stm32f10x.o(.text.SystemInit) for [Anonymous Symbol]
|
||||
system_stm32f10x.o(.text.SystemCoreClockUpdate) refers to system_stm32f10x.o(.data.SystemCoreClock) for SystemCoreClock
|
||||
system_stm32f10x.o(.text.SystemCoreClockUpdate) refers to system_stm32f10x.o(.rodata.AHBPrescTable) for AHBPrescTable
|
||||
system_stm32f10x.o(.ARM.exidx.text.SystemCoreClockUpdate) refers to system_stm32f10x.o(.text.SystemCoreClockUpdate) for [Anonymous Symbol]
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
|
||||
system_stm32f10x.o(i.SetSysClock) refers to system_stm32f10x.o(i.SetSysClockTo72) for SetSysClockTo72
|
||||
system_stm32f10x.o(i.SystemCoreClockUpdate) refers to system_stm32f10x.o(.data) for SystemCoreClock
|
||||
system_stm32f10x.o(i.SystemInit) refers to system_stm32f10x.o(i.SetSysClock) for SetSysClock
|
||||
myspi.o(i.MySPI_Clear_NSS) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Init) refers to myspi.o(i.MySPI_Set_NSS) for MySPI_Set_NSS
|
||||
myspi.o(i.MySPI_Init) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Read) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Send) refers to myspi.o(.data) for ActiveSPI
|
||||
myspi.o(i.MySPI_Set_NSS) refers to myspi.o(.data) for ActiveSPI
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000F) for __rt_final_cpp
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$00000011) for __rt_final_exit
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry12b.o(.ARM.Collect$$$$0000000E) for __rt_lib_shutdown_fini
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
|
||||
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
|
||||
|
@ -338,6 +376,10 @@ Section Cross References
|
|||
entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32f10x_md.o(STACK) for __initial_sp
|
||||
entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
|
||||
entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
|
||||
<<<<<<< HEAD
|
||||
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
|
||||
=======
|
||||
entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(.text.main) for main
|
||||
entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(.text.main) for main
|
||||
fputc.o(i.fputc) refers (Special) to iusesemip.o(.text) for __I$use$semihosting$fputc
|
||||
|
@ -359,6 +401,7 @@ Section Cross References
|
|||
dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
|
||||
dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
|
||||
cdrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
|
||||
>>>>>>> encoder
|
||||
init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
|
||||
|
||||
|
||||
|
@ -366,6 +409,38 @@ Section Cross References
|
|||
|
||||
Removing Unused input sections from the image.
|
||||
|
||||
<<<<<<< HEAD
|
||||
Removing main.o(.rev16_text), (4 bytes).
|
||||
Removing main.o(.revsh_text), (4 bytes).
|
||||
Removing main.o(.rrx_text), (6 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).
|
||||
Removing driver_gpio.o(i.MyGPIO_Init), (264 bytes).
|
||||
Removing driver_gpio.o(i.MyGPIO_Read), (14 bytes).
|
||||
Removing driver_gpio.o(i.MyGPIO_Reset), (12 bytes).
|
||||
Removing driver_gpio.o(i.MyGPIO_Set), (12 bytes).
|
||||
Removing driver_gpio.o(i.MyGPIO_Toggle), (12 bytes).
|
||||
Removing driver_timer.o(.rev16_text), (4 bytes).
|
||||
Removing driver_timer.o(.revsh_text), (4 bytes).
|
||||
Removing driver_timer.o(.rrx_text), (6 bytes).
|
||||
Removing driver_timer.o(i.MyTimer_ActiveIT), (112 bytes).
|
||||
Removing driver_timer.o(i.MyTimer_Base_Init), (116 bytes).
|
||||
Removing driver_timer.o(i.MyTimer_ConfigurePWM), (198 bytes).
|
||||
Removing driver_timer.o(i.MyTimer_Start), (14 bytes).
|
||||
Removing driver_timer.o(i.MyTimer_Stop), (14 bytes).
|
||||
Removing driver_timer.o(i.__NVIC_EnableIRQ), (34 bytes).
|
||||
Removing driver_timer.o(i.__NVIC_SetPriority), (40 bytes).
|
||||
Removing driver_adc.o(.rev16_text), (4 bytes).
|
||||
Removing driver_adc.o(.revsh_text), (4 bytes).
|
||||
Removing driver_adc.o(.rrx_text), (6 bytes).
|
||||
Removing driver_adc.o(i.driver_adc_1_init), (244 bytes).
|
||||
Removing driver_adc.o(i.driver_adc_1_read), (16 bytes).
|
||||
Removing driver_imu.o(.rev16_text), (4 bytes).
|
||||
Removing driver_imu.o(.revsh_text), (4 bytes).
|
||||
Removing driver_imu.o(.rrx_text), (6 bytes).
|
||||
Removing driver_imu.o(.constdata), (3 bytes).
|
||||
=======
|
||||
Removing main.o(.text), (0 bytes).
|
||||
Removing main.o(.ARM.exidx.text.main), (8 bytes).
|
||||
Removing main.o(.ARM.use_no_argv), (4 bytes).
|
||||
|
@ -416,7 +491,24 @@ Removing Unused input sections from the image.
|
|||
Removing driver_adc.o(.text.driver_adc_1_read), (16 bytes).
|
||||
Removing driver_adc.o(.ARM.exidx.text.driver_adc_1_read), (8 bytes).
|
||||
Removing driver_adc.o(.ARM.exidx.text.ADC1_2_IRQHandler), (8 bytes).
|
||||
>>>>>>> encoder
|
||||
Removing startup_stm32f10x_md.o(HEAP), (512 bytes).
|
||||
<<<<<<< HEAD
|
||||
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 myspi.o(.rev16_text), (4 bytes).
|
||||
Removing myspi.o(.revsh_text), (4 bytes).
|
||||
Removing myspi.o(.rrx_text), (6 bytes).
|
||||
|
||||
<<<<<<< HEAD
|
||||
39 unused section(s) (total 1899 bytes) removed from the image.
|
||||
=======
|
||||
56 unused section(s) (total 1604 bytes) removed from the image.
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
Removing system_stm32f10x.o(.text), (0 bytes).
|
||||
Removing system_stm32f10x.o(.ARM.exidx.text.SystemInit), (8 bytes).
|
||||
Removing system_stm32f10x.o(.text.SystemCoreClockUpdate), (110 bytes).
|
||||
|
@ -424,7 +516,12 @@ Removing Unused input sections from the image.
|
|||
Removing system_stm32f10x.o(.data.SystemCoreClock), (4 bytes).
|
||||
Removing system_stm32f10x.o(.rodata.AHBPrescTable), (16 bytes).
|
||||
|
||||
<<<<<<< HEAD
|
||||
55 unused section(s) (total 1596 bytes) removed from the image.
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
=======
|
||||
57 unused section(s) (total 1358 bytes) removed from the image.
|
||||
>>>>>>> encoder
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
@ -434,22 +531,48 @@ Image Symbol Table
|
|||
|
||||
Symbol Name Value Ov Type Size Object(Section)
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
|
||||
=======
|
||||
=======
|
||||
../clib/division.s 0x00000000 Number 0 aeabi_sdiv.o ABSOLUTE
|
||||
../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE
|
||||
../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE
|
||||
>>>>>>> encoder
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
|
||||
>>>>>>> encoder
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
|
||||
../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 entry.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry12b.o ABSOLUTE
|
||||
../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.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
|
||||
..\\driver\\Driver_ADC.c 0x00000000 Number 0 driver_adc.o ABSOLUTE
|
||||
..\\driver\\Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
..\\driver\\Driver_IMU.c 0x00000000 Number 0 driver_imu.o ABSOLUTE
|
||||
..\\driver\\Driver_Timer.c 0x00000000 Number 0 driver_timer.o ABSOLUTE
|
||||
..\driver\Driver_ADC.c 0x00000000 Number 0 driver_adc.o ABSOLUTE
|
||||
..\driver\Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
..\driver\Driver_IMU.c 0x00000000 Number 0 driver_imu.o ABSOLUTE
|
||||
..\driver\Driver_Timer.c 0x00000000 Number 0 driver_timer.o ABSOLUTE
|
||||
MyDrivers\MySPI.c 0x00000000 Number 0 myspi.o ABSOLUTE
|
||||
MyDrivers\\MySPI.c 0x00000000 Number 0 myspi.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
|
||||
=======
|
||||
=======
|
||||
../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
|
||||
../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
|
||||
../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
|
||||
|
@ -480,17 +603,22 @@ Image Symbol Table
|
|||
../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE
|
||||
../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE
|
||||
App_girouette.c 0x00000000 Number 0 app_girouette.o ABSOLUTE
|
||||
>>>>>>> encoder
|
||||
Driver_ADC.c 0x00000000 Number 0 driver_adc.o ABSOLUTE
|
||||
Driver_GPIO.c 0x00000000 Number 0 driver_gpio.o ABSOLUTE
|
||||
Driver_Timer.c 0x00000000 Number 0 driver_timer.o ABSOLUTE
|
||||
Driver_UART.c 0x00000000 Number 0 driver_uart.o ABSOLUTE
|
||||
RTE/Device/STM32F103RB/startup_stm32f10x_md.s 0x00000000 Number 0 startup_stm32f10x_md.o ABSOLUTE
|
||||
<<<<<<< HEAD
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE
|
||||
>>>>>>> encoder
|
||||
dc.s 0x00000000 Number 0 dc.o ABSOLUTE
|
||||
handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE
|
||||
init.s 0x00000000 Number 0 init.o ABSOLUTE
|
||||
main.c 0x00000000 Number 0 main.o ABSOLUTE
|
||||
system_stm32f10x.c 0x00000000 Number 0 system_stm32f10x.o ABSOLUTE
|
||||
src\\main.c 0x00000000 Number 0 main.o ABSOLUTE
|
||||
src\main.c 0x00000000 Number 0 main.o ABSOLUTE
|
||||
RESET 0x08000000 Section 236 startup_stm32f10x_md.o(RESET)
|
||||
.ARM.Collect$$$$00000000 0x080000ec Section 0 entry.o(.ARM.Collect$$$$00000000)
|
||||
.ARM.Collect$$$$00000001 0x080000ec Section 4 entry2.o(.ARM.Collect$$$$00000001)
|
||||
|
@ -498,6 +626,43 @@ Image Symbol Table
|
|||
.ARM.Collect$$$$00000008 0x080000f4 Section 0 entry7b.o(.ARM.Collect$$$$00000008)
|
||||
.ARM.Collect$$$$0000000A 0x080000f4 Section 0 entry8b.o(.ARM.Collect$$$$0000000A)
|
||||
.ARM.Collect$$$$0000000B 0x080000f4 Section 8 entry9a.o(.ARM.Collect$$$$0000000B)
|
||||
<<<<<<< HEAD
|
||||
.ARM.Collect$$$$0000000E 0x080000fc Section 4 entry12b.o(.ARM.Collect$$$$0000000E)
|
||||
.ARM.Collect$$$$0000000F 0x08000100 Section 0 entry10a.o(.ARM.Collect$$$$0000000F)
|
||||
.ARM.Collect$$$$00000011 0x08000100 Section 0 entry11a.o(.ARM.Collect$$$$00000011)
|
||||
.ARM.Collect$$$$00002712 0x08000100 Section 4 entry2.o(.ARM.Collect$$$$00002712)
|
||||
__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.ADC1_2_IRQHandler 0x0800014c Section 0 driver_adc.o(i.ADC1_2_IRQHandler)
|
||||
i.Bug 0x0800016c Section 0 driver_timer.o(i.Bug)
|
||||
i.MySPI_Clear_NSS 0x08000170 Section 0 myspi.o(i.MySPI_Clear_NSS)
|
||||
i.MySPI_Init 0x080001a0 Section 0 myspi.o(i.MySPI_Init)
|
||||
i.MySPI_Read 0x08000394 Section 0 myspi.o(i.MySPI_Read)
|
||||
i.MySPI_Send 0x080003e8 Section 0 myspi.o(i.MySPI_Send)
|
||||
i.MySPI_Set_NSS 0x08000438 Section 0 myspi.o(i.MySPI_Set_NSS)
|
||||
i.SetSysClock 0x08000464 Section 0 system_stm32f10x.o(i.SetSysClock)
|
||||
SetSysClock 0x08000465 Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
|
||||
i.SetSysClockTo72 0x0800046c Section 0 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
SetSysClockTo72 0x0800046d Thumb Code 214 system_stm32f10x.o(i.SetSysClockTo72)
|
||||
i.SystemInit 0x0800054c Section 0 system_stm32f10x.o(i.SystemInit)
|
||||
i.TIM2_IRQHandler 0x080005ac Section 0 driver_timer.o(i.TIM2_IRQHandler)
|
||||
i.TIM3_IRQHandler 0x080005cc Section 0 driver_timer.o(i.TIM3_IRQHandler)
|
||||
i.TIM4_IRQHandler 0x080005ec Section 0 driver_timer.o(i.TIM4_IRQHandler)
|
||||
i.__scatterload_copy 0x0800060c Section 14 handlers.o(i.__scatterload_copy)
|
||||
i.__scatterload_null 0x0800061a Section 2 handlers.o(i.__scatterload_null)
|
||||
i.__scatterload_zeroinit 0x0800061c Section 14 handlers.o(i.__scatterload_zeroinit)
|
||||
i.driver_IMU_init 0x0800062c Section 0 driver_imu.o(i.driver_IMU_init)
|
||||
i.driver_IMU_read 0x08000654 Section 0 driver_imu.o(i.driver_IMU_read)
|
||||
i.driver_IMU_write_register 0x08000688 Section 0 driver_imu.o(i.driver_IMU_write_register)
|
||||
i.driver_adc_1_launch_read 0x080006a4 Section 0 driver_adc.o(i.driver_adc_1_launch_read)
|
||||
i.erreur 0x080006b8 Section 0 driver_adc.o(i.erreur)
|
||||
i.main 0x080006bc Section 0 main.o(i.main)
|
||||
.data 0x20000000 Section 12 driver_timer.o(.data)
|
||||
.data 0x2000000c Section 4 driver_adc.o(.data)
|
||||
.data 0x20000010 Section 4 myspi.o(.data)
|
||||
STACK 0x20000018 Section 1024 startup_stm32f10x_md.o(STACK)
|
||||
=======
|
||||
__lit__00000000 0x080000fc Data 4 entry2.o(.ARM.Collect$$$$00002712)
|
||||
.ARM.Collect$$$$0000000D 0x080000fc Section 0 entry10a.o(.ARM.Collect$$$$0000000D)
|
||||
.ARM.Collect$$$$0000000F 0x080000fc Section 0 entry11a.o(.ARM.Collect$$$$0000000F)
|
||||
|
@ -556,11 +721,17 @@ Image Symbol Table
|
|||
_sputc 0x080016b3 Thumb Code 10 printfa.o(i._sputc)
|
||||
i._sputc 0x080016b2 Section 0 printfa.o(i._sputc)
|
||||
STACK 0x20000010 Section 1024 startup_stm32f10x_md.o(STACK)
|
||||
>>>>>>> encoder
|
||||
|
||||
Global Symbols
|
||||
|
||||
Symbol Name Value Ov Type Size Object(Section)
|
||||
|
||||
<<<<<<< HEAD
|
||||
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
|
||||
__ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
|
||||
__arm_fini_ - Undefined Weak Reference
|
||||
=======
|
||||
BuildAttributes$$THM_ISAv4$P$D$K$B$S$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$~IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
|
||||
_printf_a 0x00000000 Number 0 printfstubs.o ABSOLUTE
|
||||
_printf_c 0x00000000 Number 0 printfstubs.o ABSOLUTE
|
||||
|
@ -603,6 +774,7 @@ Image Symbol Table
|
|||
_printf_wctomb 0x00000000 Number 0 printfstubs.o ABSOLUTE
|
||||
_printf_widthprec 0x00000000 Number 0 printfstubs.o ABSOLUTE
|
||||
_printf_x 0x00000000 Number 0 printfstubs.o ABSOLUTE
|
||||
>>>>>>> encoder
|
||||
__cpp_initialize__aeabi_ - Undefined Weak Reference
|
||||
__cxa_finalize - Undefined Weak Reference
|
||||
__decompress - Undefined Weak Reference
|
||||
|
@ -618,6 +790,90 @@ Image Symbol Table
|
|||
_main_clock 0x080000f5 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008)
|
||||
_main_cpp_init 0x080000f5 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A)
|
||||
_main_init 0x080000f5 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B)
|
||||
<<<<<<< HEAD
|
||||
__rt_lib_shutdown_fini 0x080000fd Thumb Code 0 entry12b.o(.ARM.Collect$$$$0000000E)
|
||||
__rt_final_cpp 0x08000101 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000F)
|
||||
__rt_final_exit 0x08000101 Thumb Code 0 entry11a.o(.ARM.Collect$$$$00000011)
|
||||
Reset_Handler 0x08000105 Thumb Code 8 startup_stm32f10x_md.o(.text)
|
||||
NMI_Handler 0x0800010d Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
HardFault_Handler 0x0800010f Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
MemManage_Handler 0x08000111 Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
BusFault_Handler 0x08000113 Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
UsageFault_Handler 0x08000115 Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
SVC_Handler 0x08000117 Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
DebugMon_Handler 0x08000119 Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
PendSV_Handler 0x0800011b Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
SysTick_Handler 0x0800011d Thumb Code 2 startup_stm32f10x_md.o(.text)
|
||||
CAN1_RX1_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
CAN1_SCE_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
DMA1_Channel1_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
DMA1_Channel2_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
DMA1_Channel3_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
DMA1_Channel4_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
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)
|
||||
EXTI3_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
EXTI4_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
EXTI9_5_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
FLASH_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
I2C1_ER_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
I2C1_EV_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
I2C2_ER_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
I2C2_EV_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
PVD_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
RCC_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
RTCAlarm_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
RTC_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
SPI1_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
SPI2_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
TAMPER_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
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)
|
||||
TIM1_UP_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)
|
||||
USB_HP_CAN1_TX_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
USB_LP_CAN1_RX0_IRQHandler 0x0800011f Thumb Code 0 startup_stm32f10x_md.o(.text)
|
||||
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)
|
||||
ADC1_2_IRQHandler 0x0800014d Thumb Code 22 driver_adc.o(i.ADC1_2_IRQHandler)
|
||||
Bug 0x0800016d Thumb Code 4 driver_timer.o(i.Bug)
|
||||
MySPI_Clear_NSS 0x08000171 Thumb Code 30 myspi.o(i.MySPI_Clear_NSS)
|
||||
MySPI_Init 0x080001a1 Thumb Code 480 myspi.o(i.MySPI_Init)
|
||||
MySPI_Read 0x08000395 Thumb Code 70 myspi.o(i.MySPI_Read)
|
||||
MySPI_Send 0x080003e9 Thumb Code 68 myspi.o(i.MySPI_Send)
|
||||
MySPI_Set_NSS 0x08000439 Thumb Code 28 myspi.o(i.MySPI_Set_NSS)
|
||||
SystemInit 0x0800054d Thumb Code 78 system_stm32f10x.o(i.SystemInit)
|
||||
TIM2_IRQHandler 0x080005ad Thumb Code 26 driver_timer.o(i.TIM2_IRQHandler)
|
||||
TIM3_IRQHandler 0x080005cd Thumb Code 22 driver_timer.o(i.TIM3_IRQHandler)
|
||||
TIM4_IRQHandler 0x080005ed Thumb Code 22 driver_timer.o(i.TIM4_IRQHandler)
|
||||
__scatterload_copy 0x0800060d Thumb Code 14 handlers.o(i.__scatterload_copy)
|
||||
__scatterload_null 0x0800061b Thumb Code 2 handlers.o(i.__scatterload_null)
|
||||
__scatterload_zeroinit 0x0800061d Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
|
||||
driver_IMU_init 0x0800062d Thumb Code 34 driver_imu.o(i.driver_IMU_init)
|
||||
driver_IMU_read 0x08000655 Thumb Code 52 driver_imu.o(i.driver_IMU_read)
|
||||
driver_IMU_write_register 0x08000689 Thumb Code 28 driver_imu.o(i.driver_IMU_write_register)
|
||||
driver_adc_1_launch_read 0x080006a5 Thumb Code 14 driver_adc.o(i.driver_adc_1_launch_read)
|
||||
erreur 0x080006b9 Thumb Code 4 driver_adc.o(i.erreur)
|
||||
main 0x080006bd Thumb Code 26 main.o(i.main)
|
||||
Region$$Table$$Base 0x080006d8 Number 0 anon$$obj.o(Region$$Table)
|
||||
Region$$Table$$Limit 0x080006f8 Number 0 anon$$obj.o(Region$$Table)
|
||||
TIM2_fx 0x20000000 Data 4 driver_timer.o(.data)
|
||||
TIM3_fx 0x20000004 Data 4 driver_timer.o(.data)
|
||||
TIM4_fx 0x20000008 Data 4 driver_timer.o(.data)
|
||||
ADC1_2_fx 0x2000000c Data 4 driver_adc.o(.data)
|
||||
ActiveSPI 0x20000010 Data 4 myspi.o(.data)
|
||||
__initial_sp 0x20000418 Data 0 startup_stm32f10x_md.o(STACK)
|
||||
=======
|
||||
__rt_final_cpp 0x080000fd Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D)
|
||||
__rt_final_exit 0x080000fd Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F)
|
||||
Reset_Handler 0x08000101 Thumb Code 8 startup_stm32f10x_md.o(.text)
|
||||
|
@ -728,6 +984,7 @@ Image Symbol Table
|
|||
TIM3_fx 0x20000008 Data 4 driver_timer.o(.data.TIM3_fx)
|
||||
TIM4_fx 0x2000000c Data 4 driver_timer.o(.data.TIM4_fx)
|
||||
__initial_sp 0x20000410 Data 0 startup_stm32f10x_md.o(STACK)
|
||||
>>>>>>> encoder
|
||||
|
||||
|
||||
|
||||
|
@ -735,9 +992,80 @@ Image Symbol Table
|
|||
|
||||
Memory Map of the image
|
||||
|
||||
Image Entry point : 0x08000101
|
||||
Image Entry point : 0x08000105
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x0000070c, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Execution Region ER_RO (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000006f8, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x08000000 0x08000000 0x000000ec Data RO 312 RESET startup_stm32f10x_md.o
|
||||
0x080000ec 0x080000ec 0x00000000 Code RO 380 * .ARM.Collect$$$$00000000 mc_w.l(entry.o)
|
||||
0x080000ec 0x080000ec 0x00000004 Code RO 383 .ARM.Collect$$$$00000001 mc_w.l(entry2.o)
|
||||
0x080000f0 0x080000f0 0x00000004 Code RO 386 .ARM.Collect$$$$00000004 mc_w.l(entry5.o)
|
||||
0x080000f4 0x080000f4 0x00000000 Code RO 388 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o)
|
||||
0x080000f4 0x080000f4 0x00000000 Code RO 390 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o)
|
||||
0x080000f4 0x080000f4 0x00000008 Code RO 391 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o)
|
||||
0x080000fc 0x080000fc 0x00000004 Code RO 398 .ARM.Collect$$$$0000000E mc_w.l(entry12b.o)
|
||||
0x08000100 0x08000100 0x00000000 Code RO 393 .ARM.Collect$$$$0000000F mc_w.l(entry10a.o)
|
||||
0x08000100 0x08000100 0x00000000 Code RO 395 .ARM.Collect$$$$00000011 mc_w.l(entry11a.o)
|
||||
0x08000100 0x08000100 0x00000004 Code RO 384 .ARM.Collect$$$$00002712 mc_w.l(entry2.o)
|
||||
0x08000104 0x08000104 0x00000024 Code RO 313 * .text startup_stm32f10x_md.o
|
||||
0x08000128 0x08000128 0x00000024 Code RO 399 .text mc_w.l(init.o)
|
||||
0x0800014c 0x0800014c 0x00000020 Code RO 216 i.ADC1_2_IRQHandler driver_adc.o
|
||||
0x0800016c 0x0800016c 0x00000004 Code RO 127 i.Bug driver_timer.o
|
||||
0x08000170 0x08000170 0x00000030 Code RO 366 i.MySPI_Clear_NSS Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x080001a0 0x080001a0 0x000001f4 Code RO 367 i.MySPI_Init Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x08000394 0x08000394 0x00000054 Code RO 368 i.MySPI_Read Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x080003e8 0x080003e8 0x00000050 Code RO 369 i.MySPI_Send Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x08000438 0x08000438 0x0000002c Code RO 370 i.MySPI_Set_NSS Lib_Com_Periph_2022.lib(myspi.o)
|
||||
0x08000464 0x08000464 0x00000008 Code RO 320 i.SetSysClock system_stm32f10x.o
|
||||
0x0800046c 0x0800046c 0x000000e0 Code RO 321 i.SetSysClockTo72 system_stm32f10x.o
|
||||
0x0800054c 0x0800054c 0x00000060 Code RO 323 i.SystemInit system_stm32f10x.o
|
||||
0x080005ac 0x080005ac 0x00000020 Code RO 133 i.TIM2_IRQHandler driver_timer.o
|
||||
0x080005cc 0x080005cc 0x00000020 Code RO 134 i.TIM3_IRQHandler driver_timer.o
|
||||
0x080005ec 0x080005ec 0x00000020 Code RO 135 i.TIM4_IRQHandler driver_timer.o
|
||||
0x0800060c 0x0800060c 0x0000000e Code RO 403 i.__scatterload_copy mc_w.l(handlers.o)
|
||||
0x0800061a 0x0800061a 0x00000002 Code RO 404 i.__scatterload_null mc_w.l(handlers.o)
|
||||
0x0800061c 0x0800061c 0x0000000e Code RO 405 i.__scatterload_zeroinit mc_w.l(handlers.o)
|
||||
0x0800062a 0x0800062a 0x00000002 PAD
|
||||
0x0800062c 0x0800062c 0x00000028 Code RO 271 i.driver_IMU_init driver_imu.o
|
||||
0x08000654 0x08000654 0x00000034 Code RO 272 i.driver_IMU_read driver_imu.o
|
||||
0x08000688 0x08000688 0x0000001c Code RO 273 i.driver_IMU_write_register driver_imu.o
|
||||
0x080006a4 0x080006a4 0x00000014 Code RO 218 i.driver_adc_1_launch_read driver_adc.o
|
||||
0x080006b8 0x080006b8 0x00000004 Code RO 220 i.erreur driver_adc.o
|
||||
0x080006bc 0x080006bc 0x0000001a Code RO 4 i.main main.o
|
||||
0x080006d6 0x080006d6 0x00000002 PAD
|
||||
0x080006d8 0x080006d8 0x00000020 Data RO 401 Region$$Table anon$$obj.o
|
||||
|
||||
|
||||
Execution Region ER_RW (Exec base: 0x20000000, Load base: 0x080006f8, Size: 0x00000014, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
0x20000000 0x080006f8 0x0000000c Data RW 138 .data driver_timer.o
|
||||
0x2000000c 0x08000704 0x00000004 Data RW 221 .data driver_adc.o
|
||||
0x20000010 0x08000708 0x00000004 Data RW 371 .data Lib_Com_Periph_2022.lib(myspi.o)
|
||||
|
||||
|
||||
Execution Region ER_ZI (Exec base: 0x20000014, Load base: 0x0800070c, Size: 0x00000404, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
<<<<<<< HEAD
|
||||
0x20000014 0x0800070c 0x00000004 PAD
|
||||
0x20000018 - 0x00000400 Zero RW 310 STACK startup_stm32f10x_md.o
|
||||
=======
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x0000062c, Max: 0xffffffff, ABSOLUTE)
|
||||
=======
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x000005d8, Max: 0xffffffff, ABSOLUTE)
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
=======
|
||||
Load Region LR_1 (Base: 0x08000000, Size: 0x000016ec, Max: 0xffffffff, ABSOLUTE)
|
||||
>>>>>>> encoder
|
||||
|
||||
Execution Region ER_RO (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x000016dc, Max: 0xffffffff, ABSOLUTE)
|
||||
|
||||
|
@ -829,7 +1157,16 @@ Memory Map of the image
|
|||
|
||||
Exec Addr Load Addr Size Type Attr Idx E Section Name Object
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
0x20000010 - 0x00000400 Zero RW 104 STACK startup_stm32f10x_md.o
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
0x20000010 - 0x00000400 Zero RW 100 STACK startup_stm32f10x_md.o
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
=======
|
||||
0x20000010 - 0x00000400 Zero RW 117 STACK startup_stm32f10x_md.o
|
||||
>>>>>>> encoder
|
||||
|
||||
|
||||
==============================================================================
|
||||
|
@ -839,7 +1176,23 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
56 16 0 4 0 1976 driver_adc.o
|
||||
120 6 0 0 0 1780 driver_imu.o
|
||||
100 26 0 12 0 2558 driver_timer.o
|
||||
26 0 0 0 0 207923 main.o
|
||||
36 8 236 0 1024 824 startup_stm32f10x_md.o
|
||||
328 28 0 0 0 2029 system_stm32f10x.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
668 84 268 16 1024 217090 Object Totals
|
||||
0 0 32 0 0 0 (incl. Generated)
|
||||
2 0 0 0 0 0 (incl. Padding)
|
||||
=======
|
||||
=======
|
||||
122 0 0 0 0 2505 app_girouette.o
|
||||
>>>>>>> encoder
|
||||
30 0 0 4 0 4524 driver_adc.o
|
||||
160 16 0 0 0 2108 driver_gpio.o
|
||||
658 8 0 12 0 8169 driver_timer.o
|
||||
|
@ -851,15 +1204,26 @@ Image component sizes
|
|||
----------------------------------------------------------------------
|
||||
1788 44 268 16 1024 26512 Object Totals
|
||||
0 0 32 0 0 0 (incl. Generated)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
12 0 0 0 0 0 (incl. Padding)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
10 0 0 0 0 0 (incl. Padding)
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
=======
|
||||
16 0 0 0 0 0 (incl. Padding)
|
||||
>>>>>>> encoder
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
|
||||
|
||||
756 80 0 4 0 348 myspi.o
|
||||
0 0 0 0 0 0 entry.o
|
||||
0 0 0 0 0 0 entry10a.o
|
||||
0 0 0 0 0 0 entry11a.o
|
||||
4 0 0 0 0 0 entry12b.o
|
||||
8 4 0 0 0 0 entry2.o
|
||||
4 0 0 0 0 0 entry5.o
|
||||
0 0 0 0 0 0 entry7b.o
|
||||
|
@ -885,18 +1249,31 @@ Image component sizes
|
|||
228 0 0 0 0 96 dmul.o
|
||||
|
||||
----------------------------------------------------------------------
|
||||
<<<<<<< HEAD
|
||||
848 96 0 4 4 416 Library Totals
|
||||
2 0 0 0 4 0 (incl. Padding)
|
||||
=======
|
||||
3796 102 0 0 0 1852 Library Totals
|
||||
6 0 0 0 0 0 (incl. Padding)
|
||||
>>>>>>> encoder
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug Library Name
|
||||
|
||||
<<<<<<< HEAD
|
||||
756 80 0 4 0 348 Lib_Com_Periph_2022.lib
|
||||
90 16 0 0 0 68 mc_w.l
|
||||
|
||||
----------------------------------------------------------------------
|
||||
848 96 0 4 4 416 Library Totals
|
||||
=======
|
||||
2602 102 0 0 0 964 mc_w.l
|
||||
1188 0 0 0 0 888 mf_w.l
|
||||
|
||||
----------------------------------------------------------------------
|
||||
3796 102 0 0 0 1852 Library Totals
|
||||
>>>>>>> encoder
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
@ -905,15 +1282,47 @@ Image component sizes
|
|||
|
||||
Code (inc. data) RO Data RW Data ZI Data Debug
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
1516 180 268 20 1028 216878 Grand Totals
|
||||
1516 180 268 20 1028 216878 ELF Image Totals
|
||||
1516 180 268 20 0 0 ROM Totals
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 1784 ( 1.74kB)
|
||||
Total RW Size (RW Data + ZI Data) 1048 ( 1.02kB)
|
||||
Total ROM Size (Code + RO Data + RW Data) 1804 ( 1.76kB)
|
||||
=======
|
||||
1296 40 268 16 1024 25617 Grand Totals
|
||||
1296 40 268 16 1024 25617 ELF Image Totals
|
||||
1296 40 268 16 0 0 ROM Totals
|
||||
=======
|
||||
1212 40 268 16 1024 23250 Grand Totals
|
||||
1212 40 268 16 1024 23250 ELF Image Totals
|
||||
1212 40 268 16 0 0 ROM Totals
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
=======
|
||||
5584 146 268 16 1024 27408 Grand Totals
|
||||
5584 146 268 16 1024 27408 ELF Image Totals
|
||||
5584 146 268 16 0 0 ROM Totals
|
||||
>>>>>>> encoder
|
||||
|
||||
==============================================================================
|
||||
|
||||
Total RO Size (Code + RO Data) 5852 ( 5.71kB)
|
||||
Total RW Size (RW Data + ZI Data) 1040 ( 1.02kB)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
Total ROM Size (Code + RO Data + RW Data) 1580 ( 1.54kB)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
Total ROM Size (Code + RO Data + RW Data) 1496 ( 1.46kB)
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
=======
|
||||
Total ROM Size (Code + RO Data + RW Data) 5868 ( 5.73kB)
|
||||
>>>>>>> encoder
|
||||
|
||||
==============================================================================
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -8,4 +8,5 @@
|
|||
C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h \
|
||||
C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h \
|
||||
..\driver\Driver_GPIO.h ..\driver\Driver_Timer.h \
|
||||
..\driver\Driver_UART.h src\App_girouette.h
|
||||
..\driver\Driver_UART.h ..\driver\Driver_ADC.h ..\driver\MySPI.h \
|
||||
..\driver\Driver_IMU.h src\App_girouette.h
|
||||
|
|
Binary file not shown.
|
@ -28,16 +28,97 @@ Project File Date: 04/11/2023
|
|||
*** Using Compiler 'V6.19', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
|
||||
Rebuild target 'sim'
|
||||
assembling startup_stm32f10x_md.s...
|
||||
<<<<<<< HEAD
|
||||
src/main.c(16): error: unknown type name 'Encoder'
|
||||
Encoder->Timer = TIM4;
|
||||
^
|
||||
src/main.c(16): error: expected identifier or '('
|
||||
Encoder->Timer = TIM4;
|
||||
^
|
||||
src/main.c(17): error: expected parameter declarator
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
src/main.c(17): error: expected ')'
|
||||
src/main.c(17): note: to match this '('
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
src/main.c(17): warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype]
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(20): note: conflicting prototype is here
|
||||
void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(17): error: conflicting types for 'MyTimer_Base_Init'
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(20): note: previous declaration is here
|
||||
void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(18): error: expected parameter declarator
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
src/main.c(18): error: expected ')'
|
||||
src/main.c(18): note: to match this '('
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
src/main.c(18): warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype]
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(68): note: conflicting prototype is here
|
||||
void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer);
|
||||
^
|
||||
src/main.c(18): error: conflicting types for 'MyTimer_ConfigureEncoder'
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(68): note: previous declaration is here
|
||||
void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer);
|
||||
^
|
||||
src/main.c(19): error: expected parameter declarator
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
src/main.c(19): error: expected ')'
|
||||
src/main.c(19): note: to match this '('
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
src/main.c(19): warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype]
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(29): note: conflicting prototype is here
|
||||
void MyTimer_Start(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(19): error: conflicting types for 'MyTimer_Start'
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(29): note: previous declaration is here
|
||||
void MyTimer_Start(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
3 warnings and 11 errors generated.
|
||||
=======
|
||||
compiling App_girouette.c...
|
||||
compiling Driver_UART.c...
|
||||
compiling Driver_ADC.c...
|
||||
>>>>>>> encoder
|
||||
compiling main.c...
|
||||
<<<<<<< HEAD
|
||||
compiling Driver_ADC.c...
|
||||
compiling Driver_UART.c...
|
||||
compiling Driver_IMU.c...
|
||||
=======
|
||||
>>>>>>> encoder
|
||||
compiling Driver_GPIO.c...
|
||||
compiling Driver_Timer.c...
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
compiling system_stm32f10x.c...
|
||||
".\Objects\projet-voilier.axf" - 11 Error(s), 3 Warning(s).
|
||||
=======
|
||||
=======
|
||||
compiling system_stm32f10x.c...
|
||||
>>>>>>> encoder
|
||||
linking...
|
||||
Program Size: Code=1528 RO-data=268 RW-data=16 ZI-data=1632
|
||||
".\Objects\projet-voilier.axf" - 0 Error(s), 0 Warning(s).
|
||||
>>>>>>> encoder
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
|
@ -65,9 +146,13 @@ Package Vendor: Keil
|
|||
|
||||
* Component: Keil::Device:Startup:1.0.0
|
||||
Source file: Device/Source/ARM/startup_stm32f10x_md.s
|
||||
<<<<<<< HEAD
|
||||
Target not created.
|
||||
=======
|
||||
Source file: Device/Source/system_stm32f10x.c
|
||||
Include file: RTE_Driver/Config/RTE_Device.h
|
||||
Source file: Device/Source/ARM/STM32F1xx_OPT.s
|
||||
>>>>>>> encoder
|
||||
Build Time Elapsed: 00:00:01
|
||||
</pre>
|
||||
</body>
|
||||
|
|
|
@ -3,11 +3,25 @@
|
|||
<title>Static Call Graph - [.\Objects\projet-voilier.axf]</title></head>
|
||||
<body><HR>
|
||||
<H1>Static Call Graph for image .\Objects\projet-voilier.axf</H1><HR>
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Fri Apr 7 14:37:03 2023
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 24 bytes + Unknown(Functions without stacksize, Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
=======
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Tue Apr 11 09:10:04 2023
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 56 bytes + Unknown(Functions without stacksize, Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
>>>>>>> encoder
|
||||
Call chain for Maximum Stack Depth:</H3>
|
||||
__rt_entry_main ⇒ main ⇒ driver_IMU_read
|
||||
=======
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Tue Apr 11 10:57:51 2023
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 72 bytes + Unknown(Functions without stacksize, Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
Call chain for Maximum Stack Depth:</H3>
|
||||
__rt_entry_main ⇒ main ⇒ App_Girouette_Init ⇒ MyGPIO_Init
|
||||
>>>>>>> encoder
|
||||
<P>
|
||||
<H3>
|
||||
Functions with no stack information
|
||||
|
@ -113,9 +127,21 @@ Global Symbols
|
|||
<BR><BR>[Calls]<UL><LI><a href="#[3b]">>></a> __rt_entry
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[53]"></a>__scatterload_rt2_thumb_only</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[54]"></a>__scatterload_null</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[50]"></a>__scatterload_rt2_thumb_only</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[51]"></a>__scatterload_null</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[54]"></a>__scatterload_rt2_thumb_only</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[55]"></a>__scatterload_null</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[3d]"></a>__scatterload_copy</STRONG> (Thumb, 26 bytes, Stack size unknown bytes, __scatter_copy.o(!!handler_copy), UNUSED)
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[3d]">>></a> __scatterload_copy
|
||||
|
@ -123,13 +149,70 @@ Global Symbols
|
|||
<BR>[Called By]<UL><LI><a href="#[3d]">>></a> __scatterload_copy
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[55]"></a>__scatterload_zeroinit</STRONG> (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[52]"></a>__scatterload_zeroinit</STRONG> (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[56]"></a>__scatterload_zeroinit</STRONG> (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[41]"></a>__rt_lib_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[40]">>></a> __rt_entry_li
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[56]"></a>__rt_lib_init_alloca_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030))
|
||||
|
||||
<P><STRONG><a name="[57]"></a>__rt_lib_init_argv_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E))
|
||||
|
||||
<P><STRONG><a name="[58]"></a>__rt_lib_init_atexit_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D))
|
||||
|
||||
<P><STRONG><a name="[59]"></a>__rt_lib_init_clock_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023))
|
||||
|
||||
<P><STRONG><a name="[5a]"></a>__rt_lib_init_cpp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000034))
|
||||
|
||||
<P><STRONG><a name="[5b]"></a>__rt_lib_init_exceptions_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032))
|
||||
|
||||
<P><STRONG><a name="[5c]"></a>__rt_lib_init_fp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000002))
|
||||
|
||||
<P><STRONG><a name="[5d]"></a>__rt_lib_init_fp_trap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021))
|
||||
|
||||
<P><STRONG><a name="[5e]"></a>__rt_lib_init_getenv_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025))
|
||||
|
||||
<P><STRONG><a name="[5f]"></a>__rt_lib_init_heap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C))
|
||||
|
||||
<P><STRONG><a name="[60]"></a>__rt_lib_init_lc_collate_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013))
|
||||
|
||||
<P><STRONG><a name="[61]"></a>__rt_lib_init_lc_ctype_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015))
|
||||
|
||||
<P><STRONG><a name="[62]"></a>__rt_lib_init_lc_monetary_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017))
|
||||
|
||||
<P><STRONG><a name="[63]"></a>__rt_lib_init_lc_numeric_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019))
|
||||
|
||||
<P><STRONG><a name="[64]"></a>__rt_lib_init_lc_time_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B))
|
||||
|
||||
<P><STRONG><a name="[65]"></a>__rt_lib_init_preinit_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000006))
|
||||
|
||||
<P><STRONG><a name="[66]"></a>__rt_lib_init_rand_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000010))
|
||||
|
||||
<P><STRONG><a name="[67]"></a>__rt_lib_init_relocate_pie_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004))
|
||||
|
||||
<P><STRONG><a name="[68]"></a>__rt_lib_init_return</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000035))
|
||||
|
||||
<P><STRONG><a name="[69]"></a>__rt_lib_init_signal_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F))
|
||||
|
||||
<P><STRONG><a name="[6a]"></a>__rt_lib_init_stdio_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000027))
|
||||
|
||||
<P><STRONG><a name="[6b]"></a>__rt_lib_init_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E))
|
||||
=======
|
||||
<P><STRONG><a name="[53]"></a>__rt_lib_init_alloca_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030))
|
||||
=======
|
||||
<P><STRONG><a name="[57]"></a>__rt_lib_init_alloca_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[58]"></a>__rt_lib_init_argv_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E))
|
||||
|
||||
|
@ -171,13 +254,37 @@ Global Symbols
|
|||
|
||||
<P><STRONG><a name="[6b]"></a>__rt_lib_init_stdio_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000027))
|
||||
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[68]"></a>__rt_lib_init_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E))
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[6c]"></a>__rt_lib_init_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[46]"></a>__rt_lib_shutdown</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[45]">>></a> __rt_exit_ls
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[6c]"></a>__rt_lib_shutdown_cpp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002))
|
||||
|
||||
<P><STRONG><a name="[6d]"></a>__rt_lib_shutdown_fp_trap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000007))
|
||||
|
||||
<P><STRONG><a name="[6e]"></a>__rt_lib_shutdown_heap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F))
|
||||
|
||||
<P><STRONG><a name="[6f]"></a>__rt_lib_shutdown_return</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000010))
|
||||
|
||||
<P><STRONG><a name="[70]"></a>__rt_lib_shutdown_signal_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A))
|
||||
|
||||
<P><STRONG><a name="[71]"></a>__rt_lib_shutdown_stdio_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004))
|
||||
|
||||
<P><STRONG><a name="[72]"></a>__rt_lib_shutdown_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C))
|
||||
=======
|
||||
<P><STRONG><a name="[69]"></a>__rt_lib_shutdown_cpp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002))
|
||||
=======
|
||||
<P><STRONG><a name="[6d]"></a>__rt_lib_shutdown_cpp_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[6e]"></a>__rt_lib_shutdown_fp_trap_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000007))
|
||||
|
||||
|
@ -189,14 +296,27 @@ Global Symbols
|
|||
|
||||
<P><STRONG><a name="[72]"></a>__rt_lib_shutdown_stdio_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004))
|
||||
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[6f]"></a>__rt_lib_shutdown_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C))
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[73]"></a>__rt_lib_shutdown_user_alloc_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[3b]"></a>__rt_entry</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry.o(.ARM.Collect$$rtentry$$00000000))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[3c]">>></a> __scatterload_rt2
|
||||
<LI><a href="#[36]">>></a> __main
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[73]"></a>__rt_entry_presh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002))
|
||||
=======
|
||||
<P><STRONG><a name="[70]"></a>__rt_entry_presh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002))
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[74]"></a>__rt_entry_presh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[3e]"></a>__rt_entry_sh</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
|
||||
|
@ -209,17 +329,41 @@ Global Symbols
|
|||
<BR><BR>[Calls]<UL><LI><a href="#[41]">>></a> __rt_lib_init
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[74]"></a>__rt_entry_postsh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009))
|
||||
|
||||
<P><STRONG><a name="[42]"></a>__rt_entry_main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 24 + Unknown Stack Size
|
||||
<LI>Call Chain = __rt_entry_main ⇒ main ⇒ driver_IMU_read
|
||||
=======
|
||||
<P><STRONG><a name="[71]"></a>__rt_entry_postsh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009))
|
||||
|
||||
<P><STRONG><a name="[42]"></a>__rt_entry_main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 56 + Unknown Stack Size
|
||||
<LI>Call Chain = __rt_entry_main ⇒ main ⇒ MyGPIO_Init
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[75]"></a>__rt_entry_postsh_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009))
|
||||
|
||||
<P><STRONG><a name="[42]"></a>__rt_entry_main</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 72 + Unknown Stack Size
|
||||
<LI>Call Chain = __rt_entry_main ⇒ main ⇒ App_Girouette_Init ⇒ MyGPIO_Init
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[44]">>></a> exit
|
||||
<LI><a href="#[43]">>></a> main
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[75]"></a>__rt_entry_postli_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C))
|
||||
=======
|
||||
<P><STRONG><a name="[72]"></a>__rt_entry_postli_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C))
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[76]"></a>__rt_entry_postli_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[4a]"></a>__rt_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[44]">>></a> exit
|
||||
|
@ -229,7 +373,15 @@ Global Symbols
|
|||
<BR><BR>[Calls]<UL><LI><a href="#[46]">>></a> __rt_lib_shutdown
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[76]"></a>__rt_exit_prels_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002))
|
||||
=======
|
||||
<P><STRONG><a name="[73]"></a>__rt_exit_prels_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002))
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[77]"></a>__rt_exit_prels_1</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[47]"></a>__rt_exit_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[48]">>></a> _sys_exit
|
||||
|
@ -420,11 +572,27 @@ Global Symbols
|
|||
<BR><BR>[Called By]<UL><LI><a href="#[3f]">>></a> __user_setup_stackheap
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[77]"></a>__use_two_region_memory</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[78]"></a>__rt_heap_escrow$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[79]"></a>__rt_heap_expand$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[74]"></a>__use_two_region_memory</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[78]"></a>__use_two_region_memory</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[79]"></a>__rt_heap_escrow$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[76]"></a>__rt_heap_expand$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[7a]"></a>__rt_heap_expand$2region</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[3f]"></a>__user_setup_stackheap</STRONG> (Thumb, 74 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8 + Unknown Stack Size
|
||||
|
@ -445,23 +613,55 @@ Global Symbols
|
|||
<BR>[Called By]<UL><LI><a href="#[42]">>></a> __rt_entry_main
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[7a]"></a>__user_libspace</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[77]"></a>__user_libspace</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[7b]"></a>__user_libspace</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[49]"></a>__user_perproc_libspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[3f]">>></a> __user_setup_stackheap
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[7b]"></a>__user_perthread_libspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[78]"></a>__user_perthread_libspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[7c]"></a>__user_perthread_libspace</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[48]"></a>_sys_exit</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, sys_exit.o(.text))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[47]">>></a> __rt_exit_exit
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[7c]"></a>__I$use$semihosting</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7d]"></a>__use_no_semihosting_swi</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[7e]"></a>__semihosting_library_function</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, indicate_semi.o(.text), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[79]"></a>__I$use$semihosting</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
|
||||
=======
|
||||
<P><STRONG><a name="[7d]"></a>__I$use$semihosting</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[7e]"></a>__use_no_semihosting_swi</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED)
|
||||
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[7b]"></a>__semihosting_library_function</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, indicate_semi.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[7f]"></a>__semihosting_library_function</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, indicate_semi.o(.text), UNUSED)
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[1c]"></a>ADC1_2_IRQHandler</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, driver_adc.o(.text.ADC1_2_IRQHandler))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
|
@ -494,6 +694,8 @@ Global Symbols
|
|||
<LI> driver_timer.o(.data.TIM3_fx)
|
||||
<LI> driver_timer.o(.data.TIM4_fx)
|
||||
</UL>
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
<P><STRONG><a name="[13]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, driver_timer.o(.text.EXTI3_IRQHandler))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
|
@ -524,6 +726,7 @@ Global Symbols
|
|||
<BR><BR>[Called By]<UL><LI><a href="#[43]">>></a> main
|
||||
</UL>
|
||||
|
||||
>>>>>>> encoder
|
||||
<P><STRONG><a name="[35]"></a>SystemInit</STRONG> (Thumb, 272 bytes, Stack size 8 bytes, system_stm32f10x.o(.text.SystemInit))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = SystemInit
|
||||
</UL>
|
||||
|
@ -545,6 +748,77 @@ Global Symbols
|
|||
<P><STRONG><a name="[31]"></a>USART3_IRQHandler</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, driver_uart.o(.text.USART3_IRQHandler))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[4b]"></a>driver_IMU_init</STRONG> (Thumb, 78 bytes, Stack size 8 bytes, driver_imu.o(.text.driver_IMU_init))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 12<LI>Call Chain = driver_IMU_init ⇒ MySPI_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[4c]">>></a> MySPI_Init
|
||||
<LI><a href="#[4f]">>></a> MySPI_Set_NSS
|
||||
<LI><a href="#[4e]">>></a> MySPI_Send
|
||||
<LI><a href="#[4d]">>></a> MySPI_Clear_NSS
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[43]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[50]"></a>driver_IMU_read</STRONG> (Thumb, 48 bytes, Stack size 16 bytes, driver_imu.o(.text.driver_IMU_read))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = driver_IMU_read
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[51]">>></a> MySPI_Read
|
||||
<LI><a href="#[4f]">>></a> MySPI_Set_NSS
|
||||
<LI><a href="#[4e]">>></a> MySPI_Send
|
||||
<LI><a href="#[4d]">>></a> MySPI_Clear_NSS
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[43]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[52]"></a>driver_adc_1_launch_read</STRONG> (Thumb, 18 bytes, Stack size 0 bytes, driver_adc.o(.text.driver_adc_1_launch_read))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[43]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[37]"></a>erreur</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, driver_adc.o(.text.erreur))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[37]">>></a> erreur
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[37]">>></a> erreur
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> driver_adc.o(.data.ADC1_2_fx)
|
||||
</UL>
|
||||
<P><STRONG><a name="[43]"></a>main</STRONG> (Thumb, 28 bytes, Stack size 8 bytes, main.o(.text.main))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = main ⇒ driver_IMU_read
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[50]">>></a> driver_IMU_read
|
||||
<LI><a href="#[4b]">>></a> driver_IMU_init
|
||||
<LI><a href="#[52]">>></a> driver_adc_1_launch_read
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[42]">>></a> __rt_entry_main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[4d]"></a>MySPI_Clear_NSS</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Clear_NSS))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[50]">>></a> driver_IMU_read
|
||||
<LI><a href="#[4b]">>></a> driver_IMU_init
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[4c]"></a>MySPI_Init</STRONG> (Thumb, 480 bytes, Stack size 4 bytes, myspi.o(i.MySPI_Init))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = MySPI_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[4f]">>></a> MySPI_Set_NSS
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[4b]">>></a> driver_IMU_init
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[51]"></a>MySPI_Read</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Read))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[50]">>></a> driver_IMU_read
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[4e]"></a>MySPI_Send</STRONG> (Thumb, 68 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Send))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[50]">>></a> driver_IMU_read
|
||||
<LI><a href="#[4b]">>></a> driver_IMU_init
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[4f]"></a>MySPI_Set_NSS</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Set_NSS))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[4c]">>></a> MySPI_Init
|
||||
<LI><a href="#[50]">>></a> driver_IMU_read
|
||||
<LI><a href="#[4b]">>></a> driver_IMU_init
|
||||
=======
|
||||
<P><STRONG><a name="[37]"></a>erreur</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, driver_adc.o(.text.erreur))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[37]">>></a> erreur
|
||||
</UL>
|
||||
|
@ -562,6 +836,7 @@ Global Symbols
|
|||
<LI><a href="#[51]">>></a> MyGPIO_Init
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[42]">>></a> __rt_entry_main
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<P>
|
||||
<H3>
|
||||
|
|
|
@ -5,6 +5,11 @@
|
|||
".\objects\driver_timer.o"
|
||||
".\objects\driver_uart.o"
|
||||
".\objects\driver_adc.o"
|
||||
<<<<<<< HEAD
|
||||
".\objects\driver_imu.o"
|
||||
"..\driver\Lib_Com_Periph_2022.lib"
|
||||
=======
|
||||
>>>>>>> encoder
|
||||
".\objects\startup_stm32f10x_md.o"
|
||||
".\objects\system_stm32f10x.o"
|
||||
--ro-base 0x08000000 --entry 0x08000000 --rw-base 0x20000000 --entry Reset_Handler --first __Vectors --strict --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
||||
|
|
Binary file not shown.
|
@ -27,22 +27,89 @@ Project File Date: 04/11/2023
|
|||
<h2>Output:</h2>
|
||||
*** Using Compiler 'V6.19', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
|
||||
Rebuild target 'reel'
|
||||
src/main.c(19): error: unknown type name 'Encoder'
|
||||
Encoder->Timer = TIM4;
|
||||
^
|
||||
src/main.c(19): error: expected identifier or '('
|
||||
Encoder->Timer = TIM4;
|
||||
^
|
||||
src/main.c(20): error: expected parameter declarator
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
src/main.c(20): error: expected ')'
|
||||
src/main.c(20): note: to match this '('
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
src/main.c(20): warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype]
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(20): note: conflicting prototype is here
|
||||
void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(20): error: conflicting types for 'MyTimer_Base_Init'
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(20): note: previous declaration is here
|
||||
void MyTimer_Base_Init(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(21): error: expected parameter declarator
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
src/main.c(21): error: expected ')'
|
||||
src/main.c(21): note: to match this '('
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
src/main.c(21): warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype]
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(68): note: conflicting prototype is here
|
||||
void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer);
|
||||
^
|
||||
src/main.c(21): error: conflicting types for 'MyTimer_ConfigureEncoder'
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(68): note: previous declaration is here
|
||||
void MyTimer_ConfigureEncoder(MyTimer_Struct_TypeDef *Timer);
|
||||
^
|
||||
src/main.c(22): error: expected parameter declarator
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
src/main.c(22): error: expected ')'
|
||||
src/main.c(22): note: to match this '('
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
src/main.c(22): warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype]
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(29): note: conflicting prototype is here
|
||||
void MyTimer_Start(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(22): error: conflicting types for 'MyTimer_Start'
|
||||
MyTimer_Start(&Encoder);
|
||||
^
|
||||
../driver\Driver_Timer.h(29): note: previous declaration is here
|
||||
void MyTimer_Start(MyTimer_Struct_TypeDef * Timer);
|
||||
^
|
||||
src/main.c(47): error: too few arguments to function call, expected 3, have 2
|
||||
MyTimer_ConfigurePWM(&PWM_VOILE, 10);
|
||||
~~~~~~~~~~~~~~~~~~~~ ^
|
||||
../driver\Driver_Timer.h(66): note: 'MyTimer_ConfigurePWM' declared here
|
||||
void MyTimer_ConfigurePWM(MyTimer_Struct_TypeDef *Timer, uint8_t pwm_channel, uint16_t duty_cycle);
|
||||
^
|
||||
src/main.c(128): warning: implicitly declaring library function 'sprintf' with type 'int (char *, const char *, ...)' [-Wimplicit-function-declaration]
|
||||
sprintf(str, "Dir: %f deg", (float)dir);
|
||||
^
|
||||
src/main.c(128): note: include the header <stdio.h> or explicitly provide a declaration for 'sprintf'
|
||||
4 warnings and 12 errors generated.
|
||||
compiling main.c...
|
||||
assembling startup_stm32f10x_md.s...
|
||||
compiling Driver_ADC.c...
|
||||
compiling Driver_GPIO.c...
|
||||
compiling App_girouette.c...
|
||||
compiling Driver_UART.c...
|
||||
src/main.c(108): warning: implicitly declaring library function 'sprintf' with type 'int (char *, const char *, ...)' [-Wimplicit-function-declaration]
|
||||
sprintf(str, "Dir: %f deg", (float)dir);
|
||||
^
|
||||
src/main.c(108): note: include the header <stdio.h> or explicitly provide a declaration for 'sprintf'
|
||||
1 warning generated.
|
||||
compiling main.c...
|
||||
compiling Driver_Timer.c...
|
||||
compiling Driver_ADC.c...
|
||||
compiling system_stm32f10x.c...
|
||||
linking...
|
||||
Program Size: Code=5584 RO-data=268 RW-data=16 ZI-data=1024
|
||||
".\Objects\projet-voilier_reel.axf" - 0 Error(s), 1 Warning(s).
|
||||
".\Objects\projet-voilier_reel.axf" - 12 Error(s), 4 Warning(s).
|
||||
|
||||
<h2>Software Packages used:</h2>
|
||||
|
||||
|
@ -73,6 +140,7 @@ Package Vendor: Keil
|
|||
Source file: Device/Source/system_stm32f10x.c
|
||||
Include file: RTE_Driver/Config/RTE_Device.h
|
||||
Source file: Device/Source/ARM/STM32F1xx_OPT.s
|
||||
Target not created.
|
||||
Build Time Elapsed: 00:00:01
|
||||
</pre>
|
||||
</body>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Dependencies for Project 'projet-voilier', Target 'reel': (DO NOT MODIFY !)
|
||||
CompilerVersion: 6190000::V6.19::ARMCLANG
|
||||
F (.\src\main.c)(0x6435437D)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/main.o -MD)
|
||||
F (.\src\main.c)(0x6435459E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/main.o -MD)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_reel\RTE_Components.h)(0x64218849)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -9,12 +9,15 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_compiler.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (..\driver\Driver_GPIO.h)(0x64351540)
|
||||
I (..\driver\Driver_Timer.h)(0x64351540)
|
||||
I (..\driver\Driver_UART.h)(0x64352E77)
|
||||
I (src\App_girouette.h)(0x643516BD)
|
||||
F (.\src\App_girouette.c)(0x64353982)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/app_girouette.o -MD)
|
||||
I (src\App_girouette.h)(0x643516BD)
|
||||
I (..\driver\Driver_GPIO.h)(0x64354588)
|
||||
I (..\driver\Driver_Timer.h)(0x64354588)
|
||||
I (..\driver\Driver_UART.h)(0x6435459E)
|
||||
I (..\driver\Driver_ADC.h)(0x64354588)
|
||||
I (..\driver\MySPI.h)(0x64354588)
|
||||
I (..\driver\Driver_IMU.h)(0x64354588)
|
||||
I (src\App_girouette.h)(0x6435459E)
|
||||
F (.\src\App_girouette.c)(0x6435459E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/app_girouette.o -MD)
|
||||
I (src\App_girouette.h)(0x6435459E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_reel\RTE_Components.h)(0x64218849)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -23,11 +26,11 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_compiler.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (..\driver\Driver_GPIO.h)(0x64351540)
|
||||
I (..\driver\Driver_Timer.h)(0x64351540)
|
||||
F (.\src\App_girouette.h)(0x643516BD)()
|
||||
F (..\driver\Driver_GPIO.c)(0x6435274E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_gpio.o -MD)
|
||||
I (..\driver\Driver_GPIO.h)(0x64351540)
|
||||
I (..\driver\Driver_GPIO.h)(0x64354588)
|
||||
I (..\driver\Driver_Timer.h)(0x64354588)
|
||||
F (.\src\App_girouette.h)(0x6435459E)()
|
||||
F (..\driver\Driver_GPIO.c)(0x6435459E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_gpio.o -MD)
|
||||
I (..\driver\Driver_GPIO.h)(0x64354588)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_reel\RTE_Components.h)(0x64218849)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -37,9 +40,9 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6388AB78)
|
||||
F (..\driver\Driver_GPIO.h)(0x64351540)()
|
||||
F (..\driver\Driver_Timer.c)(0x64353731)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_timer.o -MD)
|
||||
I (..\driver\Driver_Timer.h)(0x64351540)
|
||||
F (..\driver\Driver_GPIO.h)(0x64354588)()
|
||||
F (..\driver\Driver_Timer.c)(0x6435459E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_timer.o -MD)
|
||||
I (..\driver\Driver_Timer.h)(0x64354588)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_reel\RTE_Components.h)(0x64218849)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -49,9 +52,9 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6388AB78)
|
||||
F (..\driver\Driver_Timer.h)(0x64351540)()
|
||||
F (..\driver\Driver_UART.c)(0x64352E6F)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_uart.o -MD)
|
||||
I (..\driver\Driver_UART.h)(0x64352E77)
|
||||
F (..\driver\Driver_Timer.h)(0x64354588)()
|
||||
F (..\driver\Driver_UART.c)(0x6435459E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_uart.o -MD)
|
||||
I (..\driver\Driver_UART.h)(0x6435459E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_reel\RTE_Components.h)(0x64218849)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -60,8 +63,8 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_compiler.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
F (..\driver\Driver_UART.h)(0x64352E77)()
|
||||
F (..\driver\Driver_ADC.c)(0x64351540)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_adc.o -MD)
|
||||
F (..\driver\Driver_UART.h)(0x6435459E)()
|
||||
F (..\driver\Driver_ADC.c)(0x64354588)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_adc.o -MD)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_reel\RTE_Components.h)(0x64218849)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -71,8 +74,8 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6388AB78)
|
||||
I (..\driver\Driver_ADC.h)(0x64351540)
|
||||
F (..\driver\Driver_ADC.h)(0x64351540)()
|
||||
I (..\driver\Driver_ADC.h)(0x64354588)
|
||||
F (..\driver\Driver_ADC.h)(0x64354588)()
|
||||
F (RTE/Device/STM32F103RB/RTE_Device.h)(0x641B050C)()
|
||||
F (RTE/Device/STM32F103RB/startup_stm32f10x_md.s)(0x641B050C)(--target=arm-arm-none-eabi -mcpu=cortex-m3 -masm=auto -Wa,armasm,--diag_suppress=A1950W -c
-gdwarf-4 -Wa,armasm,--pd,"__MICROLIB SETA 1" -Wa,armasm,--pd,"__EVAL SETA 1"
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-Wa,armasm,--pd,"__UVISION_VERSION SETA 538" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32F10X_MD SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1"
-o ./objects/startup_stm32f10x_md.o)
|
||||
F (RTE/Device/STM32F103RB/system_stm32f10x.c)(0x641B050C)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -D__MICROLIB -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ./src -I ../driver
-I./RTE/Device/STM32F103RB
-I./RTE/_reel
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/system_stm32f10x.o -MD)
|
||||
|
|
|
@ -3,11 +3,29 @@
|
|||
<title>Static Call Graph - [.\Objects\projet-voilier_reel.axf]</title></head>
|
||||
<body><HR>
|
||||
<H1>Static Call Graph for image .\Objects\projet-voilier_reel.axf</H1><HR>
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Fri Apr 07 13:57:22 2023
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 40 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
=======
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Tue Apr 11 09:37:28 2023
|
||||
=======
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Tue Apr 11 09:52:31 2023
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 56 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
>>>>>>> encoder
|
||||
Call chain for Maximum Stack Depth:</H3>
|
||||
main ⇒ driver_IMU_read
|
||||
=======
|
||||
<BR><P>#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Tue Apr 11 13:30:39 2023
|
||||
<BR><P>
|
||||
<H3>Maximum Stack Usage = 168 bytes + Unknown(Cycles, Untraceable Function Pointers)</H3><H3>
|
||||
Call chain for Maximum Stack Depth:</H3>
|
||||
main ⇒ App_Girouette_GetDirection ⇒ __aeabi_dmul ⇒ _double_epilogue ⇒ _double_round
|
||||
>>>>>>> encoder
|
||||
<P>
|
||||
<H3>
|
||||
Mutually Recursive functions
|
||||
|
@ -21,17 +39,36 @@ Mutually Recursive functions
|
|||
<LI><a href="#[8]">PendSV_Handler</a> ⇒ <a href="#[8]">PendSV_Handler</a><BR>
|
||||
<LI><a href="#[9]">SysTick_Handler</a> ⇒ <a href="#[9]">SysTick_Handler</a><BR>
|
||||
<LI><a href="#[1f]">CAN1_RX1_IRQHandler</a> ⇒ <a href="#[1f]">CAN1_RX1_IRQHandler</a><BR>
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
<LI><a href="#[39]">Bug</a> ⇒ <a href="#[39]">Bug</a><BR>
|
||||
<LI><a href="#[38]">erreur</a> ⇒ <a href="#[38]">erreur</a><BR>
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<LI><a href="#[3a]">Bug</a> ⇒ <a href="#[3a]">Bug</a><BR>
|
||||
<LI><a href="#[39]">erreur</a> ⇒ <a href="#[39]">erreur</a><BR>
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<P>
|
||||
<H3>
|
||||
Function Pointers
|
||||
</H3><UL>
|
||||
<<<<<<< HEAD
|
||||
<LI><a href="#[1c]">ADC1_2_IRQHandler</a> from driver_adc.o(i.ADC1_2_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[38]">Bug</a> from driver_timer.o(i.Bug) referenced 3 times from driver_timer.o(.data)
|
||||
=======
|
||||
<LI><a href="#[1c]">ADC1_2_IRQHandler</a> from driver_adc.o(.text.ADC1_2_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<<<<<<< HEAD
|
||||
<LI><a href="#[39]">Bug</a> from driver_timer.o(.text.Bug) referenced from driver_timer.o(.data.TIM2_fx)
|
||||
<LI><a href="#[39]">Bug</a> from driver_timer.o(.text.Bug) referenced from driver_timer.o(.data.TIM3_fx)
|
||||
<LI><a href="#[39]">Bug</a> from driver_timer.o(.text.Bug) referenced from driver_timer.o(.data.TIM4_fx)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<LI><a href="#[3a]">Bug</a> from driver_timer.o(.text.Bug) referenced from driver_timer.o(.data.TIM2_fx)
|
||||
<LI><a href="#[3a]">Bug</a> from driver_timer.o(.text.Bug) referenced from driver_timer.o(.data.TIM3_fx)
|
||||
<LI><a href="#[3a]">Bug</a> from driver_timer.o(.text.Bug) referenced from driver_timer.o(.data.TIM4_fx)
|
||||
>>>>>>> encoder
|
||||
<LI><a href="#[4]">BusFault_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[1f]">CAN1_RX1_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[20]">CAN1_SCE_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
|
@ -63,20 +100,20 @@ Function Pointers
|
|||
<LI><a href="#[f]">RCC_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[33]">RTCAlarm_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[d]">RTC_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[0]">Reset_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[3a]">Reset_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[2d]">SPI1_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[2e]">SPI2_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[6]">SVC_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[9]">SysTick_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[36]">SystemInit</a> from system_stm32f10x.o(.text.SystemInit) referenced from startup_stm32f10x_md.o(.text)
|
||||
<LI><a href="#[36]">SystemInit</a> from system_stm32f10x.o(i.SystemInit) referenced from startup_stm32f10x_md.o(.text)
|
||||
<LI><a href="#[c]">TAMPER_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[22]">TIM1_BRK_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[25]">TIM1_CC_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[24]">TIM1_TRG_COM_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[23]">TIM1_UP_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[26]">TIM2_IRQHandler</a> from driver_timer.o(.text.TIM2_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[27]">TIM3_IRQHandler</a> from driver_timer.o(.text.TIM3_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[28]">TIM4_IRQHandler</a> from driver_timer.o(.text.TIM4_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[26]">TIM2_IRQHandler</a> from driver_timer.o(i.TIM2_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[27]">TIM3_IRQHandler</a> from driver_timer.o(i.TIM3_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[28]">TIM4_IRQHandler</a> from driver_timer.o(i.TIM4_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 driver_uart.o(.text.USART3_IRQHandler) referenced from startup_stm32f10x_md.o(RESET)
|
||||
|
@ -86,9 +123,18 @@ Function Pointers
|
|||
<LI><a href="#[5]">UsageFault_Handler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[a]">WWDG_IRQHandler</a> from startup_stm32f10x_md.o(.text) referenced from startup_stm32f10x_md.o(RESET)
|
||||
<LI><a href="#[37]">__main</a> from entry.o(.ARM.Collect$$$$00000000) referenced from startup_stm32f10x_md.o(.text)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<LI><a href="#[39]">erreur</a> from driver_adc.o(i.erreur) referenced from driver_adc.o(.data)
|
||||
<LI><a href="#[35]">main</a> from main.o(i.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
|
||||
=======
|
||||
<LI><a href="#[38]">erreur</a> from driver_adc.o(.text.erreur) referenced from driver_adc.o(.data.ADC1_2_fx)
|
||||
=======
|
||||
<LI><a href="#[38]">_sputc</a> from printfa.o(i._sputc) referenced from printfa.o(i.__0sprintf)
|
||||
<LI><a href="#[39]">erreur</a> from driver_adc.o(.text.erreur) referenced from driver_adc.o(.data.ADC1_2_fx)
|
||||
>>>>>>> encoder
|
||||
<LI><a href="#[35]">main</a> from main.o(.text.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B)
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<P>
|
||||
<H3>
|
||||
|
@ -97,7 +143,36 @@ 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>
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[49]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
|
||||
|
||||
<P><STRONG><a name="[3b]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[3c]">>></a> __scatterload
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[3d]"></a>__main_after_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[3c]">>></a> __scatterload
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[4a]"></a>_main_clock</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008))
|
||||
|
||||
<P><STRONG><a name="[4b]"></a>_main_cpp_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A))
|
||||
|
||||
<P><STRONG><a name="[4c]"></a>_main_init</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B))
|
||||
|
||||
<P><STRONG><a name="[4d]"></a>__rt_lib_shutdown_fini</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry12b.o(.ARM.Collect$$$$0000000E))
|
||||
|
||||
<P><STRONG><a name="[4e]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000F))
|
||||
|
||||
<P><STRONG><a name="[4f]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$00000011))
|
||||
|
||||
<P><STRONG><a name="[3a]"></a>Reset_Handler</STRONG> (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
=======
|
||||
<P><STRONG><a name="[42]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
|
||||
=======
|
||||
<P><STRONG><a name="[61]"></a>_main_stk</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001))
|
||||
>>>>>>> encoder
|
||||
|
||||
<P><STRONG><a name="[3b]"></a>_main_scatterload</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[3c]">>></a> __scatterload
|
||||
|
@ -115,11 +190,13 @@ Global Symbols
|
|||
|
||||
<P><STRONG><a name="[65]"></a>__rt_final_cpp</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000D))
|
||||
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[47]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F))
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<P><STRONG><a name="[66]"></a>__rt_final_exit</STRONG> (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F))
|
||||
>>>>>>> encoder
|
||||
|
||||
<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)
|
||||
</UL>
|
||||
<P><STRONG><a name="[1]"></a>NMI_Handler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, startup_stm32f10x_md.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[1]">>></a> NMI_Handler
|
||||
</UL>
|
||||
|
@ -298,8 +375,27 @@ Global Symbols
|
|||
<P><STRONG><a name="[a]"></a>WWDG_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>
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[3c]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[3d]">>></a> __main_after_scatterload
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[3b]">>></a> _main_scatterload
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[50]"></a>__scatterload_rt2</STRONG> (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[1c]"></a>ADC1_2_IRQHandler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, driver_adc.o(i.ADC1_2_IRQHandler))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = ADC1_2_IRQHandler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
=======
|
||||
<P><STRONG><a name="[3b]"></a>__scatterload</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text))
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[3c]">>></a> __main_after_scatterload
|
||||
=======
|
||||
<P><STRONG><a name="[3d]"></a>__aeabi_dmul</STRONG> (Thumb, 228 bytes, Stack size 48 bytes, dmul.o(.text))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 88<LI>Call Chain = __aeabi_dmul ⇒ _double_epilogue ⇒ _double_round
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3e]">>></a> _double_epilogue
|
||||
</UL>
|
||||
|
@ -442,6 +538,10 @@ Global Symbols
|
|||
<P><STRONG><a name="[4d]"></a>App_Girouette_GetDirection</STRONG> (Thumb, 42 bytes, Stack size 8 bytes, app_girouette.o(.text.App_Girouette_GetDirection))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 96<LI>Call Chain = App_Girouette_GetDirection ⇒ __aeabi_dmul ⇒ _double_epilogue ⇒ _double_round
|
||||
</UL>
|
||||
<<<<<<< HEAD
|
||||
<BR>[Called By]<UL><LI><a href="#[39]">>></a> Bug
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
<BR>[Calls]<UL><LI><a href="#[41]">>></a> __aeabi_d2iz
|
||||
<LI><a href="#[3d]">>></a> __aeabi_dmul
|
||||
<LI><a href="#[3f]">>></a> __aeabi_i2d
|
||||
|
@ -465,21 +565,133 @@ Global Symbols
|
|||
<BR><BR>[Calls]<UL><LI><a href="#[3a]">>></a> Bug
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[3a]">>></a> Bug
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 3]<UL><LI> driver_timer.o(.data.TIM2_fx)
|
||||
<LI> driver_timer.o(.data.TIM3_fx)
|
||||
<LI> driver_timer.o(.data.TIM4_fx)
|
||||
<P><STRONG><a name="[38]"></a>Bug</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, driver_timer.o(i.Bug))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> driver_timer.o(.data)
|
||||
</UL>
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[45]"></a>MySPI_Clear_NSS</STRONG> (Thumb, 30 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Clear_NSS))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[43]">>></a> driver_IMU_write_register
|
||||
<LI><a href="#[44]">>></a> driver_IMU_read
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[3e]"></a>MySPI_Init</STRONG> (Thumb, 480 bytes, Stack size 4 bytes, myspi.o(i.MySPI_Init))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 4<LI>Call Chain = MySPI_Init
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3f]">>></a> MySPI_Set_NSS
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[42]">>></a> driver_IMU_init
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[47]"></a>MySPI_Read</STRONG> (Thumb, 70 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Read))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[44]">>></a> driver_IMU_read
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[46]"></a>MySPI_Send</STRONG> (Thumb, 68 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Send))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[43]">>></a> driver_IMU_write_register
|
||||
<LI><a href="#[44]">>></a> driver_IMU_read
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[3f]"></a>MySPI_Set_NSS</STRONG> (Thumb, 28 bytes, Stack size 0 bytes, myspi.o(i.MySPI_Set_NSS))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[3e]">>></a> MySPI_Init
|
||||
<LI><a href="#[43]">>></a> driver_IMU_write_register
|
||||
<LI><a href="#[44]">>></a> driver_IMU_read
|
||||
</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="#[40]">>></a> SetSysClock
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(.text)
|
||||
</UL>
|
||||
<P><STRONG><a name="[26]"></a>TIM2_IRQHandler</STRONG> (Thumb, 26 bytes, Stack size 8 bytes, driver_timer.o(i.TIM2_IRQHandler))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = TIM2_IRQHandler
|
||||
</UL>
|
||||
<<<<<<< HEAD
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[27]"></a>TIM3_IRQHandler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, driver_timer.o(i.TIM3_IRQHandler))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = TIM3_IRQHandler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[28]"></a>TIM4_IRQHandler</STRONG> (Thumb, 22 bytes, Stack size 8 bytes, driver_timer.o(i.TIM4_IRQHandler))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = TIM4_IRQHandler
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[51]"></a>__scatterload_copy</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[52]"></a>__scatterload_null</STRONG> (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[53]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
|
||||
|
||||
<P><STRONG><a name="[42]"></a>driver_IMU_init</STRONG> (Thumb, 34 bytes, Stack size 8 bytes, driver_imu.o(i.driver_IMU_init))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = driver_IMU_init ⇒ driver_IMU_write_register
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3e]">>></a> MySPI_Init
|
||||
<LI><a href="#[43]">>></a> driver_IMU_write_register
|
||||
=======
|
||||
<P><STRONG><a name="[32]"></a>EXTI15_10_IRQHandler</STRONG> (Thumb, 26 bytes, Stack size 0 bytes, main.o(.text.EXTI15_10_IRQHandler))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
=======
|
||||
>>>>>>> 73cabe3969d793656407180a8db5feffe014593b
|
||||
<P><STRONG><a name="[13]"></a>EXTI3_IRQHandler</STRONG> (Thumb, 2 bytes, Stack size 0 bytes, driver_timer.o(.text.EXTI3_IRQHandler))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> startup_stm32f10x_md.o(RESET)
|
||||
</UL>
|
||||
<P><STRONG><a name="[53]"></a>MyGPIO_Init</STRONG> (Thumb, 144 bytes, Stack size 8 bytes, driver_gpio.o(.text.MyGPIO_Init))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 8<LI>Call Chain = MyGPIO_Init
|
||||
>>>>>>> encoder
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[4f]">>></a> App_Girouette_Init
|
||||
<LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[44]"></a>driver_IMU_read</STRONG> (Thumb, 52 bytes, Stack size 24 bytes, driver_imu.o(i.driver_IMU_read))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 24<LI>Call Chain = driver_IMU_read
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3f]">>></a> MySPI_Set_NSS
|
||||
<LI><a href="#[46]">>></a> MySPI_Send
|
||||
<LI><a href="#[47]">>></a> MySPI_Read
|
||||
<LI><a href="#[45]">>></a> MySPI_Clear_NSS
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[43]"></a>driver_IMU_write_register</STRONG> (Thumb, 28 bytes, Stack size 16 bytes, driver_imu.o(i.driver_IMU_write_register))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 16<LI>Call Chain = driver_IMU_write_register
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[3f]">>></a> MySPI_Set_NSS
|
||||
<LI><a href="#[46]">>></a> MySPI_Send
|
||||
<LI><a href="#[45]">>></a> MySPI_Clear_NSS
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[42]">>></a> driver_IMU_init
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[48]"></a>driver_adc_1_launch_read</STRONG> (Thumb, 14 bytes, Stack size 0 bytes, driver_adc.o(i.driver_adc_1_launch_read))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[39]"></a>erreur</STRONG> (Thumb, 4 bytes, Stack size 0 bytes, driver_adc.o(i.erreur))
|
||||
<BR>[Address Reference Count : 1]<UL><LI> driver_adc.o(.data)
|
||||
</UL>
|
||||
<P><STRONG><a name="[35]"></a>main</STRONG> (Thumb, 26 bytes, Stack size 16 bytes, main.o(i.main))
|
||||
<BR><BR>[Stack]<UL><LI>Max Depth = 40<LI>Call Chain = main ⇒ driver_IMU_read
|
||||
</UL>
|
||||
<BR>[Calls]<UL><LI><a href="#[48]">>></a> driver_adc_1_launch_read
|
||||
<LI><a href="#[44]">>></a> driver_IMU_read
|
||||
<LI><a href="#[42]">>></a> driver_IMU_init
|
||||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> entry9a.o(.ARM.Collect$$$$0000000B)
|
||||
</UL><P>
|
||||
=======
|
||||
<P><STRONG><a name="[3f]"></a>MyTimer_Base_Init</STRONG> (Thumb, 140 bytes, Stack size 0 bytes, driver_timer.o(.text.MyTimer_Base_Init))
|
||||
=======
|
||||
<P><STRONG><a name="[50]"></a>MyTimer_Base_Init</STRONG> (Thumb, 140 bytes, Stack size 0 bytes, driver_timer.o(.text.MyTimer_Base_Init))
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[4f]">>></a> App_Girouette_Init
|
||||
<LI><a href="#[35]">>></a> main
|
||||
|
@ -490,6 +702,7 @@ Global Symbols
|
|||
</UL>
|
||||
|
||||
<P><STRONG><a name="[54]"></a>MyTimer_ConfigurePWM</STRONG> (Thumb, 166 bytes, Stack size 0 bytes, driver_timer.o(.text.MyTimer_ConfigurePWM))
|
||||
>>>>>>> encoder
|
||||
<BR><BR>[Called By]<UL><LI><a href="#[35]">>></a> main
|
||||
</UL>
|
||||
|
||||
|
@ -583,9 +796,26 @@ Global Symbols
|
|||
|
||||
<P><STRONG><a name="[72]"></a>__scatterload_zeroinit</STRONG> (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED)
|
||||
<P>
|
||||
>>>>>>> encoder
|
||||
<H3>
|
||||
Local Symbols
|
||||
</H3>
|
||||
<<<<<<< HEAD
|
||||
<P><STRONG><a name="[40]"></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="#[41]">>></a> SetSysClockTo72
|
||||
</UL>
|
||||
<BR>[Called By]<UL><LI><a href="#[36]">>></a> SystemInit
|
||||
</UL>
|
||||
|
||||
<P><STRONG><a name="[41]"></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="#[40]">>></a> SetSysClock
|
||||
</UL>
|
||||
<P>
|
||||
=======
|
||||
<P><STRONG><a name="[5c]"></a>_fp_digits</STRONG> (Thumb, 366 bytes, Stack size 64 bytes, printfa.o(i._fp_digits), UNUSED)
|
||||
<BR><BR>[Calls]<UL><LI><a href="#[43]">>></a> __aeabi_uldivmod
|
||||
<LI><a href="#[4a]">>></a> __aeabi_ddiv
|
||||
|
@ -620,6 +850,7 @@ Local Symbols
|
|||
</UL>
|
||||
<BR>[Address Reference Count : 1]<UL><LI> printfa.o(i.__0sprintf)
|
||||
</UL><P>
|
||||
>>>>>>> encoder
|
||||
<H3>
|
||||
Undefined Global Symbols
|
||||
</H3><HR></body></html>
|
||||
|
|
|
@ -3,8 +3,14 @@
|
|||
".\objects\app_girouette.o"
|
||||
".\objects\driver_gpio.o"
|
||||
".\objects\driver_timer.o"
|
||||
<<<<<<< HEAD
|
||||
".\objects\driver_adc.o"
|
||||
"..\driver\Lib_Com_Periph_2022.lib"
|
||||
".\objects\driver_imu.o"
|
||||
=======
|
||||
".\objects\driver_uart.o"
|
||||
".\objects\driver_adc.o"
|
||||
>>>>>>> encoder
|
||||
".\objects\startup_stm32f10x_md.o"
|
||||
".\objects\system_stm32f10x.o"
|
||||
--library_type=microlib --ro-base 0x08000000 --entry 0x08000000 --rw-base 0x20000000 --entry Reset_Handler --first __Vectors --strict --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols
|
||||
|
|
|
@ -1,6 +1,14 @@
|
|||
Dependencies for Project 'projet-voilier', Target 'sim': (DO NOT MODIFY !)
|
||||
CompilerVersion: 6190000::V6.19::ARMCLANG
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
F (.\src\main.c)(0x64300F40)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/main.o -MD)
|
||||
=======
|
||||
F (.\src\main.c)(0x643507C6)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/main.o -MD)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
F (.\src\main.c)(0x64352014)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/main.o -MD)
|
||||
>>>>>>> encoder
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_sim\RTE_Components.h)(0x6421A260)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -9,6 +17,24 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_compiler.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
I (..\driver\Driver_GPIO.h)(0x64300B3D)
|
||||
I (..\driver\Driver_Timer.h)(0x64300E6B)
|
||||
I (..\driver\Driver_UART.h)(0x642C85A4)
|
||||
I (..\driver\Driver_ADC.h)(0x64300B06)
|
||||
I (..\driver\MySPI.h)(0x64300B06)
|
||||
I (..\driver\Driver_IMU.h)(0x64300B06)
|
||||
F (..\driver\Driver_GPIO.c)(0x64300B3C)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_gpio.o -MD)
|
||||
I (..\driver\Driver_GPIO.h)(0x64300B3D)
|
||||
=======
|
||||
I (..\driver\Driver_GPIO.h)(0x64301005)
|
||||
I (..\driver\Driver_Timer.h)(0x64301005)
|
||||
I (..\driver\Driver_UART.h)(0x642C85A4)
|
||||
F (..\driver\Driver_GPIO.c)(0x643507C3)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_gpio.o -MD)
|
||||
I (..\driver\Driver_GPIO.h)(0x64301005)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
I (..\driver\Driver_GPIO.h)(0x64351540)
|
||||
I (..\driver\Driver_Timer.h)(0x64351540)
|
||||
I (..\driver\Driver_UART.h)(0x642C85A4)
|
||||
|
@ -28,6 +54,7 @@ I (..\driver\Driver_Timer.h)(0x64351540)
|
|||
F (.\src\App_girouette.h)(0x643516BD)()
|
||||
F (..\driver\Driver_GPIO.c)(0x64351540)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_gpio.o -MD)
|
||||
I (..\driver\Driver_GPIO.h)(0x64351540)
|
||||
>>>>>>> encoder
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_sim\RTE_Components.h)(0x6421A260)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -37,9 +64,21 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6388AB78)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
F (..\driver\Driver_GPIO.h)(0x64300B3D)()
|
||||
F (..\driver\Driver_Timer.c)(0x64300E52)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_timer.o -MD)
|
||||
I (..\driver\Driver_Timer.h)(0x64300E6B)
|
||||
=======
|
||||
F (..\driver\Driver_GPIO.h)(0x64301005)()
|
||||
F (..\driver\Driver_Timer.c)(0x64301341)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_timer.o -MD)
|
||||
I (..\driver\Driver_Timer.h)(0x64301005)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
F (..\driver\Driver_GPIO.h)(0x64351540)()
|
||||
F (..\driver\Driver_Timer.c)(0x643517CC)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_timer.o -MD)
|
||||
I (..\driver\Driver_Timer.h)(0x64351540)
|
||||
>>>>>>> encoder
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_sim\RTE_Components.h)(0x6421A260)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -49,8 +88,17 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6388AB78)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
F (..\driver\Driver_Timer.h)(0x64300E6B)()
|
||||
=======
|
||||
F (..\driver\Driver_Timer.h)(0x64301005)()
|
||||
>>>>>>> encoder
|
||||
F (..\driver\Driver_UART.c)(0x64300B0F)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_uart.o -MD)
|
||||
=======
|
||||
F (..\driver\Driver_Timer.h)(0x64351540)()
|
||||
F (..\driver\Driver_UART.c)(0x6435210E)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_uart.o -MD)
|
||||
>>>>>>> encoder
|
||||
I (..\driver\Driver_UART.h)(0x642C85A4)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_sim\RTE_Components.h)(0x6421A260)
|
||||
|
@ -61,7 +109,15 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
F (..\driver\Driver_UART.h)(0x642C85A4)()
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
F (..\driver\Driver_ADC.c)(0x64300B06)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_adc.o -MD)
|
||||
=======
|
||||
F (..\driver\Driver_ADC.c)(0x64301005)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_adc.o -MD)
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
F (..\driver\Driver_ADC.c)(0x64351540)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_adc.o -MD)
|
||||
>>>>>>> encoder
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_sim\RTE_Components.h)(0x6421A260)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
|
@ -71,8 +127,32 @@ I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cms
|
|||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdio.h)(0x6388AB78)
|
||||
<<<<<<< HEAD
|
||||
<<<<<<< HEAD
|
||||
I (..\driver\Driver_ADC.h)(0x64300B06)
|
||||
F (..\driver\Driver_ADC.h)(0x64300B06)()
|
||||
F (..\driver\Driver_IMU.c)(0x64300B06)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/driver_imu.o -MD)
|
||||
I (..\driver\MySpi.h)(0x64300B06)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\stm32f10x.h)(0x61ADDBCE)
|
||||
I (RTE\_sim\RTE_Components.h)(0x6421A260)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\core_cm3.h)(0x626FAD4E)
|
||||
I (C:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x6388AB78)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_version.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_compiler.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\ARM\CMSIS\5.9.0\CMSIS\Core\Include\cmsis_armclang.h)(0x626FAD4E)
|
||||
I (C:\Users\robin\AppData\Local\Arm\Packs\Keil\STM32F1xx_DFP\2.4.0\Device\Include\system_stm32f10x.h)(0x61ADDBCE)
|
||||
F (..\driver\Driver_IMU.h)(0x64300B06)()
|
||||
F (..\driver\MyI2C.h)(0x64300B06)()
|
||||
F (..\driver\MySPI.h)(0x64300B06)()
|
||||
F (..\driver\Lib_Com_Periph_2022.lib)(0x64300B06)()
|
||||
=======
|
||||
I (..\driver\Driver_ADC.h)(0x64301005)
|
||||
F (..\driver\Driver_ADC.h)(0x64301005)()
|
||||
>>>>>>> encoder
|
||||
=======
|
||||
I (..\driver\Driver_ADC.h)(0x64351540)
|
||||
F (..\driver\Driver_ADC.h)(0x64351540)()
|
||||
>>>>>>> encoder
|
||||
F (RTE/Device/STM32F103RB/RTE_Device.h)(0x641B050C)()
|
||||
F (RTE/Device/STM32F103RB/startup_stm32f10x_md.s)(0x641B050C)(--target=arm-arm-none-eabi -mcpu=cortex-m3 -masm=auto -Wa,armasm,--diag_suppress=A1950W -c
-gdwarf-4 -Wa,armasm,--pd,"__EVAL SETA 1"
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-Wa,armasm,--pd,"__UVISION_VERSION SETA 538" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32F10X_MD SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1"
-o ./objects/startup_stm32f10x_md.o)
|
||||
F (RTE/Device/STM32F103RB/system_stm32f10x.c)(0x641B050C)(-xc -std=c90 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c
-fno-rtti -funsigned-char -fshort-enums -fshort-wchar
-D__EVAL -gdwarf-4 -O1 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../driver -I ./src
-I./RTE/Device/STM32F103RB
-I./RTE/_sim
-IC:/Users/robin/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include
-IC:/Users/robin/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include
-D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_
-o ./objects/system_stm32f10x.o -MD)
|
||||
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
0
projet-voilier/src/girouette.c
Normal file
0
projet-voilier/src/girouette.c
Normal file
|
@ -2,6 +2,24 @@
|
|||
#include "Driver_GPIO.h"
|
||||
#include "Driver_Timer.h"
|
||||
#include "Driver_UART.h"
|
||||
//=======
|
||||
#include "Driver_ADC.h"
|
||||
#include "MySPI.h"
|
||||
#include "Driver_IMU.h"
|
||||
|
||||
|
||||
//Applications
|
||||
|
||||
MyGPIO_Struct_TypeDef TI1;
|
||||
|
||||
MyGPIO_Struct_TypeDef TI2;
|
||||
|
||||
|
||||
MyTimer_Struct_TypeDef Encoder;
|
||||
Encoder->Timer = TIM4;
|
||||
MyTimer_Base_Init(&Encoder);
|
||||
MyTimer_ConfigureEncoder(&Encoder);
|
||||
MyTimer_Start(&Encoder);
|
||||
|
||||
// Application
|
||||
#include "App_girouette.h"
|
||||
|
|
Loading…
Reference in a new issue