leo 3 years ago
commit 5efe8e8bbd

2
.gitignore vendored

@ -0,0 +1,2 @@
Debug

File diff suppressed because one or more lines are too long

@ -86,6 +86,7 @@ void Error_Handler(void);
#define OTG_FS_VBUS_GPIO_Port GPIOJ
#define Audio_INT_Pin GPIO_PIN_6
#define Audio_INT_GPIO_Port GPIOD
#define Audio_INT_EXTI_IRQn EXTI9_5_IRQn
#define NC1_Pin GPIO_PIN_8
#define NC1_GPIO_Port GPIOI
#define LCD_DE_Pin GPIO_PIN_7
@ -132,12 +133,15 @@ void Error_Handler(void);
#define VCP_TX_GPIO_Port GPIOA
#define RCC_OSC32_OUT_Pin GPIO_PIN_15
#define RCC_OSC32_OUT_GPIO_Port GPIOC
#define BP_interrupt1_Pin GPIO_PIN_11
#define BP_interrupt1_GPIO_Port GPIOI
#define LCD_G6_Pin GPIO_PIN_1
#define LCD_G6_GPIO_Port GPIOK
#define LCD_G7_Pin GPIO_PIN_2
#define LCD_G7_GPIO_Port GPIOK
#define BP1_Pin GPIO_PIN_8
#define BP1_GPIO_Port GPIOA
#define PB_Pin GPIO_PIN_8
#define PB_GPIO_Port GPIOA
#define PB_EXTI_IRQn EXTI9_5_IRQn
#define OSC_25M_Pin GPIO_PIN_0
#define OSC_25M_GPIO_Port GPIOH
#define LCD_INT_Pin GPIO_PIN_13

@ -311,8 +311,6 @@ void BSP_LED_Toggle(Led_TypeDef Led);
void BSP_PB_Init(Button_TypeDef Button, ButtonMode_TypeDef ButtonMode);
void BSP_PB_DeInit(Button_TypeDef Button);
uint32_t BSP_PB_GetState(Button_TypeDef Button);
void BSP_COM_Init(COM_TypeDef COM, UART_HandleTypeDef *husart);
void BSP_COM_DeInit(COM_TypeDef COM, UART_HandleTypeDef *huart);
/**
* @}

@ -57,14 +57,14 @@
#define HAL_LTDC_MODULE_ENABLED
/* #define HAL_QSPI_MODULE_ENABLED */
#define HAL_RNG_MODULE_ENABLED
#define HAL_RTC_MODULE_ENABLED
/* #define HAL_RTC_MODULE_ENABLED */
/* #define HAL_SAI_MODULE_ENABLED */
/* #define HAL_SD_MODULE_ENABLED */
/* #define HAL_MMC_MODULE_ENABLED */
/* #define HAL_SPDIFRX_MODULE_ENABLED */
#define HAL_SPI_MODULE_ENABLED
#define HAL_TIM_MODULE_ENABLED
#define HAL_UART_MODULE_ENABLED
/* #define HAL_UART_MODULE_ENABLED */
/* #define HAL_USART_MODULE_ENABLED */
/* #define HAL_IRDA_MODULE_ENABLED */
/* #define HAL_SMARTCARD_MODULE_ENABLED */

@ -53,6 +53,7 @@ void MemManage_Handler(void);
void BusFault_Handler(void);
void UsageFault_Handler(void);
void DebugMon_Handler(void);
void EXTI9_5_IRQHandler(void);
void TIM6_DAC_IRQHandler(void);
void ETH_IRQHandler(void);
void LTDC_IRQHandler(void);

@ -17,6 +17,8 @@
*
* Bonjour ! J'aime beaucoup l'informatique industrielle
*
* Licorne magique
*
******************************************************************************
*/
/* USER CODE END Header */
@ -30,6 +32,7 @@
#include "stm32746g_discovery_lcd.h"
#include "stm32746g_discovery_ts.h"
#include "stdio.h"
#include "semphr.h"
/* USER CODE END Includes */
/* Private typedef -----------------------------------------------------------*/
@ -56,15 +59,10 @@ DAC_HandleTypeDef hdac;
DMA2D_HandleTypeDef hdma2d;
I2C_HandleTypeDef hi2c1;
I2C_HandleTypeDef hi2c3;
LTDC_HandleTypeDef hltdc;
RNG_HandleTypeDef hrng;
RTC_HandleTypeDef hrtc;
SPI_HandleTypeDef hspi2;
TIM_HandleTypeDef htim1;
@ -73,21 +71,16 @@ TIM_HandleTypeDef htim3;
TIM_HandleTypeDef htim5;
TIM_HandleTypeDef htim8;
UART_HandleTypeDef huart7;
UART_HandleTypeDef huart1;
UART_HandleTypeDef huart6;
SDRAM_HandleTypeDef hsdram1;
osThreadId GameMasterHandle;
osThreadId Joueur_1Handle;
osThreadId Block_EnemieHandle;
osThreadId ProjectileHandle;
osMessageQId Queue_EHandle;
osMessageQId Queue_FHandle;
osMessageQId Queue_JHandle;
osMessageQId Queue_PHandle;
osMessageQId Queue_NHandle;
osMessageQId Queue_FHandle;
osMessageQId Queue_EHandle;
/* USER CODE BEGIN PV */
/* USER CODE END PV */
@ -96,21 +89,15 @@ osMessageQId Queue_NHandle;
void SystemClock_Config(void);
static void MX_GPIO_Init(void);
static void MX_ADC3_Init(void);
static void MX_I2C1_Init(void);
static void MX_I2C3_Init(void);
static void MX_LTDC_Init(void);
static void MX_RTC_Init(void);
static void MX_SPI2_Init(void);
static void MX_TIM1_Init(void);
static void MX_TIM2_Init(void);
static void MX_TIM3_Init(void);
static void MX_TIM5_Init(void);
static void MX_TIM8_Init(void);
static void MX_USART1_UART_Init(void);
static void MX_USART6_UART_Init(void);
static void MX_ADC1_Init(void);
static void MX_DAC_Init(void);
static void MX_UART7_Init(void);
static void MX_FMC_Init(void);
static void MX_DMA2D_Init(void);
static void MX_CRC_Init(void);
@ -130,6 +117,11 @@ void f_projectile(void const * argument);
enum Camps_missile{
MISSILE_AMI, MISSILE_ENEMIE
};
const uint16_t joueur_width = 20;
const uint16_t joueur_height = 20;
const uint16_t monstre_width = 20;
const uint16_t monstre_height = 20;
struct Missile
{
@ -146,12 +138,12 @@ struct Missile
struct Joueur
{
// uint32_t et pas 16 car fonction d'affichage bitmap (j'en sais pas plus)
uint32_t x;
uint32_t y;
int8_t dx;
int8_t dy;
uint8_t health;
struct Missile missile;
uint32_t x; // Position de l'angle superieur gauche
uint32_t y; // Position de l'angle superieur gauche
int8_t dx; // Vitesse du joueur
int8_t dy; // Vitesse du joueur
uint8_t health; // Vie du joueur
struct Missile missile; // Missile lancé par le joueur
};
struct Monster
@ -169,6 +161,8 @@ struct Monster
struct Joueur joueur = {10, 10, 1, 1, 3};
uint8_t LED = 1;
uint32_t LCD_COLOR_BACKGROUND = LCD_COLOR_BLACK;
// Number of waves of enemies before the game is won.
@ -188,7 +182,6 @@ uint32_t Limit_ennemis_x = 50;
int main(void)
{
/* USER CODE BEGIN 1 */
char text[50] = {};
static TS_StateTypeDef TS_State;
ADC_ChannelConfTypeDef sConfig = {0};
sConfig.Rank = ADC_REGULAR_RANK_1;
@ -217,21 +210,15 @@ int main(void)
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_ADC3_Init();
MX_I2C1_Init();
MX_I2C3_Init();
MX_LTDC_Init();
MX_RTC_Init();
MX_SPI2_Init();
MX_TIM1_Init();
MX_TIM2_Init();
MX_TIM3_Init();
MX_TIM5_Init();
MX_TIM8_Init();
MX_USART1_UART_Init();
MX_USART6_UART_Init();
MX_ADC1_Init();
MX_DAC_Init();
MX_UART7_Init();
MX_FMC_Init();
MX_DMA2D_Init();
MX_CRC_Init();
@ -265,26 +252,22 @@ int main(void)
/* USER CODE END RTOS_TIMERS */
/* Create the queue(s) */
/* definition and creation of Queue_E */
osMessageQDef(Queue_E, 16, uint16_t);
Queue_EHandle = osMessageCreate(osMessageQ(Queue_E), NULL);
/* definition and creation of Queue_F */
osMessageQDef(Queue_F, 1, uint8_t);
Queue_FHandle = osMessageCreate(osMessageQ(Queue_F), NULL);
/* definition and creation of Queue_J */
osMessageQDef(Queue_J, 16, uint16_t);
Queue_JHandle = osMessageCreate(osMessageQ(Queue_J), NULL);
/* definition and creation of Queue_P */
osMessageQDef(Queue_P, 16, uint16_t);
Queue_PHandle = osMessageCreate(osMessageQ(Queue_P), NULL);
/* definition and creation of Queue_N */
osMessageQDef(Queue_N, 16, uint16_t);
osMessageQDef(Queue_N, 3, struct Missile);
Queue_NHandle = osMessageCreate(osMessageQ(Queue_N), NULL);
/* definition and creation of Queue_F */
osMessageQDef(Queue_F, 16, uint16_t);
Queue_FHandle = osMessageCreate(osMessageQ(Queue_F), NULL);
/* definition and creation of Queue_E */
osMessageQDef(Queue_E, 16, uint16_t);
Queue_EHandle = osMessageCreate(osMessageQ(Queue_E), NULL);
/* USER CODE BEGIN RTOS_QUEUES */
/* add queues, ... */
/* USER CODE END RTOS_QUEUES */
@ -319,12 +302,12 @@ int main(void)
while (1)
{
/* Code de base */
HAL_GPIO_WritePin(LED13_GPIO_Port, LED13_Pin,
HAL_GPIO_ReadPin(BP1_GPIO_Port, BP1_Pin));
HAL_GPIO_WritePin(LED14_GPIO_Port, LED14_Pin,
HAL_GPIO_ReadPin(BP2_GPIO_Port, BP2_Pin));
sprintf(text, "BP1 : %d", HAL_GPIO_ReadPin(BP1_GPIO_Port, BP1_Pin));
BSP_LCD_DisplayStringAtLine(5, (uint8_t *)text);
// HAL_GPIO_WritePin(LED13_GPIO_Port, LED13_Pin,
// HAL_GPIO_ReadPin(BP1_GPIO_Port, BP1_Pin));
// HAL_GPIO_WritePin(LED14_GPIO_Port, LED14_Pin,
// HAL_GPIO_ReadPin(BP2_GPIO_Port, BP2_Pin));
// sprintf(text, "BP1 : %d", HAL_GPIO_ReadPin(BP1_GPIO_Port, BP1_Pin));
// BSP_LCD_DisplayStringAtLine(5, (uint8_t *)text);
;
@ -376,9 +359,8 @@ void SystemClock_Config(void)
/** Initializes the RCC Oscillators according to the specified parameters
* in the RCC_OscInitTypeDef structure.
*/
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI|RCC_OSCILLATORTYPE_HSE;
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
RCC_OscInitStruct.LSIState = RCC_LSI_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
RCC_OscInitStruct.PLL.PLLM = 25;
@ -408,22 +390,13 @@ void SystemClock_Config(void)
{
Error_Handler();
}
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LTDC|RCC_PERIPHCLK_RTC
|RCC_PERIPHCLK_USART1|RCC_PERIPHCLK_USART6
|RCC_PERIPHCLK_UART7|RCC_PERIPHCLK_I2C1
|RCC_PERIPHCLK_I2C3|RCC_PERIPHCLK_CLK48;
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LTDC|RCC_PERIPHCLK_CLK48;
PeriphClkInitStruct.PLLSAI.PLLSAIN = 384;
PeriphClkInitStruct.PLLSAI.PLLSAIR = 5;
PeriphClkInitStruct.PLLSAI.PLLSAIQ = 2;
PeriphClkInitStruct.PLLSAI.PLLSAIP = RCC_PLLSAIP_DIV8;
PeriphClkInitStruct.PLLSAIDivQ = 1;
PeriphClkInitStruct.PLLSAIDivR = RCC_PLLSAIDIVR_8;
PeriphClkInitStruct.RTCClockSelection = RCC_RTCCLKSOURCE_LSI;
PeriphClkInitStruct.Usart1ClockSelection = RCC_USART1CLKSOURCE_PCLK2;
PeriphClkInitStruct.Usart6ClockSelection = RCC_USART6CLKSOURCE_PCLK2;
PeriphClkInitStruct.Uart7ClockSelection = RCC_UART7CLKSOURCE_PCLK1;
PeriphClkInitStruct.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1;
PeriphClkInitStruct.I2c3ClockSelection = RCC_I2C3CLKSOURCE_PCLK1;
PeriphClkInitStruct.Clk48ClockSelection = RCC_CLK48SOURCE_PLLSAIP;
if (HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct) != HAL_OK)
{
@ -518,7 +491,7 @@ static void MX_ADC3_Init(void)
}
/** Configure for the selected ADC regular channel its corresponding rank in the sequencer and its sample time.
*/
sConfig.Channel = ADC_CHANNEL_6;
sConfig.Channel = ADC_CHANNEL_8;
sConfig.Rank = ADC_REGULAR_RANK_1;
sConfig.SamplingTime = ADC_SAMPLETIME_3CYCLES;
if (HAL_ADC_ConfigChannel(&hadc3, &sConfig) != HAL_OK)
@ -637,98 +610,6 @@ static void MX_DMA2D_Init(void)
}
/**
* @brief I2C1 Initialization Function
* @param None
* @retval None
*/
static void MX_I2C1_Init(void)
{
/* USER CODE BEGIN I2C1_Init 0 */
/* USER CODE END I2C1_Init 0 */
/* USER CODE BEGIN I2C1_Init 1 */
/* USER CODE END I2C1_Init 1 */
hi2c1.Instance = I2C1;
hi2c1.Init.Timing = 0x00C0EAFF;
hi2c1.Init.OwnAddress1 = 0;
hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
hi2c1.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
hi2c1.Init.OwnAddress2 = 0;
hi2c1.Init.OwnAddress2Masks = I2C_OA2_NOMASK;
hi2c1.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE;
hi2c1.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE;
if (HAL_I2C_Init(&hi2c1) != HAL_OK)
{
Error_Handler();
}
/** Configure Analogue filter
*/
if (HAL_I2CEx_ConfigAnalogFilter(&hi2c1, I2C_ANALOGFILTER_ENABLE) != HAL_OK)
{
Error_Handler();
}
/** Configure Digital filter
*/
if (HAL_I2CEx_ConfigDigitalFilter(&hi2c1, 0) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN I2C1_Init 2 */
/* USER CODE END I2C1_Init 2 */
}
/**
* @brief I2C3 Initialization Function
* @param None
* @retval None
*/
static void MX_I2C3_Init(void)
{
/* USER CODE BEGIN I2C3_Init 0 */
/* USER CODE END I2C3_Init 0 */
/* USER CODE BEGIN I2C3_Init 1 */
/* USER CODE END I2C3_Init 1 */
hi2c3.Instance = I2C3;
hi2c3.Init.Timing = 0x00C0EAFF;
hi2c3.Init.OwnAddress1 = 0;
hi2c3.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
hi2c3.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
hi2c3.Init.OwnAddress2 = 0;
hi2c3.Init.OwnAddress2Masks = I2C_OA2_NOMASK;
hi2c3.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE;
hi2c3.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE;
if (HAL_I2C_Init(&hi2c3) != HAL_OK)
{
Error_Handler();
}
/** Configure Analogue filter
*/
if (HAL_I2CEx_ConfigAnalogFilter(&hi2c3, I2C_ANALOGFILTER_ENABLE) != HAL_OK)
{
Error_Handler();
}
/** Configure Digital filter
*/
if (HAL_I2CEx_ConfigDigitalFilter(&hi2c3, 0) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN I2C3_Init 2 */
/* USER CODE END I2C3_Init 2 */
}
/**
* @brief LTDC Initialization Function
* @param None
@ -817,98 +698,6 @@ static void MX_RNG_Init(void)
}
/**
* @brief RTC Initialization Function
* @param None
* @retval None
*/
static void MX_RTC_Init(void)
{
/* USER CODE BEGIN RTC_Init 0 */
/* USER CODE END RTC_Init 0 */
RTC_TimeTypeDef sTime = {0};
RTC_DateTypeDef sDate = {0};
RTC_AlarmTypeDef sAlarm = {0};
/* USER CODE BEGIN RTC_Init 1 */
/* USER CODE END RTC_Init 1 */
/** Initialize RTC Only
*/
hrtc.Instance = RTC;
hrtc.Init.HourFormat = RTC_HOURFORMAT_24;
hrtc.Init.AsynchPrediv = 127;
hrtc.Init.SynchPrediv = 255;
hrtc.Init.OutPut = RTC_OUTPUT_DISABLE;
hrtc.Init.OutPutPolarity = RTC_OUTPUT_POLARITY_HIGH;
hrtc.Init.OutPutType = RTC_OUTPUT_TYPE_OPENDRAIN;
if (HAL_RTC_Init(&hrtc) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN Check_RTC_BKUP */
/* USER CODE END Check_RTC_BKUP */
/** Initialize RTC and set the Time and Date
*/
sTime.Hours = 0x0;
sTime.Minutes = 0x0;
sTime.Seconds = 0x0;
sTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE;
sTime.StoreOperation = RTC_STOREOPERATION_RESET;
if (HAL_RTC_SetTime(&hrtc, &sTime, RTC_FORMAT_BCD) != HAL_OK)
{
Error_Handler();
}
sDate.WeekDay = RTC_WEEKDAY_MONDAY;
sDate.Month = RTC_MONTH_JANUARY;
sDate.Date = 0x1;
sDate.Year = 0x0;
if (HAL_RTC_SetDate(&hrtc, &sDate, RTC_FORMAT_BCD) != HAL_OK)
{
Error_Handler();
}
/** Enable the Alarm A
*/
sAlarm.AlarmTime.Hours = 0x0;
sAlarm.AlarmTime.Minutes = 0x0;
sAlarm.AlarmTime.Seconds = 0x0;
sAlarm.AlarmTime.SubSeconds = 0x0;
sAlarm.AlarmTime.DayLightSaving = RTC_DAYLIGHTSAVING_NONE;
sAlarm.AlarmTime.StoreOperation = RTC_STOREOPERATION_RESET;
sAlarm.AlarmMask = RTC_ALARMMASK_NONE;
sAlarm.AlarmSubSecondMask = RTC_ALARMSUBSECONDMASK_ALL;
sAlarm.AlarmDateWeekDaySel = RTC_ALARMDATEWEEKDAYSEL_DATE;
sAlarm.AlarmDateWeekDay = 0x1;
sAlarm.Alarm = RTC_ALARM_A;
if (HAL_RTC_SetAlarm(&hrtc, &sAlarm, RTC_FORMAT_BCD) != HAL_OK)
{
Error_Handler();
}
/** Enable the Alarm B
*/
sAlarm.Alarm = RTC_ALARM_B;
if (HAL_RTC_SetAlarm(&hrtc, &sAlarm, RTC_FORMAT_BCD) != HAL_OK)
{
Error_Handler();
}
/** Enable the TimeStamp
*/
if (HAL_RTCEx_SetTimeStamp(&hrtc, RTC_TIMESTAMPEDGE_RISING, RTC_TIMESTAMPPIN_POS1) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN RTC_Init 2 */
/* USER CODE END RTC_Init 2 */
}
/**
* @brief SPI2 Initialization Function
* @param None
@ -1231,111 +1020,6 @@ static void MX_TIM8_Init(void)
}
/**
* @brief UART7 Initialization Function
* @param None
* @retval None
*/
static void MX_UART7_Init(void)
{
/* USER CODE BEGIN UART7_Init 0 */
/* USER CODE END UART7_Init 0 */
/* USER CODE BEGIN UART7_Init 1 */
/* USER CODE END UART7_Init 1 */
huart7.Instance = UART7;
huart7.Init.BaudRate = 115200;
huart7.Init.WordLength = UART_WORDLENGTH_8B;
huart7.Init.StopBits = UART_STOPBITS_1;
huart7.Init.Parity = UART_PARITY_NONE;
huart7.Init.Mode = UART_MODE_TX_RX;
huart7.Init.HwFlowCtl = UART_HWCONTROL_NONE;
huart7.Init.OverSampling = UART_OVERSAMPLING_16;
huart7.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
huart7.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
if (HAL_UART_Init(&huart7) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN UART7_Init 2 */
/* USER CODE END UART7_Init 2 */
}
/**
* @brief USART1 Initialization Function
* @param None
* @retval None
*/
static void MX_USART1_UART_Init(void)
{
/* USER CODE BEGIN USART1_Init 0 */
/* USER CODE END USART1_Init 0 */
/* USER CODE BEGIN USART1_Init 1 */
/* USER CODE END USART1_Init 1 */
huart1.Instance = USART1;
huart1.Init.BaudRate = 115200;
huart1.Init.WordLength = UART_WORDLENGTH_8B;
huart1.Init.StopBits = UART_STOPBITS_1;
huart1.Init.Parity = UART_PARITY_NONE;
huart1.Init.Mode = UART_MODE_TX_RX;
huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE;
huart1.Init.OverSampling = UART_OVERSAMPLING_16;
huart1.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
huart1.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
if (HAL_UART_Init(&huart1) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN USART1_Init 2 */
/* USER CODE END USART1_Init 2 */
}
/**
* @brief USART6 Initialization Function
* @param None
* @retval None
*/
static void MX_USART6_UART_Init(void)
{
/* USER CODE BEGIN USART6_Init 0 */
/* USER CODE END USART6_Init 0 */
/* USER CODE BEGIN USART6_Init 1 */
/* USER CODE END USART6_Init 1 */
huart6.Instance = USART6;
huart6.Init.BaudRate = 115200;
huart6.Init.WordLength = UART_WORDLENGTH_8B;
huart6.Init.StopBits = UART_STOPBITS_1;
huart6.Init.Parity = UART_PARITY_NONE;
huart6.Init.Mode = UART_MODE_TX_RX;
huart6.Init.HwFlowCtl = UART_HWCONTROL_NONE;
huart6.Init.OverSampling = UART_OVERSAMPLING_16;
huart6.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
huart6.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
if (HAL_UART_Init(&huart6) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN USART6_Init 2 */
/* USER CODE END USART6_Init 2 */
}
/* FMC initialization function */
static void MX_FMC_Init(void)
{
@ -1436,6 +1120,14 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOE, &GPIO_InitStruct);
/*Configure GPIO pins : ARDUINO_SCL_D15_Pin ARDUINO_SDA_D14_Pin */
GPIO_InitStruct.Pin = ARDUINO_SCL_D15_Pin|ARDUINO_SDA_D14_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF4_I2C1;
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
/*Configure GPIO pins : ULPI_D7_Pin ULPI_D6_Pin ULPI_D5_Pin ULPI_D2_Pin
ULPI_D1_Pin ULPI_D4_Pin */
GPIO_InitStruct.Pin = ULPI_D7_Pin|ULPI_D6_Pin|ULPI_D5_Pin|ULPI_D2_Pin
@ -1446,11 +1138,11 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Alternate = GPIO_AF10_OTG_HS;
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
/*Configure GPIO pins : BP2_Pin BP1_Pin */
GPIO_InitStruct.Pin = BP2_Pin|BP1_Pin;
/*Configure GPIO pin : BP2_Pin */
GPIO_InitStruct.Pin = BP2_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
HAL_GPIO_Init(BP2_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pins : LED14_Pin LED15_Pin */
GPIO_InitStruct.Pin = LED14_Pin|LED15_Pin;
@ -1459,6 +1151,14 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(GPIOE, &GPIO_InitStruct);
/*Configure GPIO pin : VCP_RX_Pin */
GPIO_InitStruct.Pin = VCP_RX_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
HAL_GPIO_Init(VCP_RX_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pin : OTG_FS_VBUS_Pin */
GPIO_InitStruct.Pin = OTG_FS_VBUS_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
@ -1519,12 +1219,40 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(GPIOH, &GPIO_InitStruct);
/*Configure GPIO pin : VCP_TX_Pin */
GPIO_InitStruct.Pin = VCP_TX_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
HAL_GPIO_Init(VCP_TX_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pin : BP_interrupt1_Pin */
GPIO_InitStruct.Pin = BP_interrupt1_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(BP_interrupt1_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pin : PB_Pin */
GPIO_InitStruct.Pin = PB_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_IT_RISING;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(PB_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pin : LCD_INT_Pin */
GPIO_InitStruct.Pin = LCD_INT_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_EVT_RISING;
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(LCD_INT_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pins : PC7 PC6 */
GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_6;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF8_USART6;
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
/*Configure GPIO pin : ULPI_NXT_Pin */
GPIO_InitStruct.Pin = ULPI_NXT_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
@ -1539,6 +1267,14 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOG, &GPIO_InitStruct);
/*Configure GPIO pin : PF7 */
GPIO_InitStruct.Pin = GPIO_PIN_7;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF8_UART7;
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
/*Configure GPIO pins : ULPI_STP_Pin ULPI_DIR_Pin */
GPIO_InitStruct.Pin = ULPI_STP_Pin|ULPI_DIR_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
@ -1554,6 +1290,14 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
HAL_GPIO_Init(EXT_RST_GPIO_Port, &GPIO_InitStruct);
/*Configure GPIO pins : LCD_SCL_Pin LCD_SDA_Pin */
GPIO_InitStruct.Pin = LCD_SCL_Pin|LCD_SDA_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF4_I2C3;
HAL_GPIO_Init(GPIOH, &GPIO_InitStruct);
/*Configure GPIO pins : ULPI_CLK_Pin ULPI_D0_Pin */
GPIO_InitStruct.Pin = ULPI_CLK_Pin|ULPI_D0_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
@ -1562,13 +1306,27 @@ static void MX_GPIO_Init(void)
GPIO_InitStruct.Alternate = GPIO_AF10_OTG_HS;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
/* EXTI interrupt init*/
HAL_NVIC_SetPriority(EXTI9_5_IRQn, 5, 0);
HAL_NVIC_EnableIRQ(EXTI9_5_IRQn);
}
/* USER CODE BEGIN 4 */
int envoie_score( int score){
/*
socket = udp_new;
*/
void HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
{
/* Prevent unused argument(s) compilation warning */
BaseType_t pxHigherPriorityTaskWoken = pdTRUE;
// &pxHigherPriorityTaskWoken =
struct Missile missile = {joueur.x, joueur.y, 1, 0, 1, LCD_COLOR_LIGHTBLUE, 2, 1};
HAL_GPIO_TogglePin(LED13_GPIO_Port, LED13_Pin);
xQueueSendFromISR(Queue_NHandle, &missile, &pxHigherPriorityTaskWoken);
/* NOTE: This function Should not be modified, when the callback is needed,
the HAL_GPIO_EXTI_Callback could be implemented in the user file
*/
static int envoie_score( int score){
socket
socket = udp_new();
return 0;
}
@ -1633,21 +1391,25 @@ void f_Joueur_1(void const * argument)
/* USER CODE BEGIN f_Joueur_1 */
TickType_t xLastWakeTime;
const TickType_t xPeriodeTache = 10;
uint16_t Width = 20;
uint16_t Height = 20;
uint32_t joystick_h, joystick_v;
uint8_t stop = 1;
struct Missile missile;
ADC_ChannelConfTypeDef sConfig = {0};
sConfig.Rank = ADC_REGULAR_RANK_1;
sConfig.SamplingTime = ADC_SAMPLETIME_3CYCLES;
ADC_ChannelConfTypeDef sConfig3 = {0};
sConfig3.Rank = ADC_REGULAR_RANK_1;
sConfig3.SamplingTime = ADC_SAMPLETIME_3CYCLES;
sConfig3.Channel = ADC_CHANNEL_8;
sConfig.Channel = ADC_CHANNEL_8;
HAL_ADC_ConfigChannel(&hadc3, &sConfig);
HAL_ADC_ConfigChannel(&hadc3, &sConfig3);
HAL_ADC_Start(&hadc3);
ADC_ChannelConfTypeDef sConfig1 = {0};
sConfig1.Rank = ADC_REGULAR_RANK_1;
sConfig1.SamplingTime = ADC_SAMPLETIME_3CYCLES;
sConfig1.Channel = ADC_CHANNEL_0;
HAL_ADC_ConfigChannel(&hadc1, &sConfig1);
HAL_ADC_Start(&hadc1);
// Paramètre de l'écran pour la reprouductibilité
@ -1664,20 +1426,25 @@ void f_Joueur_1(void const * argument)
BSP_LCD_FillRect(joueur.x, joueur.y, Width, Height);
// BSP_LCD_DrawBitmap(uint32_t Xpos, uint32_t Ypos, uint8_t *pbmp)
HAL_ADC_ConfigChannel(&hadc3, &sConfig3);
HAL_ADC_Start(&hadc3);
while (HAL_ADC_PollForConversion(&hadc3, 100) != HAL_OK);
joystick_v = HAL_ADC_GetValue(&hadc3);
joystick_h = HAL_ADC_GetValue(&hadc3);
HAL_ADC_ConfigChannel(&hadc1, &sConfig1);
HAL_ADC_Start(&hadc1);
while (HAL_ADC_PollForConversion(&hadc1, 100) != HAL_OK);
joystick_h = HAL_ADC_GetValue(&hadc1);
joystick_v = HAL_ADC_GetValue(&hadc1);
if ((joueur.y < LCD_HEIGHT- Width - joueur.dy)&&(joystick_h < 1900)) joueur.y += joueur.dy;
if ((joueur.y > Width + joueur.dy)&&(joystick_h > 2100)) joueur.y -= joueur.dy;
if ((joueur.y < LCD_WIDTH- joueur_width - joueur.dy)&&(joystick_h < 1900)) joueur.y += joueur.dy;
if ((joueur.y > joueur.dy)&&(joystick_h > 2100)) joueur.y -= joueur.dy;
if ((joueur.x > LCD_WIDTH + joueur.dx)&&(joystick_v < 1900)) joueur.x += joueur.dx;
if ((joueur.x < 480-Height - joueur.dx)&&(joystick_v > 2100)) joueur.x -= joueur.dx;
if ((joueur.x < LCD_HEIGHT - joueur_height - joueur.dx)&&(joystick_v < 1900)) joueur.x += joueur.dx;
if ((joueur.x > joueur.dx)&&(joystick_v > 2100)) joueur.x -= joueur.dx;
BSP_LCD_SetTextColor(LCD_COLOR_BLUE);
BSP_LCD_FillRect(joueur.x, joueur.y, Width, Height);
BSP_LCD_FillRect(joueur.x, joueur.y, joueur_width, joueur_height);
if (xQueueReceive(Queue_JHandle, &missile, 0) == pdPASS)
joueur.health = joueur.health - missile.damage;
@ -1708,7 +1475,7 @@ void f_block_enemie(void const * argument)
struct Monster list_monsters[30];
uint8_t end = 0;
uint8_t deplacement = 1;
struct Missile missile;
struct Missile missile = {0,0,0,0,0,0,0,0};
/* Infinite loop */
for (;;)
{
@ -1757,8 +1524,9 @@ void f_projectile(void const * argument)
/* USER CODE BEGIN f_projectile */
TickType_t xLastWakeTime;
const TickType_t xPeriodeTache = 5000;
const int TAILLE_LISTE_MISSILE = 25;
/* Infinite loop */
struct Missile liste_missile[20];
struct Missile liste_missile[TAILLE_LISTE_MISSILE];
struct Missile missile = {70, 70, 1, 0, 0, LCD_COLOR_WHITE, 1,1};
uint8_t indice = 1;
liste_missile[0] = missile;
@ -1770,9 +1538,36 @@ void f_projectile(void const * argument)
for (;;)
{
for(int idx_missile = 0; idx_missile < TAILLE_LISTE_MISSILE; idx_missile++){
if(liste_missile[idx_missile].valide){
new_x = liste_missile[idx_missile].x + liste_missile[idx_missile].dx;
new_y = liste_missile[idx_missile].y + liste_missile[idx_missile].dy;
if ((new_x<0)|(new_x>LCD_WIDTH)|(new_y<0)|(new_y>LCD_HEIGHT))
liste_missile[idx_missile].valide = 0;
//TODO e
if (liste_missile[idx_missile].equipe == 0)&&(1){//TODO condition de choc avec le joueur
xQueueSend(Queue_JHandle, 1, 0);
}
if (liste_missile[idx_missile].equipe == 1){
for (int idx_mechant=0)
}
}
}
/*
//xQueueReceive(Queue_NHandle, &missile, 0);
//liste_missile[indice++] = missile;
if (xQueueReceive(Queue_NHandle, &missile, 0) == pdPASS)
{
liste_missile[indice++] = missile;
}
for (int i=0;i< indice;i++)
{
@ -1780,7 +1575,7 @@ void f_projectile(void const * argument)
if (liste_missile[i].valide == 1)
{
// Si le missile appartient au joueur :
if (liste_missile[i].equipe == 0)
if (liste_missile[i].equipe == 1)
{
if (liste_missile[i].x >= Limit_ennemis_x)
{
@ -1790,10 +1585,16 @@ void f_projectile(void const * argument)
if ((liste_missile[i].x > 1)&&(liste_missile[i].x < LCD_HEIGHT-1)&&(liste_missile[i].y < LCD_WIDTH-1)&&(liste_missile[i].y > 1))
{
BSP_LCD_DrawPixel(liste_missile[i].x, liste_missile[i].y, LCD_COLOR_BACKGROUND);
//BSP_LCD_DrawPixel(liste_missile[i].x, liste_missile[i].y, LCD_COLOR_BACKGROUND);
taskENTER_CRITICAL();
BSP_LCD_SetTextColor(LCD_COLOR_BACKGROUND);
BSP_LCD_FillRect(joueur.x, joueur.y, 20, 20);
liste_missile[i].x = liste_missile[i].x + liste_missile[i].dx ;
liste_missile[i].y = liste_missile[i].y + liste_missile[i].dy;
BSP_LCD_DrawPixel(liste_missile[i].x, liste_missile[i].y, liste_missile[i].color);
//BSP_LCD_DrawPixel(liste_missile[i].x, liste_missile[i].y, liste_missile[i].color);
BSP_LCD_SetTextColor(liste_missile[i].color);
BSP_LCD_FillRect(liste_missile[i].x, liste_missile[i].y, 20, 20);
taskEXIT_CRITICAL();
}
//TODO test sur tous les ennemis
else
@ -1803,7 +1604,7 @@ void f_projectile(void const * argument)
}
}
// Si le missile appartient aux ennemis
else if (liste_missile[i].equipe == 1)
else if (liste_missile[i].equipe == 0)
{
if ((liste_missile[i].x == joueur.x)&&(liste_missile[i].y == joueur.y))
{
@ -1827,10 +1628,11 @@ void f_projectile(void const * argument)
}
}
*/
vTaskDelayUntil(&xLastWakeTime, xPeriodeTache);
}
/* USER CODE END f_projectile */
}

@ -397,35 +397,8 @@ uint32_t BSP_PB_GetState(Button_TypeDef Button)
* configuration information for the specified USART peripheral.
* @retval None
*/
void BSP_COM_Init(COM_TypeDef COM, UART_HandleTypeDef *huart)
{
GPIO_InitTypeDef gpio_init_structure;
/* Enable GPIO clock */
DISCOVERY_COMx_TX_GPIO_CLK_ENABLE(COM);
DISCOVERY_COMx_RX_GPIO_CLK_ENABLE(COM);
/* Enable USART clock */
DISCOVERY_COMx_CLK_ENABLE(COM);
/* Configure USART Tx as alternate function */
gpio_init_structure.Pin = COM_TX_PIN[COM];
gpio_init_structure.Mode = GPIO_MODE_AF_PP;
gpio_init_structure.Speed = GPIO_SPEED_FAST;
gpio_init_structure.Pull = GPIO_PULLUP;
gpio_init_structure.Alternate = COM_TX_AF[COM];
HAL_GPIO_Init(COM_TX_PORT[COM], &gpio_init_structure);
/* Configure USART Rx as alternate function */
gpio_init_structure.Pin = COM_RX_PIN[COM];
gpio_init_structure.Mode = GPIO_MODE_AF_PP;
gpio_init_structure.Alternate = COM_RX_AF[COM];
HAL_GPIO_Init(COM_RX_PORT[COM], &gpio_init_structure);
/* USART configuration */
huart->Instance = COM_USART[COM];
HAL_UART_Init(huart);
}
/**
* @brief DeInit COM port.
@ -437,21 +410,7 @@ void BSP_COM_Init(COM_TypeDef COM, UART_HandleTypeDef *huart)
* configuration information for the specified USART peripheral.
* @retval None
*/
void BSP_COM_DeInit(COM_TypeDef COM, UART_HandleTypeDef *huart)
{
/* USART configuration */
huart->Instance = COM_USART[COM];
HAL_UART_DeInit(huart);
/* Enable USART clock */
DISCOVERY_COMx_CLK_DISABLE(COM);
/* DeInit GPIO pins can be done in the application
(by surcharging this __weak function) */
/* GPIO pins clock, DMA clock can be shut down in the application
by surcharging this __weak function */
}
/*******************************************************************************
BUS OPERATIONS

@ -338,117 +338,6 @@ void HAL_DMA2D_MspDeInit(DMA2D_HandleTypeDef* hdma2d)
}
/**
* @brief I2C MSP Initialization
* This function configures the hardware resources used in this example
* @param hi2c: I2C handle pointer
* @retval None
*/
void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c)
{
GPIO_InitTypeDef GPIO_InitStruct = {0};
if(hi2c->Instance==I2C1)
{
/* USER CODE BEGIN I2C1_MspInit 0 */
/* USER CODE END I2C1_MspInit 0 */
__HAL_RCC_GPIOB_CLK_ENABLE();
/**I2C1 GPIO Configuration
PB8 ------> I2C1_SCL
PB9 ------> I2C1_SDA
*/
GPIO_InitStruct.Pin = ARDUINO_SCL_D15_Pin|ARDUINO_SDA_D14_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF4_I2C1;
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
/* Peripheral clock enable */
__HAL_RCC_I2C1_CLK_ENABLE();
/* USER CODE BEGIN I2C1_MspInit 1 */
/* USER CODE END I2C1_MspInit 1 */
}
else if(hi2c->Instance==I2C3)
{
/* USER CODE BEGIN I2C3_MspInit 0 */
/* USER CODE END I2C3_MspInit 0 */
__HAL_RCC_GPIOH_CLK_ENABLE();
/**I2C3 GPIO Configuration
PH7 ------> I2C3_SCL
PH8 ------> I2C3_SDA
*/
GPIO_InitStruct.Pin = LCD_SCL_Pin|LCD_SDA_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF4_I2C3;
HAL_GPIO_Init(GPIOH, &GPIO_InitStruct);
/* Peripheral clock enable */
__HAL_RCC_I2C3_CLK_ENABLE();
/* USER CODE BEGIN I2C3_MspInit 1 */
/* USER CODE END I2C3_MspInit 1 */
}
}
/**
* @brief I2C MSP De-Initialization
* This function freeze the hardware resources used in this example
* @param hi2c: I2C handle pointer
* @retval None
*/
void HAL_I2C_MspDeInit(I2C_HandleTypeDef* hi2c)
{
if(hi2c->Instance==I2C1)
{
/* USER CODE BEGIN I2C1_MspDeInit 0 */
/* USER CODE END I2C1_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_I2C1_CLK_DISABLE();
/**I2C1 GPIO Configuration
PB8 ------> I2C1_SCL
PB9 ------> I2C1_SDA
*/
HAL_GPIO_DeInit(ARDUINO_SCL_D15_GPIO_Port, ARDUINO_SCL_D15_Pin);
HAL_GPIO_DeInit(ARDUINO_SDA_D14_GPIO_Port, ARDUINO_SDA_D14_Pin);
/* USER CODE BEGIN I2C1_MspDeInit 1 */
/* USER CODE END I2C1_MspDeInit 1 */
}
else if(hi2c->Instance==I2C3)
{
/* USER CODE BEGIN I2C3_MspDeInit 0 */
/* USER CODE END I2C3_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_I2C3_CLK_DISABLE();
/**I2C3 GPIO Configuration
PH7 ------> I2C3_SCL
PH8 ------> I2C3_SDA
*/
HAL_GPIO_DeInit(LCD_SCL_GPIO_Port, LCD_SCL_Pin);
HAL_GPIO_DeInit(LCD_SDA_GPIO_Port, LCD_SDA_Pin);
/* USER CODE BEGIN I2C3_MspDeInit 1 */
/* USER CODE END I2C3_MspDeInit 1 */
}
}
/**
* @brief LTDC MSP Initialization
* This function configures the hardware resources used in this example
@ -663,50 +552,6 @@ void HAL_RNG_MspDeInit(RNG_HandleTypeDef* hrng)
}
/**
* @brief RTC MSP Initialization
* This function configures the hardware resources used in this example
* @param hrtc: RTC handle pointer
* @retval None
*/
void HAL_RTC_MspInit(RTC_HandleTypeDef* hrtc)
{
if(hrtc->Instance==RTC)
{
/* USER CODE BEGIN RTC_MspInit 0 */
/* USER CODE END RTC_MspInit 0 */
/* Peripheral clock enable */
__HAL_RCC_RTC_ENABLE();
/* USER CODE BEGIN RTC_MspInit 1 */
/* USER CODE END RTC_MspInit 1 */
}
}
/**
* @brief RTC MSP De-Initialization
* This function freeze the hardware resources used in this example
* @param hrtc: RTC handle pointer
* @retval None
*/
void HAL_RTC_MspDeInit(RTC_HandleTypeDef* hrtc)
{
if(hrtc->Instance==RTC)
{
/* USER CODE BEGIN RTC_MspDeInit 0 */
/* USER CODE END RTC_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_RTC_DISABLE();
/* USER CODE BEGIN RTC_MspDeInit 1 */
/* USER CODE END RTC_MspDeInit 1 */
}
}
/**
* @brief SPI MSP Initialization
* This function configures the hardware resources used in this example
@ -971,165 +816,6 @@ void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* htim_base)
}
/**
* @brief UART MSP Initialization
* This function configures the hardware resources used in this example
* @param huart: UART handle pointer
* @retval None
*/
void HAL_UART_MspInit(UART_HandleTypeDef* huart)
{
GPIO_InitTypeDef GPIO_InitStruct = {0};
if(huart->Instance==UART7)
{
/* USER CODE BEGIN UART7_MspInit 0 */
/* USER CODE END UART7_MspInit 0 */
/* Peripheral clock enable */
__HAL_RCC_UART7_CLK_ENABLE();
__HAL_RCC_GPIOF_CLK_ENABLE();
/**UART7 GPIO Configuration
PF7 ------> UART7_TX
PF6 ------> UART7_RX
*/
GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_6;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF8_UART7;
HAL_GPIO_Init(GPIOF, &GPIO_InitStruct);
/* USER CODE BEGIN UART7_MspInit 1 */
/* USER CODE END UART7_MspInit 1 */
}
else if(huart->Instance==USART1)
{
/* USER CODE BEGIN USART1_MspInit 0 */
/* USER CODE END USART1_MspInit 0 */
/* Peripheral clock enable */
__HAL_RCC_USART1_CLK_ENABLE();
__HAL_RCC_GPIOB_CLK_ENABLE();
__HAL_RCC_GPIOA_CLK_ENABLE();
/**USART1 GPIO Configuration
PB7 ------> USART1_RX
PA9 ------> USART1_TX
*/
GPIO_InitStruct.Pin = VCP_RX_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
HAL_GPIO_Init(VCP_RX_GPIO_Port, &GPIO_InitStruct);
GPIO_InitStruct.Pin = VCP_TX_Pin;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
HAL_GPIO_Init(VCP_TX_GPIO_Port, &GPIO_InitStruct);
/* USER CODE BEGIN USART1_MspInit 1 */
/* USER CODE END USART1_MspInit 1 */
}
else if(huart->Instance==USART6)
{
/* USER CODE BEGIN USART6_MspInit 0 */
/* USER CODE END USART6_MspInit 0 */
/* Peripheral clock enable */
__HAL_RCC_USART6_CLK_ENABLE();
__HAL_RCC_GPIOC_CLK_ENABLE();
/**USART6 GPIO Configuration
PC7 ------> USART6_RX
PC6 ------> USART6_TX
*/
GPIO_InitStruct.Pin = GPIO_PIN_7|GPIO_PIN_6;
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
GPIO_InitStruct.Pull = GPIO_NOPULL;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
GPIO_InitStruct.Alternate = GPIO_AF8_USART6;
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
/* USER CODE BEGIN USART6_MspInit 1 */
/* USER CODE END USART6_MspInit 1 */
}
}
/**
* @brief UART MSP De-Initialization
* This function freeze the hardware resources used in this example
* @param huart: UART handle pointer
* @retval None
*/
void HAL_UART_MspDeInit(UART_HandleTypeDef* huart)
{
if(huart->Instance==UART7)
{
/* USER CODE BEGIN UART7_MspDeInit 0 */
/* USER CODE END UART7_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_UART7_CLK_DISABLE();
/**UART7 GPIO Configuration
PF7 ------> UART7_TX
PF6 ------> UART7_RX
*/
HAL_GPIO_DeInit(GPIOF, GPIO_PIN_7|GPIO_PIN_6);
/* USER CODE BEGIN UART7_MspDeInit 1 */
/* USER CODE END UART7_MspDeInit 1 */
}
else if(huart->Instance==USART1)
{
/* USER CODE BEGIN USART1_MspDeInit 0 */
/* USER CODE END USART1_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_USART1_CLK_DISABLE();
/**USART1 GPIO Configuration
PB7 ------> USART1_RX
PA9 ------> USART1_TX
*/
HAL_GPIO_DeInit(VCP_RX_GPIO_Port, VCP_RX_Pin);
HAL_GPIO_DeInit(VCP_TX_GPIO_Port, VCP_TX_Pin);
/* USER CODE BEGIN USART1_MspDeInit 1 */
/* USER CODE END USART1_MspDeInit 1 */
}
else if(huart->Instance==USART6)
{
/* USER CODE BEGIN USART6_MspDeInit 0 */
/* USER CODE END USART6_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_USART6_CLK_DISABLE();
/**USART6 GPIO Configuration
PC7 ------> USART6_RX
PC6 ------> USART6_TX
*/
HAL_GPIO_DeInit(GPIOC, GPIO_PIN_7|GPIO_PIN_6);
/* USER CODE BEGIN USART6_MspDeInit 1 */
/* USER CODE END USART6_MspDeInit 1 */
}
}
static uint32_t FMC_Initialized = 0;
static void HAL_FMC_MspInit(void){

@ -163,6 +163,20 @@ void DebugMon_Handler(void)
/* please refer to the startup file (startup_stm32f7xx.s). */
/******************************************************************************/
/**
* @brief This function handles EXTI line[9:5] interrupts.
*/
void EXTI9_5_IRQHandler(void)
{
/* USER CODE BEGIN EXTI9_5_IRQn 0 */
/* USER CODE END EXTI9_5_IRQn 0 */
HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_8);
/* USER CODE BEGIN EXTI9_5_IRQn 1 */
/* USER CODE END EXTI9_5_IRQn 1 */
}
/**
* @brief This function handles TIM6 global interrupt, DAC1 and DAC2 underrun error interrupts.
*/

@ -47,14 +47,10 @@ Core/Src/freertos.o: ../Core/Src/freertos.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
@ -154,10 +150,6 @@ Core/Src/freertos.o: ../Core/Src/freertos.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -165,7 +157,3 @@ Core/Src/freertos.o: ../Core/Src/freertos.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

Binary file not shown.

@ -1,4 +0,0 @@
freertos.c:65:13:vApplicationIdleHook 4 static
freertos.c:80:13:vApplicationStackOverflowHook 16 static
freertos.c:89:13:vApplicationMallocFailedHook 4 static
freertos.c:108:6:vApplicationGetIdleTaskMemory 24 static

@ -1,6 +0,0 @@
Core/Src/ft5336.o: ../Core/Src/ft5336.c ../Core/Inc/ft5336.h \
../Core/Inc/ts.h
../Core/Inc/ft5336.h:
../Core/Inc/ts.h:

@ -1,15 +0,0 @@
ft5336.c:147:6:ft5336_Init 16 static
ft5336.c:163:6:ft5336_Reset 16 static
ft5336.c:175:10:ft5336_ReadID 24 static
ft5336.c:207:6:ft5336_TS_Start 16 static
ft5336.c:224:9:ft5336_TS_DetectTouch 24 static
ft5336.c:256:6:ft5336_TS_GetXY 32 static
ft5336.c:377:6:ft5336_TS_EnableIT 24 static
ft5336.c:392:6:ft5336_TS_DisableIT 24 static
ft5336.c:409:9:ft5336_TS_ITStatus 16 static
ft5336.c:422:6:ft5336_TS_ClearIT 16 static
ft5336.c:437:6:ft5336_TS_GetGestureID 24 static
ft5336.c:461:6:ft5336_TS_GetTouchInfo 32 static
ft5336.c:570:16:ft5336_Get_I2C_InitializedStatus 4 static
ft5336.c:580:13:ft5336_I2C_InitializeIfRequired 8 static
ft5336.c:597:17:ft5336_TS_Configure 24 static

@ -38,14 +38,10 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h \
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
../Core/Inc/FreeRTOSConfig.h \
@ -189,10 +185,6 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -201,10 +193,6 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS/cmsis_os.h:
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:

Binary file not shown.

@ -1,30 +1,24 @@
main.c:185:5:main 280 static
main.c:360:6:SystemClock_Config 216 static
main.c:436:13:MX_ADC1_Init 24 static
main.c:486:13:MX_ADC3_Init 24 static
main.c:536:13:MX_CRC_Init 8 static
main.c:567:13:MX_DAC_Init 16 static
main.c:605:13:MX_DMA2D_Init 8 static
main.c:642:13:MX_I2C1_Init 8 static
main.c:688:13:MX_I2C3_Init 8 static
main.c:734:13:MX_LTDC_Init 64 static
main.c:796:13:MX_RNG_Init 8 static
main.c:822:13:MX_RTC_Init 80 static
main.c:914:13:MX_SPI2_Init 8 static
main.c:954:13:MX_TIM1_Init 40 static
main.c:1001:13:MX_TIM2_Init 40 static
main.c:1046:13:MX_TIM3_Init 88 static
main.c:1112:13:MX_TIM5_Init 40 static
main.c:1157:13:MX_TIM8_Init 112 static
main.c:1236:13:MX_UART7_Init 8 static
main.c:1271:13:MX_USART1_UART_Init 8 static
main.c:1306:13:MX_USART6_UART_Init 8 static
main.c:1337:13:MX_FMC_Init 40 static
main.c:1388:13:MX_GPIO_Init 72 static
main.c:1565:5:envoie_score 16 static
main.c:1581:6:f_GameMaster 32 static
main.c:1628:6:f_Joueur_1 80 static
main.c:1699:6:f_block_enemie 1016 static
main.c:1752:6:f_projectile 384 static
main.c:1842:6:HAL_TIM_PeriodElapsedCallback 16 static
main.c:1859:6:Error_Handler 4 static,ignoring_inline_asm
main.c:174:5:main 208 static
main.c:338:6:SystemClock_Config 216 static
main.c:404:13:MX_ADC1_Init 24 static
main.c:454:13:MX_ADC3_Init 24 static
main.c:504:13:MX_CRC_Init 8 static
main.c:535:13:MX_DAC_Init 16 static
main.c:573:13:MX_DMA2D_Init 8 static
main.c:610:13:MX_LTDC_Init 64 static
main.c:672:13:MX_RNG_Init 8 static
main.c:698:13:MX_SPI2_Init 8 static
main.c:738:13:MX_TIM1_Init 40 static
main.c:785:13:MX_TIM2_Init 40 static
main.c:830:13:MX_TIM3_Init 88 static
main.c:896:13:MX_TIM5_Init 40 static
main.c:941:13:MX_TIM8_Init 112 static
main.c:1016:13:MX_FMC_Init 40 static
main.c:1067:13:MX_GPIO_Init 72 static
main.c:1308:6:HAL_GPIO_EXTI_Callback 40 static
main.c:1330:6:f_GameMaster 32 static
main.c:1377:6:f_Joueur_1 96 static
main.c:1459:6:f_block_enemie 1016 static
main.c:1512:6:f_projectile 384 static
main.c:1610:6:HAL_TIM_PeriodElapsedCallback 16 static
main.c:1627:6:Error_Handler 4 static,ignoring_inline_asm

@ -39,14 +39,10 @@ Core/Src/stm32746g_discovery.o: ../Core/Src/stm32746g_discovery.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Core/Inc/stm32746g_discovery.h:
@ -128,10 +124,6 @@ Core/Src/stm32746g_discovery.o: ../Core/Src/stm32746g_discovery.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -139,7 +131,3 @@ Core/Src/stm32746g_discovery.o: ../Core/Src/stm32746g_discovery.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,34 +0,0 @@
stm32746g_discovery.c:178:10:BSP_GetVersion 4 static
stm32746g_discovery.c:190:6:BSP_LED_Init 48 static
stm32746g_discovery.c:222:6:BSP_LED_DeInit 40 static
stm32746g_discovery.c:245:6:BSP_LED_On 24 static
stm32746g_discovery.c:263:6:BSP_LED_Off 24 static
stm32746g_discovery.c:281:6:BSP_LED_Toggle 24 static
stm32746g_discovery.c:309:6:BSP_PB_Init 48 static
stm32746g_discovery.c:363:6:BSP_PB_DeInit 40 static
stm32746g_discovery.c:385:10:BSP_PB_GetState 16 static
stm32746g_discovery.c:400:6:BSP_COM_Init 48 static
stm32746g_discovery.c:440:6:BSP_COM_DeInit 16 static
stm32746g_discovery.c:466:13:I2Cx_MspInit 56 static
stm32746g_discovery.c:553:13:I2Cx_Init 16 static
stm32746g_discovery.c:591:26:I2Cx_ReadMultiple 48 static
stm32746g_discovery.c:621:26:I2Cx_WriteMultiple 48 static
stm32746g_discovery.c:649:26:I2Cx_IsDeviceReady 24 static
stm32746g_discovery.c:660:13:I2Cx_Error 16 static
stm32746g_discovery.c:679:6:AUDIO_IO_Init 8 static
stm32746g_discovery.c:688:6:AUDIO_IO_DeInit 4 static
stm32746g_discovery.c:699:6:AUDIO_IO_Write 32 static
stm32746g_discovery.c:716:10:AUDIO_IO_Read 32 static
stm32746g_discovery.c:736:6:AUDIO_IO_Delay 16 static
stm32746g_discovery.c:747:6:CAMERA_IO_Init 8 static
stm32746g_discovery.c:759:6:CAMERA_IO_Write 24 static
stm32746g_discovery.c:770:9:CAMERA_IO_Read 32 static
stm32746g_discovery.c:784:6:CAMERA_Delay 16 static
stm32746g_discovery.c:795:6:EEPROM_IO_Init 8 static
stm32746g_discovery.c:808:19:EEPROM_IO_WriteData 32 static
stm32746g_discovery.c:821:19:EEPROM_IO_ReadData 32 static
stm32746g_discovery.c:833:19:EEPROM_IO_IsDeviceReady 16 static
stm32746g_discovery.c:844:6:TS_IO_Init 8 static
stm32746g_discovery.c:856:6:TS_IO_Write 24 static
stm32746g_discovery.c:867:9:TS_IO_Read 32 static
stm32746g_discovery.c:881:6:TS_IO_Delay 16 static

@ -40,14 +40,10 @@ Core/Src/stm32746g_discovery_lcd.o: ../Core/Src/stm32746g_discovery_lcd.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
../Core/Inc/stm32746g_discovery.h ../Core/Inc/../../Fonts/fonts.h \
../Core/Src/../../Fonts/fonts.h ../Core/Src/../../Fonts/font24.c \
../Core/Src/../../Fonts/fonts.h ../Core/Src/../../Fonts/font20.c \
@ -138,10 +134,6 @@ Core/Src/stm32746g_discovery_lcd.o: ../Core/Src/stm32746g_discovery_lcd.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -150,10 +142,6 @@ Core/Src/stm32746g_discovery_lcd.o: ../Core/Src/stm32746g_discovery_lcd.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
../Core/Inc/stm32746g_discovery.h:
../Core/Inc/../../Fonts/fonts.h:

@ -1,56 +0,0 @@
stm32746g_discovery_lcd.c:164:9:BSP_LCD_Init 8 static
stm32746g_discovery_lcd.c:226:9:BSP_LCD_DeInit 8 static
stm32746g_discovery_lcd.c:247:10:BSP_LCD_GetXSize 4 static
stm32746g_discovery_lcd.c:256:10:BSP_LCD_GetYSize 4 static
stm32746g_discovery_lcd.c:266:6:BSP_LCD_SetXSize 16 static
stm32746g_discovery_lcd.c:276:6:BSP_LCD_SetYSize 16 static
stm32746g_discovery_lcd.c:287:6:BSP_LCD_LayerDefaultInit 72 static
stm32746g_discovery_lcd.c:321:6:BSP_LCD_LayerRgb565Init 72 static
stm32746g_discovery_lcd.c:354:6:BSP_LCD_SelectLayer 16 static
stm32746g_discovery_lcd.c:368:6:BSP_LCD_SetLayerVisible 16 static
stm32746g_discovery_lcd.c:390:6:BSP_LCD_SetLayerVisible_NoReload 16 static
stm32746g_discovery_lcd.c:410:6:BSP_LCD_SetTransparency 16 static
stm32746g_discovery_lcd.c:422:6:BSP_LCD_SetTransparency_NoReload 16 static
stm32746g_discovery_lcd.c:433:6:BSP_LCD_SetLayerAddress 16 static
stm32746g_discovery_lcd.c:444:6:BSP_LCD_SetLayerAddress_NoReload 16 static
stm32746g_discovery_lcd.c:458:6:BSP_LCD_SetLayerWindow 24 static
stm32746g_discovery_lcd.c:476:6:BSP_LCD_SetLayerWindow_NoReload 24 static
stm32746g_discovery_lcd.c:491:6:BSP_LCD_SetColorKeying 16 static
stm32746g_discovery_lcd.c:504:6:BSP_LCD_SetColorKeying_NoReload 16 static
stm32746g_discovery_lcd.c:516:6:BSP_LCD_ResetColorKeying 16 static
stm32746g_discovery_lcd.c:527:6:BSP_LCD_ResetColorKeying_NoReload 16 static
stm32746g_discovery_lcd.c:540:6:BSP_LCD_Reload 16 static
stm32746g_discovery_lcd.c:550:6:BSP_LCD_SetTextColor 16 static
stm32746g_discovery_lcd.c:559:10:BSP_LCD_GetTextColor 4 static
stm32746g_discovery_lcd.c:569:6:BSP_LCD_SetBackColor 16 static
stm32746g_discovery_lcd.c:578:10:BSP_LCD_GetBackColor 4 static
stm32746g_discovery_lcd.c:588:6:BSP_LCD_SetFont 16 static
stm32746g_discovery_lcd.c:597:8:BSP_LCD_GetFont 4 static
stm32746g_discovery_lcd.c:608:10:BSP_LCD_ReadPixel 32 static
stm32746g_discovery_lcd.c:643:6:BSP_LCD_Clear 40 static
stm32746g_discovery_lcd.c:654:6:BSP_LCD_ClearStringLine 32 static
stm32746g_discovery_lcd.c:674:6:BSP_LCD_DisplayChar 24 static
stm32746g_discovery_lcd.c:692:6:BSP_LCD_DisplayStringAt 48 static
stm32746g_discovery_lcd.c:753:6:BSP_LCD_DisplayStringAtLine 16 static
stm32746g_discovery_lcd.c:765:6:BSP_LCD_DrawHLine 40 static
stm32746g_discovery_lcd.c:790:6:BSP_LCD_DrawVLine 48 static
stm32746g_discovery_lcd.c:816:6:BSP_LCD_DrawLine 56 static
stm32746g_discovery_lcd.c:891:6:BSP_LCD_DrawRect 24 static
stm32746g_discovery_lcd.c:909:6:BSP_LCD_DrawCircle 40 static
stm32746g_discovery_lcd.c:956:6:BSP_LCD_DrawPolygon 32 static
stm32746g_discovery_lcd.c:984:6:BSP_LCD_DrawEllipse 64 static
stm32746g_discovery_lcd.c:1017:6:BSP_LCD_DrawPixel 24 static
stm32746g_discovery_lcd.c:1037:6:BSP_LCD_DrawBitmap 56 static
stm32746g_discovery_lcd.c:1095:6:BSP_LCD_FillRect 48 static
stm32746g_discovery_lcd.c:1122:6:BSP_LCD_FillCircle 32 static
stm32746g_discovery_lcd.c:1170:6:BSP_LCD_FillPolygon 64 static
stm32746g_discovery_lcd.c:1238:6:BSP_LCD_FillEllipse 56 static
stm32746g_discovery_lcd.c:1268:6:BSP_LCD_DisplayOn 8 static
stm32746g_discovery_lcd.c:1280:6:BSP_LCD_DisplayOff 8 static
stm32746g_discovery_lcd.c:1294:13:BSP_LCD_MspInit 72 static
stm32746g_discovery_lcd.c:1366:13:BSP_LCD_MspDeInit 40 static
stm32746g_discovery_lcd.c:1415:13:BSP_LCD_ClockConfig 16 static
stm32746g_discovery_lcd.c:1443:13:DrawChar 40 static
stm32746g_discovery_lcd.c:1502:13:FillTriangle 56 static
stm32746g_discovery_lcd.c:1580:13:LL_FillBuffer 32 static
stm32746g_discovery_lcd.c:1618:13:LL_ConvertLineToARGB8888 32 static

@ -40,14 +40,10 @@ Core/Src/stm32746g_discovery_sdram.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Core/Inc/stm32746g_discovery_sdram.h:
@ -129,10 +125,6 @@ Core/Src/stm32746g_discovery_sdram.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -140,7 +132,3 @@ Core/Src/stm32746g_discovery_sdram.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,10 +0,0 @@
stm32746g_discovery_sdram.c:146:9:BSP_SDRAM_Init 8 static
stm32746g_discovery_sdram.c:195:9:BSP_SDRAM_DeInit 8 static
stm32746g_discovery_sdram.c:221:6:BSP_SDRAM_Initialization_sequence 24 static
stm32746g_discovery_sdram.c:283:9:BSP_SDRAM_ReadData 24 static
stm32746g_discovery_sdram.c:302:9:BSP_SDRAM_ReadData_DMA 24 static
stm32746g_discovery_sdram.c:321:9:BSP_SDRAM_WriteData 24 static
stm32746g_discovery_sdram.c:340:9:BSP_SDRAM_WriteData_DMA 24 static
stm32746g_discovery_sdram.c:357:9:BSP_SDRAM_Sendcmd 16 static
stm32746g_discovery_sdram.c:375:13:BSP_SDRAM_MspInit 72 static
stm32746g_discovery_sdram.c:466:13:BSP_SDRAM_MspDeInit 16 static

@ -39,14 +39,10 @@ Core/Src/stm32746g_discovery_ts.o: ../Core/Src/stm32746g_discovery_ts.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
../Core/Inc/ft5336.h ../Core/Inc/ts.h
../Core/Inc/stm32746g_discovery_ts.h:
@ -131,10 +127,6 @@ Core/Src/stm32746g_discovery_ts.o: ../Core/Src/stm32746g_discovery_ts.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -143,10 +135,6 @@ Core/Src/stm32746g_discovery_ts.o: ../Core/Src/stm32746g_discovery_ts.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
../Core/Inc/ft5336.h:
../Core/Inc/ts.h:

@ -1,8 +0,0 @@
stm32746g_discovery_ts.c:146:9:BSP_TS_Init 24 static
stm32746g_discovery_ts.c:176:9:BSP_TS_DeInit 4 static
stm32746g_discovery_ts.c:186:9:BSP_TS_ITConfig 32 static
stm32746g_discovery_ts.c:211:9:BSP_TS_ITGetStatus 8 static
stm32746g_discovery_ts.c:222:9:BSP_TS_GetState 104 static
stm32746g_discovery_ts.c:342:9:BSP_TS_Get_GestureId 24 static
stm32746g_discovery_ts.c:386:6:BSP_TS_ITClear 8 static
stm32746g_discovery_ts.c:404:9:BSP_TS_ResetTouchData 24 static

@ -38,14 +38,10 @@ Core/Src/stm32f7xx_hal_msp.o: ../Core/Src/stm32f7xx_hal_msp.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Core/Inc/main.h:
@ -127,10 +123,6 @@ Core/Src/stm32f7xx_hal_msp.o: ../Core/Src/stm32f7xx_hal_msp.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -138,7 +130,3 @@ Core/Src/stm32f7xx_hal_msp.o: ../Core/Src/stm32f7xx_hal_msp.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -7,22 +7,16 @@ stm32f7xx_hal_msp.c:237:6:HAL_DAC_MspInit 48 static
stm32f7xx_hal_msp.c:273:6:HAL_DAC_MspDeInit 16 static
stm32f7xx_hal_msp.c:303:6:HAL_DMA2D_MspInit 24 static
stm32f7xx_hal_msp.c:325:6:HAL_DMA2D_MspDeInit 16 static
stm32f7xx_hal_msp.c:347:6:HAL_I2C_MspInit 56 static
stm32f7xx_hal_msp.c:407:6:HAL_I2C_MspDeInit 16 static
stm32f7xx_hal_msp.c:458:6:HAL_LTDC_MspInit 64 static
stm32f7xx_hal_msp.c:559:6:HAL_LTDC_MspDeInit 16 static
stm32f7xx_hal_msp.c:628:6:HAL_RNG_MspInit 24 static
stm32f7xx_hal_msp.c:650:6:HAL_RNG_MspDeInit 16 static
stm32f7xx_hal_msp.c:672:6:HAL_RTC_MspInit 16 static
stm32f7xx_hal_msp.c:694:6:HAL_RTC_MspDeInit 16 static
stm32f7xx_hal_msp.c:716:6:HAL_SPI_MspInit 48 static
stm32f7xx_hal_msp.c:769:6:HAL_SPI_MspDeInit 16 static
stm32f7xx_hal_msp.c:802:6:HAL_TIM_Base_MspInit 40 static
stm32f7xx_hal_msp.c:862:6:HAL_TIM_MspPostInit 48 static
stm32f7xx_hal_msp.c:914:6:HAL_TIM_Base_MspDeInit 16 static
stm32f7xx_hal_msp.c:980:6:HAL_UART_MspInit 64 static
stm32f7xx_hal_msp.c:1072:6:HAL_UART_MspDeInit 16 static
stm32f7xx_hal_msp.c:1135:13:HAL_FMC_MspInit 32 static
stm32f7xx_hal_msp.c:1241:6:HAL_SDRAM_MspInit 16 static
stm32f7xx_hal_msp.c:1253:13:HAL_FMC_MspDeInit 8 static
stm32f7xx_hal_msp.c:1327:6:HAL_SDRAM_MspDeInit 16 static
stm32f7xx_hal_msp.c:347:6:HAL_LTDC_MspInit 64 static
stm32f7xx_hal_msp.c:448:6:HAL_LTDC_MspDeInit 16 static
stm32f7xx_hal_msp.c:517:6:HAL_RNG_MspInit 24 static
stm32f7xx_hal_msp.c:539:6:HAL_RNG_MspDeInit 16 static
stm32f7xx_hal_msp.c:561:6:HAL_SPI_MspInit 48 static
stm32f7xx_hal_msp.c:614:6:HAL_SPI_MspDeInit 16 static
stm32f7xx_hal_msp.c:647:6:HAL_TIM_Base_MspInit 40 static
stm32f7xx_hal_msp.c:707:6:HAL_TIM_MspPostInit 48 static
stm32f7xx_hal_msp.c:759:6:HAL_TIM_Base_MspDeInit 16 static
stm32f7xx_hal_msp.c:821:13:HAL_FMC_MspInit 32 static
stm32f7xx_hal_msp.c:927:6:HAL_SDRAM_MspInit 16 static
stm32f7xx_hal_msp.c:939:13:HAL_FMC_MspDeInit 8 static
stm32f7xx_hal_msp.c:1013:6:HAL_SDRAM_MspDeInit 16 static

@ -39,14 +39,10 @@ Core/Src/stm32f7xx_hal_timebase_tim.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Core/Src/stm32f7xx_hal_timebase_tim.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Core/Src/stm32f7xx_hal_timebase_tim.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,3 +0,0 @@
stm32f7xx_hal_timebase_tim.c:42:19:HAL_InitTick 56 static
stm32f7xx_hal_timebase_tim.c:93:6:HAL_SuspendTick 4 static
stm32f7xx_hal_timebase_tim.c:105:6:HAL_ResumeTick 4 static

@ -38,14 +38,10 @@ Core/Src/stm32f7xx_it.o: ../Core/Src/stm32f7xx_it.c ../Core/Inc/main.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
../Core/Inc/stm32f7xx_it.h
../Core/Inc/main.h:
@ -128,10 +124,6 @@ Core/Src/stm32f7xx_it.o: ../Core/Src/stm32f7xx_it.c ../Core/Inc/main.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -140,8 +132,4 @@ Core/Src/stm32f7xx_it.o: ../Core/Src/stm32f7xx_it.c ../Core/Inc/main.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
../Core/Inc/stm32f7xx_it.h:

Binary file not shown.

@ -4,6 +4,7 @@ stm32f7xx_it.c:104:6:MemManage_Handler 4 static
stm32f7xx_it.c:119:6:BusFault_Handler 4 static
stm32f7xx_it.c:134:6:UsageFault_Handler 4 static
stm32f7xx_it.c:149:6:DebugMon_Handler 4 static
stm32f7xx_it.c:169:6:TIM6_DAC_IRQHandler 8 static
stm32f7xx_it.c:184:6:ETH_IRQHandler 8 static
stm32f7xx_it.c:198:6:LTDC_IRQHandler 8 static
stm32f7xx_it.c:169:6:EXTI9_5_IRQHandler 8 static
stm32f7xx_it.c:183:6:TIM6_DAC_IRQHandler 8 static
stm32f7xx_it.c:198:6:ETH_IRQHandler 8 static
stm32f7xx_it.c:212:6:LTDC_IRQHandler 8 static

@ -41,14 +41,10 @@ Core/Src/syscalls.o: ../Core/Src/syscalls.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
../Middlewares/Third_Party/LwIP/src/include/lwip/debug.h \
../Middlewares/Third_Party/LwIP/src/include/lwip/arch.h \
../Middlewares/Third_Party/LwIP/system/arch/cc.h \
@ -140,10 +136,6 @@ Core/Src/syscalls.o: ../Core/Src/syscalls.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -152,10 +144,6 @@ Core/Src/syscalls.o: ../Core/Src/syscalls.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
../Middlewares/Third_Party/LwIP/src/include/lwip/debug.h:
../Middlewares/Third_Party/LwIP/src/include/lwip/arch.h:

Binary file not shown.

@ -41,14 +41,10 @@ Core/Src/sysmem.o: ../Core/Src/sysmem.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h \
../Middlewares/Third_Party/LwIP/src/include/lwip/debug.h \
../Middlewares/Third_Party/LwIP/src/include/lwip/arch.h \
../Middlewares/Third_Party/LwIP/system/arch/cc.h \
@ -140,10 +136,6 @@ Core/Src/sysmem.o: ../Core/Src/sysmem.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -152,10 +144,6 @@ Core/Src/sysmem.o: ../Core/Src/sysmem.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:
../Middlewares/Third_Party/LwIP/src/include/lwip/debug.h:
../Middlewares/Third_Party/LwIP/src/include/lwip/arch.h:

Binary file not shown.

@ -1 +0,0 @@
sysmem.c:54:7:_sbrk 32 static

@ -38,14 +38,10 @@ Core/Src/system_stm32f7xx.o: ../Core/Src/system_stm32f7xx.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/CMSIS/Device/ST/STM32F7xx/Include/stm32f7xx.h:
@ -125,10 +121,6 @@ Core/Src/system_stm32f7xx.o: ../Core/Src/system_stm32f7xx.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -136,7 +128,3 @@ Core/Src/system_stm32f7xx.o: ../Core/Src/system_stm32f7xx.c \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

Binary file not shown.

@ -1,2 +0,0 @@
system_stm32f7xx.c:134:6:SystemInit 4 static
system_stm32f7xx.c:185:6:SystemCoreClockUpdate 32 static

@ -1,2 +0,0 @@
Core/Startup/startup_stm32f746nghx.o: \
../Core/Startup/startup_stm32f746nghx.s

@ -1,19 +0,0 @@
################################################################################
# Automatically-generated file. Do not edit!
################################################################################
# Add inputs and outputs from these tool invocations to the build variables
S_SRCS += \
../Core/Startup/startup_stm32f746nghx.s
OBJS += \
./Core/Startup/startup_stm32f746nghx.o
S_DEPS += \
./Core/Startup/startup_stm32f746nghx.d
# Each subdirectory must supply rules for building sources it contributes
Core/Startup/startup_stm32f746nghx.o: ../Core/Startup/startup_stm32f746nghx.s
arm-none-eabi-gcc -mcpu=cortex-m7 -g3 -c -x assembler-with-cpp -MMD -MP -MF"Core/Startup/startup_stm32f746nghx.d" -MT"$@" --specs=nano.specs -mfpu=fpv5-sp-d16 -mfloat-abi=hard -mthumb -o "$@" "$<"

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,29 +0,0 @@
stm32f7xx_hal.c:138:19:HAL_Init 8 static
stm32f7xx_hal.c:168:19:HAL_DeInit 8 static
stm32f7xx_hal.c:197:13:HAL_MspInit 4 static
stm32f7xx_hal.c:208:13:HAL_MspDeInit 4 static
stm32f7xx_hal.c:231:26:HAL_InitTick 16 static
stm32f7xx_hal.c:290:13:HAL_IncTick 4 static
stm32f7xx_hal.c:301:17:HAL_GetTick 4 static
stm32f7xx_hal.c:310:10:HAL_GetTickPrio 4 static
stm32f7xx_hal.c:319:19:HAL_SetTickFreq 24 static
stm32f7xx_hal.c:351:21:HAL_GetTickFreq 4 static
stm32f7xx_hal.c:367:13:HAL_Delay 24 static
stm32f7xx_hal.c:393:13:HAL_SuspendTick 4 static
stm32f7xx_hal.c:409:13:HAL_ResumeTick 4 static
stm32f7xx_hal.c:419:10:HAL_GetHalVersion 4 static
stm32f7xx_hal.c:428:10:HAL_GetREVID 4 static
stm32f7xx_hal.c:437:10:HAL_GetDEVID 4 static
stm32f7xx_hal.c:446:10:HAL_GetUIDw0 4 static
stm32f7xx_hal.c:455:10:HAL_GetUIDw1 4 static
stm32f7xx_hal.c:464:10:HAL_GetUIDw2 4 static
stm32f7xx_hal.c:473:6:HAL_DBGMCU_EnableDBGSleepMode 4 static
stm32f7xx_hal.c:482:6:HAL_DBGMCU_DisableDBGSleepMode 4 static
stm32f7xx_hal.c:491:6:HAL_DBGMCU_EnableDBGStopMode 4 static
stm32f7xx_hal.c:500:6:HAL_DBGMCU_DisableDBGStopMode 4 static
stm32f7xx_hal.c:509:6:HAL_DBGMCU_EnableDBGStandbyMode 4 static
stm32f7xx_hal.c:518:6:HAL_DBGMCU_DisableDBGStandbyMode 4 static
stm32f7xx_hal.c:529:6:HAL_EnableCompensationCell 4 static
stm32f7xx_hal.c:540:6:HAL_DisableCompensationCell 4 static
stm32f7xx_hal.c:553:6:HAL_EnableFMCMemorySwapping 4 static
stm32f7xx_hal.c:566:6:HAL_DisableFMCMemorySwapping 4 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,26 +0,0 @@
stm32f7xx_hal_adc.c:322:19:HAL_ADC_Init 24 static
stm32f7xx_hal_adc.c:416:19:HAL_ADC_DeInit 24 static
stm32f7xx_hal_adc.c:473:13:HAL_ADC_MspInit 16 static
stm32f7xx_hal_adc.c:488:13:HAL_ADC_MspDeInit 16 static
stm32f7xx_hal_adc.c:730:19:HAL_ADC_Start 24 static
stm32f7xx_hal_adc.c:843:19:HAL_ADC_Stop 16 static
stm32f7xx_hal_adc.c:886:19:HAL_ADC_PollForConversion 24 static
stm32f7xx_hal_adc.c:971:19:HAL_ADC_PollForEvent 32 static
stm32f7xx_hal_adc.c:1033:19:HAL_ADC_Start_IT 24 static
stm32f7xx_hal_adc.c:1148:19:HAL_ADC_Stop_IT 16 static
stm32f7xx_hal_adc.c:1185:6:HAL_ADC_IRQHandler 24 static
stm32f7xx_hal_adc.c:1347:19:HAL_ADC_Start_DMA 32 static
stm32f7xx_hal_adc.c:1477:19:HAL_ADC_Stop_DMA 24 static
stm32f7xx_hal_adc.c:1523:10:HAL_ADC_GetValue 16 static
stm32f7xx_hal_adc.c:1535:13:HAL_ADC_ConvCpltCallback 16 static
stm32f7xx_hal_adc.c:1550:13:HAL_ADC_ConvHalfCpltCallback 16 static
stm32f7xx_hal_adc.c:1565:13:HAL_ADC_LevelOutOfWindowCallback 16 static
stm32f7xx_hal_adc.c:1586:13:HAL_ADC_ErrorCallback 16 static
stm32f7xx_hal_adc.c:1624:19:HAL_ADC_ConfigChannel 24 static
stm32f7xx_hal_adc.c:1745:19:HAL_ADC_AnalogWDGConfig 16 static
stm32f7xx_hal_adc.c:1827:10:HAL_ADC_GetState 16 static
stm32f7xx_hal_adc.c:1839:10:HAL_ADC_GetError 16 static
stm32f7xx_hal_adc.c:1865:13:ADC_Init 16 static
stm32f7xx_hal_adc.c:1946:13:ADC_DMAConvCplt 24 static
stm32f7xx_hal_adc.c:2015:13:ADC_DMAHalfConvCplt 24 static
stm32f7xx_hal_adc.c:2032:13:ADC_DMAError 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_adc_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,15 +0,0 @@
stm32f7xx_hal_adc_ex.c:147:19:HAL_ADCEx_InjectedStart 32 static
stm32f7xx_hal_adc_ex.c:236:19:HAL_ADCEx_InjectedStart_IT 32 static
stm32f7xx_hal_adc_ex.c:333:19:HAL_ADCEx_InjectedStop 24 static
stm32f7xx_hal_adc_ex.c:387:19:HAL_ADCEx_InjectedPollForConversion 24 static
stm32f7xx_hal_adc_ex.c:454:19:HAL_ADCEx_InjectedStop_IT 24 static
stm32f7xx_hal_adc_ex.c:516:10:HAL_ADCEx_InjectedGetValue 24 static
stm32f7xx_hal_adc_ex.c:567:19:HAL_ADCEx_MultiModeStart_DMA 32 static
stm32f7xx_hal_adc_ex.c:680:19:HAL_ADCEx_MultiModeStop_DMA 24 static
stm32f7xx_hal_adc_ex.c:727:10:HAL_ADCEx_MultiModeGetValue 16 static
stm32f7xx_hal_adc_ex.c:739:13:HAL_ADCEx_InjectedConvCpltCallback 16 static
stm32f7xx_hal_adc_ex.c:756:19:HAL_ADCEx_InjectedConfigChannel 16 static
stm32f7xx_hal_adc_ex.c:912:19:HAL_ADCEx_MultiModeConfigChannel 16 static
stm32f7xx_hal_adc_ex.c:951:13:ADC_MultiModeDMAConvCplt 24 static
stm32f7xx_hal_adc_ex.c:1004:13:ADC_MultiModeDMAHalfConvCplt 24 static
stm32f7xx_hal_adc_ex.c:1017:13:ADC_MultiModeDMAError 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_cortex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,32 +0,0 @@
core_cm7.h:1865:22:__NVIC_SetPriorityGrouping 24 static
core_cm7.h:1884:26:__NVIC_GetPriorityGrouping 4 static
core_cm7.h:1896:22:__NVIC_EnableIRQ 16 static
core_cm7.h:1932:22:__NVIC_DisableIRQ 16 static,ignoring_inline_asm
core_cm7.h:1951:26:__NVIC_GetPendingIRQ 16 static
core_cm7.h:1970:22:__NVIC_SetPendingIRQ 16 static
core_cm7.h:1985:22:__NVIC_ClearPendingIRQ 16 static
core_cm7.h:2002:26:__NVIC_GetActive 16 static
core_cm7.h:2024:22:__NVIC_SetPriority 16 static
core_cm7.h:2046:26:__NVIC_GetPriority 16 static
core_cm7.h:2071:26:NVIC_EncodePriority 40 static
core_cm7.h:2098:22:NVIC_DecodePriority 40 static
core_cm7.h:2147:34:__NVIC_SystemReset 4 static,ignoring_inline_asm
core_cm7.h:2564:26:SysTick_Config 16 static
stm32f7xx_hal_cortex.c:143:6:HAL_NVIC_SetPriorityGrouping 16 static
stm32f7xx_hal_cortex.c:165:6:HAL_NVIC_SetPriority 32 static
stm32f7xx_hal_cortex.c:187:6:HAL_NVIC_EnableIRQ 16 static
stm32f7xx_hal_cortex.c:203:6:HAL_NVIC_DisableIRQ 16 static
stm32f7xx_hal_cortex.c:216:6:HAL_NVIC_SystemReset 8 static
stm32f7xx_hal_cortex.c:229:10:HAL_SYSTICK_Config 16 static
stm32f7xx_hal_cortex.c:258:6:HAL_MPU_Disable 4 static,ignoring_inline_asm
stm32f7xx_hal_cortex.c:281:6:HAL_MPU_Enable 16 static,ignoring_inline_asm
stm32f7xx_hal_cortex.c:300:6:HAL_MPU_ConfigRegion 16 static
stm32f7xx_hal_cortex.c:344:10:HAL_NVIC_GetPriorityGrouping 8 static
stm32f7xx_hal_cortex.c:371:6:HAL_NVIC_GetPriority 24 static
stm32f7xx_hal_cortex.c:386:6:HAL_NVIC_SetPendingIRQ 16 static
stm32f7xx_hal_cortex.c:404:10:HAL_NVIC_GetPendingIRQ 16 static
stm32f7xx_hal_cortex.c:420:6:HAL_NVIC_ClearPendingIRQ 16 static
stm32f7xx_hal_cortex.c:437:10:HAL_NVIC_GetActive 16 static
stm32f7xx_hal_cortex.c:454:6:HAL_SYSTICK_CLKSourceConfig 16 static
stm32f7xx_hal_cortex.c:472:6:HAL_SYSTICK_IRQHandler 8 static
stm32f7xx_hal_cortex.c:481:13:HAL_SYSTICK_Callback 4 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_crc_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dac.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dac.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dac.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,21 +0,0 @@
stm32f7xx_hal_dac.c:267:19:HAL_DAC_Init 16 static
stm32f7xx_hal_dac.c:326:19:HAL_DAC_DeInit 16 static
stm32f7xx_hal_dac.c:371:13:HAL_DAC_MspInit 16 static
stm32f7xx_hal_dac.c:387:13:HAL_DAC_MspDeInit 16 static
stm32f7xx_hal_dac.c:429:19:HAL_DAC_Start 24 static
stm32f7xx_hal_dac.c:488:19:HAL_DAC_Stop 16 static
stm32f7xx_hal_dac.c:520:19:HAL_DAC_Start_DMA 32 static
stm32f7xx_hal_dac.c:639:19:HAL_DAC_Stop_DMA 24 static
stm32f7xx_hal_dac.c:689:10:HAL_DAC_GetValue 16 static
stm32f7xx_hal_dac.c:711:6:HAL_DAC_IRQHandler 16 static
stm32f7xx_hal_dac.c:765:13:HAL_DAC_ConvCpltCallbackCh1 16 static
stm32f7xx_hal_dac.c:781:13:HAL_DAC_ConvHalfCpltCallbackCh1 16 static
stm32f7xx_hal_dac.c:797:13:HAL_DAC_ErrorCallbackCh1 16 static
stm32f7xx_hal_dac.c:813:13:HAL_DAC_DMAUnderrunCallbackCh1 16 static
stm32f7xx_hal_dac.c:853:19:HAL_DAC_ConfigChannel 32 static
stm32f7xx_hal_dac.c:909:19:HAL_DAC_SetValue 32 static
stm32f7xx_hal_dac.c:961:22:HAL_DAC_GetState 16 static
stm32f7xx_hal_dac.c:974:10:HAL_DAC_GetError 16 static
stm32f7xx_hal_dac.c:1233:13:DAC_DMAConvCpltCh1 24 static
stm32f7xx_hal_dac.c:1252:13:DAC_DMAHalfConvCpltCh1 24 static
stm32f7xx_hal_dac.c:1269:13:DAC_DMAErrorCh1 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dac_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dac_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dac_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,11 +0,0 @@
stm32f7xx_hal_dac_ex.c:88:10:HAL_DACEx_DualGetValue 24 static
stm32f7xx_hal_dac_ex.c:124:19:HAL_DACEx_TriangleWaveGenerate 24 static
stm32f7xx_hal_dac_ex.c:173:19:HAL_DACEx_NoiseWaveGenerate 24 static
stm32f7xx_hal_dac_ex.c:213:19:HAL_DACEx_DualSetValue 32 static
stm32f7xx_hal_dac_ex.c:252:13:HAL_DACEx_ConvCpltCallbackCh2 16 static
stm32f7xx_hal_dac_ex.c:268:13:HAL_DACEx_ConvHalfCpltCallbackCh2 16 static
stm32f7xx_hal_dac_ex.c:284:13:HAL_DACEx_ErrorCallbackCh2 16 static
stm32f7xx_hal_dac_ex.c:300:13:HAL_DACEx_DMAUnderrunCallbackCh2 16 static
stm32f7xx_hal_dac_ex.c:316:6:DAC_DMAConvCpltCh2 24 static
stm32f7xx_hal_dac_ex.c:335:6:DAC_DMAHalfConvCpltCh2 24 static
stm32f7xx_hal_dac_ex.c:352:6:DAC_DMAErrorCh2 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,15 +0,0 @@
stm32f7xx_hal_dma.c:172:19:HAL_DMA_Init 32 static
stm32f7xx_hal_dma.c:311:19:HAL_DMA_DeInit 24 static
stm32f7xx_hal_dma.c:409:19:HAL_DMA_Start 32 static
stm32f7xx_hal_dma.c:453:19:HAL_DMA_Start_IT 32 static
stm32f7xx_hal_dma.c:516:19:HAL_DMA_Abort 24 static
stm32f7xx_hal_dma.c:583:19:HAL_DMA_Abort_IT 16 static
stm32f7xx_hal_dma.c:613:19:HAL_DMA_PollForTransfer 48 static
stm32f7xx_hal_dma.c:749:6:HAL_DMA_IRQHandler 32 static
stm32f7xx_hal_dma.c:970:19:HAL_DMA_RegisterCallback 32 static
stm32f7xx_hal_dma.c:1030:19:HAL_DMA_UnRegisterCallback 24 static
stm32f7xx_hal_dma.c:1115:22:HAL_DMA_GetState 16 static
stm32f7xx_hal_dma.c:1126:10:HAL_DMA_GetError 16 static
stm32f7xx_hal_dma.c:1152:13:DMA_SetConfig 24 static
stm32f7xx_hal_dma.c:1186:17:DMA_CalcBaseAndBitshift 24 static
stm32f7xx_hal_dma.c:1214:26:DMA_CheckFifoParam 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma2d.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma2d.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma2d.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,30 +0,0 @@
stm32f7xx_hal_dma2d.c:237:19:HAL_DMA2D_Init 16 static
stm32f7xx_hal_dma2d.c:313:19:HAL_DMA2D_DeInit 16 static
stm32f7xx_hal_dma2d.c:403:13:HAL_DMA2D_MspInit 16 static
stm32f7xx_hal_dma2d.c:419:13:HAL_DMA2D_MspDeInit 16 static
stm32f7xx_hal_dma2d.c:673:19:HAL_DMA2D_Start 32 static
stm32f7xx_hal_dma2d.c:707:19:HAL_DMA2D_Start_IT 32 static
stm32f7xx_hal_dma2d.c:742:19:HAL_DMA2D_BlendingStart 32 static
stm32f7xx_hal_dma2d.c:777:19:HAL_DMA2D_BlendingStart_IT 32 static
stm32f7xx_hal_dma2d.c:810:19:HAL_DMA2D_Abort 24 static
stm32f7xx_hal_dma2d.c:859:19:HAL_DMA2D_Suspend 24 static
stm32f7xx_hal_dma2d.c:908:19:HAL_DMA2D_Resume 16 static
stm32f7xx_hal_dma2d.c:936:19:HAL_DMA2D_EnableCLUT 16 static
stm32f7xx_hal_dma2d.c:974:19:HAL_DMA2D_CLUTLoad 24 static
stm32f7xx_hal_dma2d.c:1028:19:HAL_DMA2D_CLUTLoad_IT 24 static
stm32f7xx_hal_dma2d.c:1086:19:HAL_DMA2D_CLUTLoading_Abort 24 static
stm32f7xx_hal_dma2d.c:1143:19:HAL_DMA2D_CLUTLoading_Suspend 32 static
stm32f7xx_hal_dma2d.c:1204:19:HAL_DMA2D_CLUTLoading_Resume 16 static
stm32f7xx_hal_dma2d.c:1247:19:HAL_DMA2D_PollForTransfer 32 static
stm32f7xx_hal_dma2d.c:1375:6:HAL_DMA2D_IRQHandler 24 static
stm32f7xx_hal_dma2d.c:1545:13:HAL_DMA2D_LineEventCallback 16 static
stm32f7xx_hal_dma2d.c:1561:13:HAL_DMA2D_CLUTLoadingCpltCallback 16 static
stm32f7xx_hal_dma2d.c:1604:19:HAL_DMA2D_ConfigLayer 32 static
stm32f7xx_hal_dma2d.c:1705:19:HAL_DMA2D_ConfigCLUT 24 static
stm32f7xx_hal_dma2d.c:1759:19:HAL_DMA2D_ProgramLineEvent 16 static
stm32f7xx_hal_dma2d.c:1797:19:HAL_DMA2D_EnableDeadTime 16 static
stm32f7xx_hal_dma2d.c:1820:19:HAL_DMA2D_DisableDeadTime 16 static
stm32f7xx_hal_dma2d.c:1846:19:HAL_DMA2D_ConfigDeadTime 16 static
stm32f7xx_hal_dma2d.c:1891:24:HAL_DMA2D_GetState 16 static
stm32f7xx_hal_dma2d.c:1902:10:HAL_DMA2D_GetError 16 static
stm32f7xx_hal_dma2d.c:1930:13:DMA2D_SetConfig 48 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dma_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,4 +0,0 @@
stm32f7xx_hal_dma_ex.c:103:19:HAL_DMAEx_MultiBufferStart 32 static
stm32f7xx_hal_dma_ex.c:157:19:HAL_DMAEx_MultiBufferStart_IT 32 static
stm32f7xx_hal_dma_ex.c:235:19:HAL_DMAEx_ChangeMemory 24 static
stm32f7xx_hal_dma_ex.c:272:13:DMA_MultiBufferSetConfig 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dsi.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dsi.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_dsi.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_eth.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_eth.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_eth.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_exti.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,9 +0,0 @@
stm32f7xx_hal_exti.c:143:19:HAL_EXTI_SetConfigLine 32 static
stm32f7xx_hal_exti.c:238:19:HAL_EXTI_GetConfigLine 32 static
stm32f7xx_hal_exti.c:327:19:HAL_EXTI_ClearConfigLine 32 static
stm32f7xx_hal_exti.c:380:19:HAL_EXTI_RegisterCallback 32 static
stm32f7xx_hal_exti.c:405:19:HAL_EXTI_GetHandle 16 static
stm32f7xx_hal_exti.c:445:6:HAL_EXTI_IRQHandler 24 static
stm32f7xx_hal_exti.c:477:10:HAL_EXTI_GetPending 32 static
stm32f7xx_hal_exti.c:506:6:HAL_EXTI_ClearPending 24 static
stm32f7xx_hal_exti.c:527:6:HAL_EXTI_GenerateSWI 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,17 +0,0 @@
stm32f7xx_hal_flash.c:164:19:HAL_FLASH_Program 32 static
stm32f7xx_hal_flash.c:233:19:HAL_FLASH_Program_IT 32 static
stm32f7xx_hal_flash.c:295:6:HAL_FLASH_IRQHandler 16 static
stm32f7xx_hal_flash.c:430:13:HAL_FLASH_EndOfOperationCallback 16 static
stm32f7xx_hal_flash.c:448:13:HAL_FLASH_OperationErrorCallback 16 static
stm32f7xx_hal_flash.c:480:19:HAL_FLASH_Unlock 16 static
stm32f7xx_hal_flash.c:504:19:HAL_FLASH_Lock 4 static
stm32f7xx_hal_flash.c:516:19:HAL_FLASH_OB_Unlock 4 static
stm32f7xx_hal_flash.c:536:19:HAL_FLASH_OB_Lock 4 static
stm32f7xx_hal_flash.c:548:19:HAL_FLASH_OB_Launch 8 static
stm32f7xx_hal_flash.c:584:10:HAL_FLASH_GetError 4 static
stm32f7xx_hal_flash.c:598:19:FLASH_WaitForLastOperation 24 static
stm32f7xx_hal_flash.c:653:13:FLASH_Program_DoubleWord 24 static,ignoring_inline_asm
stm32f7xx_hal_flash.c:685:13:FLASH_Program_Word 16 static,ignoring_inline_asm
stm32f7xx_hal_flash.c:714:13:FLASH_Program_HalfWord 16 static,ignoring_inline_asm
stm32f7xx_hal_flash.c:744:13:FLASH_Program_Byte 16 static,ignoring_inline_asm
stm32f7xx_hal_flash.c:765:13:FLASH_SetErrorCode 4 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_flash_ex.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,17 +0,0 @@
stm32f7xx_hal_flash_ex.c:158:19:HAL_FLASHEx_Erase 24 static
stm32f7xx_hal_flash_ex.c:231:19:HAL_FLASHEx_Erase_IT 24 static
stm32f7xx_hal_flash_ex.c:287:19:HAL_FLASHEx_OBProgram 40 static
stm32f7xx_hal_flash_ex.c:386:6:HAL_FLASHEx_OBGetConfig 16 static
stm32f7xx_hal_flash_ex.c:641:13:FLASH_MassErase 16 static,ignoring_inline_asm
stm32f7xx_hal_flash_ex.c:672:6:FLASH_Erase_Sector 24 static,ignoring_inline_asm
stm32f7xx_hal_flash_ex.c:713:17:FLASH_OB_GetWRP 4 static
stm32f7xx_hal_flash_ex.c:747:26:FLASH_OB_UserConfig 40 static
stm32f7xx_hal_flash_ex.c:785:17:FLASH_OB_GetUser 4 static
stm32f7xx_hal_flash_ex.c:808:26:FLASH_OB_EnableWRP 24 static
stm32f7xx_hal_flash_ex.c:844:26:FLASH_OB_DisableWRP 24 static
stm32f7xx_hal_flash_ex.c:875:26:FLASH_OB_RDP_LevelConfig 24 static
stm32f7xx_hal_flash_ex.c:903:26:FLASH_OB_BOR_LevelConfig 16 static
stm32f7xx_hal_flash_ex.c:934:26:FLASH_OB_BootAddressConfig 24 static
stm32f7xx_hal_flash_ex.c:967:16:FLASH_OB_GetRDP 16 static
stm32f7xx_hal_flash_ex.c:995:17:FLASH_OB_GetBOR 4 static
stm32f7xx_hal_flash_ex.c:1018:17:FLASH_OB_GetBootAddress 24 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_gpio.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,8 +0,0 @@
stm32f7xx_hal_gpio.c:169:6:HAL_GPIO_Init 40 static
stm32f7xx_hal_gpio.c:294:6:HAL_GPIO_DeInit 32 static
stm32f7xx_hal_gpio.c:373:15:HAL_GPIO_ReadPin 24 static
stm32f7xx_hal_gpio.c:407:6:HAL_GPIO_WritePin 16 static
stm32f7xx_hal_gpio.c:429:6:HAL_GPIO_TogglePin 16 static
stm32f7xx_hal_gpio.c:455:19:HAL_GPIO_LockPin 24 static
stm32f7xx_hal_gpio.c:489:6:HAL_GPIO_EXTI_IRQHandler 16 static
stm32f7xx_hal_gpio.c:504:13:HAL_GPIO_EXTI_Callback 16 static

@ -39,14 +39,10 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_pwr_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal.h:
@ -126,10 +122,6 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rng.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_rtc_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_spi_ex.h:
@ -137,7 +129,3 @@ Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_i2c.o: \
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_tim_ex.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart.h:
../Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_uart_ex.h:

@ -1,78 +0,0 @@
stm32f7xx_hal_i2c.c:469:19:HAL_I2C_Init 16 static
stm32f7xx_hal_i2c.c:578:19:HAL_I2C_DeInit 16 static
stm32f7xx_hal_i2c.c:624:13:HAL_I2C_MspInit 16 static
stm32f7xx_hal_i2c.c:640:13:HAL_I2C_MspDeInit 16 static
stm32f7xx_hal_i2c.c:1060:19:HAL_I2C_Master_Transmit 40 static
stm32f7xx_hal_i2c.c:1174:19:HAL_I2C_Master_Receive 40 static
stm32f7xx_hal_i2c.c:1287:19:HAL_I2C_Slave_Transmit 40 static
stm32f7xx_hal_i2c.c:1424:19:HAL_I2C_Slave_Receive 40 static
stm32f7xx_hal_i2c.c:1550:19:HAL_I2C_Master_Transmit_IT 40 static
stm32f7xx_hal_i2c.c:1619:19:HAL_I2C_Master_Receive_IT 40 static
stm32f7xx_hal_i2c.c:1686:19:HAL_I2C_Slave_Transmit_IT 24 static
stm32f7xx_hal_i2c.c:1735:19:HAL_I2C_Slave_Receive_IT 24 static
stm32f7xx_hal_i2c.c:1786:19:HAL_I2C_Master_Transmit_DMA 40 static
stm32f7xx_hal_i2c.c:1929:19:HAL_I2C_Master_Receive_DMA 40 static
stm32f7xx_hal_i2c.c:2070:19:HAL_I2C_Slave_Transmit_DMA 32 static
stm32f7xx_hal_i2c.c:2173:19:HAL_I2C_Slave_Receive_DMA 32 static
stm32f7xx_hal_i2c.c:2280:19:HAL_I2C_Mem_Write 40 static
stm32f7xx_hal_i2c.c:2415:19:HAL_I2C_Mem_Read 40 static
stm32f7xx_hal_i2c.c:2548:19:HAL_I2C_Mem_Write_IT 40 static
stm32f7xx_hal_i2c.c:2639:19:HAL_I2C_Mem_Read_IT 40 static
stm32f7xx_hal_i2c.c:2729:19:HAL_I2C_Mem_Write_DMA 48 static
stm32f7xx_hal_i2c.c:2873:19:HAL_I2C_Mem_Read_DMA 48 static
stm32f7xx_hal_i2c.c:3014:19:HAL_I2C_IsDeviceReady 48 static
stm32f7xx_hal_i2c.c:3156:19:HAL_I2C_Master_Seq_Transmit_IT 40 static
stm32f7xx_hal_i2c.c:3240:19:HAL_I2C_Master_Seq_Transmit_DMA 48 static
stm32f7xx_hal_i2c.c:3402:19:HAL_I2C_Master_Seq_Receive_IT 40 static
stm32f7xx_hal_i2c.c:3486:19:HAL_I2C_Master_Seq_Receive_DMA 48 static
stm32f7xx_hal_i2c.c:3646:19:HAL_I2C_Slave_Seq_Transmit_IT 24 static
stm32f7xx_hal_i2c.c:3741:19:HAL_I2C_Slave_Seq_Transmit_DMA 32 static
stm32f7xx_hal_i2c.c:3920:19:HAL_I2C_Slave_Seq_Receive_IT 24 static
stm32f7xx_hal_i2c.c:4015:19:HAL_I2C_Slave_Seq_Receive_DMA 32 static
stm32f7xx_hal_i2c.c:4190:19:HAL_I2C_EnableListen_IT 16 static
stm32f7xx_hal_i2c.c:4214:19:HAL_I2C_DisableListen_IT 24 static
stm32f7xx_hal_i2c.c:4247:19:HAL_I2C_Master_Abort_IT 24 static
stm32f7xx_hal_i2c.c:4297:6:HAL_I2C_EV_IRQHandler 24 static
stm32f7xx_hal_i2c.c:4316:6:HAL_I2C_ER_IRQHandler 32 static
stm32f7xx_hal_i2c.c:4365:13:HAL_I2C_MasterTxCpltCallback 16 static
stm32f7xx_hal_i2c.c:4381:13:HAL_I2C_MasterRxCpltCallback 16 static
stm32f7xx_hal_i2c.c:4396:13:HAL_I2C_SlaveTxCpltCallback 16 static
stm32f7xx_hal_i2c.c:4412:13:HAL_I2C_SlaveRxCpltCallback 16 static
stm32f7xx_hal_i2c.c:4430:13:HAL_I2C_AddrCallback 16 static
stm32f7xx_hal_i2c.c:4448:13:HAL_I2C_ListenCpltCallback 16 static
stm32f7xx_hal_i2c.c:4464:13:HAL_I2C_MemTxCpltCallback 16 static
stm32f7xx_hal_i2c.c:4480:13:HAL_I2C_MemRxCpltCallback 16 static
stm32f7xx_hal_i2c.c:4496:13:HAL_I2C_ErrorCallback 16 static
stm32f7xx_hal_i2c.c:4512:13:HAL_I2C_AbortCpltCallback 16 static
stm32f7xx_hal_i2c.c:4547:22:HAL_I2C_GetState 16 static
stm32f7xx_hal_i2c.c:4559:21:HAL_I2C_GetMode 16 static
stm32f7xx_hal_i2c.c:4570:10:HAL_I2C_GetError 16 static
stm32f7xx_hal_i2c.c:4595:26:I2C_Master_ISR_IT 40 static
stm32f7xx_hal_i2c.c:4732:26:I2C_Slave_ISR_IT 32 static
stm32f7xx_hal_i2c.c:4865:26:I2C_Master_ISR_DMA 40 static
stm32f7xx_hal_i2c.c:5000:26:I2C_Slave_ISR_DMA 32 static
stm32f7xx_hal_i2c.c:5122:26:I2C_RequestMemoryWrite 32 static
stm32f7xx_hal_i2c.c:5175:26:I2C_RequestMemoryRead 32 static
stm32f7xx_hal_i2c.c:5222:13:I2C_ITAddrCplt 24 static
stm32f7xx_hal_i2c.c:5317:13:I2C_ITMasterSeqCplt 16 static
stm32f7xx_hal_i2c.c:5370:13:I2C_ITSlaveSeqCplt 16 static
stm32f7xx_hal_i2c.c:5426:13:I2C_ITMasterCplt 24 static
stm32f7xx_hal_i2c.c:5545:13:I2C_ITSlaveCplt 24 static
stm32f7xx_hal_i2c.c:5682:13:I2C_ITListenCplt 16 static
stm32f7xx_hal_i2c.c:5733:13:I2C_ITError 24 static
stm32f7xx_hal_i2c.c:5851:13:I2C_Flush_TXDR 16 static
stm32f7xx_hal_i2c.c:5872:13:I2C_DMAMasterTransmitCplt 24 static
stm32f7xx_hal_i2c.c:5920:13:I2C_DMASlaveTransmitCplt 24 static
stm32f7xx_hal_i2c.c:5947:13:I2C_DMAMasterReceiveCplt 24 static
stm32f7xx_hal_i2c.c:5995:13:I2C_DMASlaveReceiveCplt 24 static
stm32f7xx_hal_i2c.c:6022:13:I2C_DMAError 24 static
stm32f7xx_hal_i2c.c:6060:13:I2C_DMAAbort 24 static
stm32f7xx_hal_i2c.c:6101:26:I2C_WaitOnFlagUntilTimeout 24 static
stm32f7xx_hal_i2c.c:6131:26:I2C_WaitOnTXISFlagUntilTimeout 24 static
stm32f7xx_hal_i2c.c:6168:26:I2C_WaitOnSTOPFlagUntilTimeout 24 static
stm32f7xx_hal_i2c.c:6202:26:I2C_WaitOnRXNEFlagUntilTimeout 24 static
stm32f7xx_hal_i2c.c:6265:26:I2C_IsAcknowledgeFailed 24 static
stm32f7xx_hal_i2c.c:6333:13:I2C_TransferConfig 24 static
stm32f7xx_hal_i2c.c:6352:13:I2C_Enable_IRQ 24 static
stm32f7xx_hal_i2c.c:6423:13:I2C_Disable_IRQ 24 static
stm32f7xx_hal_i2c.c:6486:13:I2C_ConvertOtherXferOptions 16 static

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save