Compare commits

..

No commits in common. "5c82782300979c810c4f0be50bb92a30ccc33928" and "84ddcb18279f3ab602ea75b2ce780bda46373c4e" have entirely different histories.

96 changed files with 23884 additions and 4294 deletions

File diff suppressed because one or more lines are too long

View File

@ -64,7 +64,7 @@
/*#define HAL_SMARTCARD_MODULE_ENABLED */
/*#define HAL_SPI_MODULE_ENABLED */
/*#define HAL_SRAM_MODULE_ENABLED */
/*#define HAL_TIM_MODULE_ENABLED */
#define HAL_TIM_MODULE_ENABLED
#define HAL_UART_MODULE_ENABLED
/*#define HAL_USART_MODULE_ENABLED */
/*#define HAL_WWDG_MODULE_ENABLED */

View File

@ -56,7 +56,10 @@ void DebugMon_Handler(void);
void PendSV_Handler(void);
void SysTick_Handler(void);
void DMA1_Channel5_IRQHandler(void);
void TIM3_IRQHandler(void);
void USART1_IRQHandler(void);
void USART2_IRQHandler(void);
void USART3_IRQHandler(void);
/* USER CODE BEGIN EFP */
/* USER CODE END EFP */

View File

@ -0,0 +1,52 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file tim.h
* @brief This file contains all the function prototypes for
* the tim.c file
******************************************************************************
* @attention
*
* Copyright (c) 2025 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* USER CODE END Header */
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __TIM_H__
#define __TIM_H__
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "main.h"
/* USER CODE BEGIN Includes */
/* USER CODE END Includes */
extern TIM_HandleTypeDef htim3;
/* USER CODE BEGIN Private defines */
/* USER CODE END Private defines */
void MX_TIM3_Init(void);
/* USER CODE BEGIN Prototypes */
/* USER CODE END Prototypes */
#ifdef __cplusplus
}
#endif
#endif /* __TIM_H__ */

View File

@ -44,7 +44,7 @@ void MX_DMA_Init(void)
/* DMA interrupt init */
/* DMA1_Channel5_IRQn interrupt configuration */
HAL_NVIC_SetPriority(DMA1_Channel5_IRQn, 1, 0);
HAL_NVIC_SetPriority(DMA1_Channel5_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(DMA1_Channel5_IRQn);
}

File diff suppressed because it is too large Load Diff

View File

@ -55,8 +55,11 @@
/* USER CODE END 0 */
/* External variables --------------------------------------------------------*/
extern TIM_HandleTypeDef htim3;
extern DMA_HandleTypeDef hdma_usart1_rx;
extern UART_HandleTypeDef huart1;
extern UART_HandleTypeDef huart2;
extern UART_HandleTypeDef huart3;
/* USER CODE BEGIN EV */
/* USER CODE END EV */
@ -214,6 +217,20 @@ void DMA1_Channel5_IRQHandler(void)
/* USER CODE END DMA1_Channel5_IRQn 1 */
}
/**
* @brief This function handles TIM3 global interrupt.
*/
void TIM3_IRQHandler(void)
{
/* USER CODE BEGIN TIM3_IRQn 0 */
/* USER CODE END TIM3_IRQn 0 */
HAL_TIM_IRQHandler(&htim3);
/* USER CODE BEGIN TIM3_IRQn 1 */
/* USER CODE END TIM3_IRQn 1 */
}
/**
* @brief This function handles USART1 global interrupt.
*/
@ -228,6 +245,34 @@ void USART1_IRQHandler(void)
/* USER CODE END USART1_IRQn 1 */
}
/**
* @brief This function handles USART2 global interrupt.
*/
void USART2_IRQHandler(void)
{
/* USER CODE BEGIN USART2_IRQn 0 */
/* USER CODE END USART2_IRQn 0 */
HAL_UART_IRQHandler(&huart2);
/* USER CODE BEGIN USART2_IRQn 1 */
/* USER CODE END USART2_IRQn 1 */
}
/**
* @brief This function handles USART3 global interrupt.
*/
void USART3_IRQHandler(void)
{
/* USER CODE BEGIN USART3_IRQn 0 */
/* USER CODE END USART3_IRQn 0 */
HAL_UART_IRQHandler(&huart3);
/* USER CODE BEGIN USART3_IRQn 1 */
/* USER CODE END USART3_IRQn 1 */
}
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */

View File

@ -0,0 +1,111 @@
/* USER CODE BEGIN Header */
/**
******************************************************************************
* @file tim.c
* @brief This file provides code for the configuration
* of the TIM instances.
******************************************************************************
* @attention
*
* Copyright (c) 2025 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "tim.h"
/* USER CODE BEGIN 0 */
/* USER CODE END 0 */
TIM_HandleTypeDef htim3;
/* TIM3 init function */
void MX_TIM3_Init(void)
{
/* USER CODE BEGIN TIM3_Init 0 */
/* USER CODE END TIM3_Init 0 */
TIM_ClockConfigTypeDef sClockSourceConfig = {0};
TIM_MasterConfigTypeDef sMasterConfig = {0};
/* USER CODE BEGIN TIM3_Init 1 */
/* USER CODE END TIM3_Init 1 */
htim3.Instance = TIM3;
htim3.Init.Prescaler = 7199;
htim3.Init.CounterMode = TIM_COUNTERMODE_UP;
htim3.Init.Period = 4999;
htim3.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
htim3.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_ENABLE;
if (HAL_TIM_Base_Init(&htim3) != HAL_OK)
{
Error_Handler();
}
sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL;
if (HAL_TIM_ConfigClockSource(&htim3, &sClockSourceConfig) != HAL_OK)
{
Error_Handler();
}
sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET;
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE;
if (HAL_TIMEx_MasterConfigSynchronization(&htim3, &sMasterConfig) != HAL_OK)
{
Error_Handler();
}
/* USER CODE BEGIN TIM3_Init 2 */
/* USER CODE END TIM3_Init 2 */
}
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle)
{
if(tim_baseHandle->Instance==TIM3)
{
/* USER CODE BEGIN TIM3_MspInit 0 */
/* USER CODE END TIM3_MspInit 0 */
/* TIM3 clock enable */
__HAL_RCC_TIM3_CLK_ENABLE();
/* TIM3 interrupt Init */
HAL_NVIC_SetPriority(TIM3_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(TIM3_IRQn);
/* USER CODE BEGIN TIM3_MspInit 1 */
/* USER CODE END TIM3_MspInit 1 */
}
}
void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle)
{
if(tim_baseHandle->Instance==TIM3)
{
/* USER CODE BEGIN TIM3_MspDeInit 0 */
/* USER CODE END TIM3_MspDeInit 0 */
/* Peripheral clock disable */
__HAL_RCC_TIM3_CLK_DISABLE();
/* TIM3 interrupt Deinit */
HAL_NVIC_DisableIRQ(TIM3_IRQn);
/* USER CODE BEGIN TIM3_MspDeInit 1 */
/* USER CODE END TIM3_MspDeInit 1 */
}
}
/* USER CODE BEGIN 1 */
/* USER CODE END 1 */

View File

@ -152,7 +152,7 @@ void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle)
hdma_usart1_rx.Init.MemInc = DMA_MINC_ENABLE;
hdma_usart1_rx.Init.PeriphDataAlignment = DMA_PDATAALIGN_BYTE;
hdma_usart1_rx.Init.MemDataAlignment = DMA_MDATAALIGN_BYTE;
hdma_usart1_rx.Init.Mode = DMA_CIRCULAR;
hdma_usart1_rx.Init.Mode = DMA_NORMAL;
hdma_usart1_rx.Init.Priority = DMA_PRIORITY_VERY_HIGH;
if (HAL_DMA_Init(&hdma_usart1_rx) != HAL_OK)
{
@ -191,6 +191,9 @@ void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle)
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
/* USART2 interrupt Init */
HAL_NVIC_SetPriority(USART2_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(USART2_IRQn);
/* USER CODE BEGIN USART2_MspInit 1 */
/* USER CODE END USART2_MspInit 1 */
@ -218,6 +221,9 @@ void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle)
GPIO_InitStruct.Pull = GPIO_NOPULL;
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
/* USART3 interrupt Init */
HAL_NVIC_SetPriority(USART3_IRQn, 0, 0);
HAL_NVIC_EnableIRQ(USART3_IRQn);
/* USER CODE BEGIN USART3_MspInit 1 */
/* USER CODE END USART3_MspInit 1 */
@ -264,6 +270,8 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle)
*/
HAL_GPIO_DeInit(GPIOA, GPIO_PIN_2|GPIO_PIN_3);
/* USART2 interrupt Deinit */
HAL_NVIC_DisableIRQ(USART2_IRQn);
/* USER CODE BEGIN USART2_MspDeInit 1 */
/* USER CODE END USART2_MspDeInit 1 */
@ -282,6 +290,8 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle)
*/
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_10|GPIO_PIN_11);
/* USART3 interrupt Deinit */
HAL_NVIC_DisableIRQ(USART3_IRQn);
/* USER CODE BEGIN USART3_MspDeInit 1 */
/* USER CODE END USART3_MspDeInit 1 */

View File

@ -0,0 +1,261 @@
/**
******************************************************************************
* @file stm32f1xx_hal_tim_ex.h
* @author MCD Application Team
* @brief Header file of TIM HAL Extended module.
******************************************************************************
* @attention
*
* Copyright (c) 2016 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef STM32F1xx_HAL_TIM_EX_H
#define STM32F1xx_HAL_TIM_EX_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#include "stm32f1xx_hal_def.h"
/** @addtogroup STM32F1xx_HAL_Driver
* @{
*/
/** @addtogroup TIMEx
* @{
*/
/* Exported types ------------------------------------------------------------*/
/** @defgroup TIMEx_Exported_Types TIM Extended Exported Types
* @{
*/
/**
* @brief TIM Hall sensor Configuration Structure definition
*/
typedef struct
{
uint32_t IC1Polarity; /*!< Specifies the active edge of the input signal.
This parameter can be a value of @ref TIM_Input_Capture_Polarity */
uint32_t IC1Prescaler; /*!< Specifies the Input Capture Prescaler.
This parameter can be a value of @ref TIM_Input_Capture_Prescaler */
uint32_t IC1Filter; /*!< Specifies the input capture filter.
This parameter can be a number between Min_Data = 0x0 and Max_Data = 0xF */
uint32_t Commutation_Delay; /*!< Specifies the pulse value to be loaded into the Capture Compare Register.
This parameter can be a number between Min_Data = 0x0000 and Max_Data = 0xFFFF */
} TIM_HallSensor_InitTypeDef;
/**
* @}
*/
/* End of exported types -----------------------------------------------------*/
/* Exported constants --------------------------------------------------------*/
/** @defgroup TIMEx_Exported_Constants TIM Extended Exported Constants
* @{
*/
/** @defgroup TIMEx_Remap TIM Extended Remapping
* @{
*/
/**
* @}
*/
/**
* @}
*/
/* End of exported constants -------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
/** @defgroup TIMEx_Exported_Macros TIM Extended Exported Macros
* @{
*/
/**
* @}
*/
/* End of exported macro -----------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/** @defgroup TIMEx_Private_Macros TIM Extended Private Macros
* @{
*/
/**
* @}
*/
/* End of private macro ------------------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @addtogroup TIMEx_Exported_Functions TIM Extended Exported Functions
* @{
*/
/** @addtogroup TIMEx_Exported_Functions_Group1 Extended Timer Hall Sensor functions
* @brief Timer Hall Sensor functions
* @{
*/
/* Timer Hall Sensor functions **********************************************/
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Init(TIM_HandleTypeDef *htim, const TIM_HallSensor_InitTypeDef *sConfig);
HAL_StatusTypeDef HAL_TIMEx_HallSensor_DeInit(TIM_HandleTypeDef *htim);
void HAL_TIMEx_HallSensor_MspInit(TIM_HandleTypeDef *htim);
void HAL_TIMEx_HallSensor_MspDeInit(TIM_HandleTypeDef *htim);
/* Blocking mode: Polling */
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start(TIM_HandleTypeDef *htim);
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop(TIM_HandleTypeDef *htim);
/* Non-Blocking mode: Interrupt */
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_IT(TIM_HandleTypeDef *htim);
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_IT(TIM_HandleTypeDef *htim);
/* Non-Blocking mode: DMA */
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Start_DMA(TIM_HandleTypeDef *htim, uint32_t *pData, uint16_t Length);
HAL_StatusTypeDef HAL_TIMEx_HallSensor_Stop_DMA(TIM_HandleTypeDef *htim);
/**
* @}
*/
/** @addtogroup TIMEx_Exported_Functions_Group2 Extended Timer Complementary Output Compare functions
* @brief Timer Complementary Output Compare functions
* @{
*/
/* Timer Complementary Output Compare functions *****************************/
/* Blocking mode: Polling */
HAL_StatusTypeDef HAL_TIMEx_OCN_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
HAL_StatusTypeDef HAL_TIMEx_OCN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
/* Non-Blocking mode: Interrupt */
HAL_StatusTypeDef HAL_TIMEx_OCN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
/* Non-Blocking mode: DMA */
HAL_StatusTypeDef HAL_TIMEx_OCN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, const uint32_t *pData,
uint16_t Length);
HAL_StatusTypeDef HAL_TIMEx_OCN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
/**
* @}
*/
/** @addtogroup TIMEx_Exported_Functions_Group3 Extended Timer Complementary PWM functions
* @brief Timer Complementary PWM functions
* @{
*/
/* Timer Complementary PWM functions ****************************************/
/* Blocking mode: Polling */
HAL_StatusTypeDef HAL_TIMEx_PWMN_Start(TIM_HandleTypeDef *htim, uint32_t Channel);
HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop(TIM_HandleTypeDef *htim, uint32_t Channel);
/* Non-Blocking mode: Interrupt */
HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t Channel);
/* Non-Blocking mode: DMA */
HAL_StatusTypeDef HAL_TIMEx_PWMN_Start_DMA(TIM_HandleTypeDef *htim, uint32_t Channel, const uint32_t *pData,
uint16_t Length);
HAL_StatusTypeDef HAL_TIMEx_PWMN_Stop_DMA(TIM_HandleTypeDef *htim, uint32_t Channel);
/**
* @}
*/
/** @addtogroup TIMEx_Exported_Functions_Group4 Extended Timer Complementary One Pulse functions
* @brief Timer Complementary One Pulse functions
* @{
*/
/* Timer Complementary One Pulse functions **********************************/
/* Blocking mode: Polling */
HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
/* Non-Blocking mode: Interrupt */
HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Start_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
HAL_StatusTypeDef HAL_TIMEx_OnePulseN_Stop_IT(TIM_HandleTypeDef *htim, uint32_t OutputChannel);
/**
* @}
*/
/** @addtogroup TIMEx_Exported_Functions_Group5 Extended Peripheral Control functions
* @brief Peripheral Control functions
* @{
*/
/* Extended Control functions ************************************************/
HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent(TIM_HandleTypeDef *htim, uint32_t InputTrigger,
uint32_t CommutationSource);
HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_IT(TIM_HandleTypeDef *htim, uint32_t InputTrigger,
uint32_t CommutationSource);
HAL_StatusTypeDef HAL_TIMEx_ConfigCommutEvent_DMA(TIM_HandleTypeDef *htim, uint32_t InputTrigger,
uint32_t CommutationSource);
HAL_StatusTypeDef HAL_TIMEx_MasterConfigSynchronization(TIM_HandleTypeDef *htim,
const TIM_MasterConfigTypeDef *sMasterConfig);
HAL_StatusTypeDef HAL_TIMEx_ConfigBreakDeadTime(TIM_HandleTypeDef *htim,
const TIM_BreakDeadTimeConfigTypeDef *sBreakDeadTimeConfig);
HAL_StatusTypeDef HAL_TIMEx_RemapConfig(TIM_HandleTypeDef *htim, uint32_t Remap);
/**
* @}
*/
/** @addtogroup TIMEx_Exported_Functions_Group6 Extended Callbacks functions
* @brief Extended Callbacks functions
* @{
*/
/* Extended Callback **********************************************************/
void HAL_TIMEx_CommutCallback(TIM_HandleTypeDef *htim);
void HAL_TIMEx_CommutHalfCpltCallback(TIM_HandleTypeDef *htim);
void HAL_TIMEx_BreakCallback(TIM_HandleTypeDef *htim);
/**
* @}
*/
/** @addtogroup TIMEx_Exported_Functions_Group7 Extended Peripheral State functions
* @brief Extended Peripheral State functions
* @{
*/
/* Extended Peripheral State functions ***************************************/
HAL_TIM_StateTypeDef HAL_TIMEx_HallSensor_GetState(const TIM_HandleTypeDef *htim);
HAL_TIM_ChannelStateTypeDef HAL_TIMEx_GetChannelNState(const TIM_HandleTypeDef *htim, uint32_t ChannelN);
/**
* @}
*/
/**
* @}
*/
/* End of exported functions -------------------------------------------------*/
/* Private functions----------------------------------------------------------*/
/** @addtogroup TIMEx_Private_Functions TIM Extended Private Functions
* @{
*/
void TIMEx_DMACommutationCplt(DMA_HandleTypeDef *hdma);
void TIMEx_DMACommutationHalfCplt(DMA_HandleTypeDef *hdma);
/**
* @}
*/
/* End of private functions --------------------------------------------------*/
/**
* @}
*/
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* STM32F1xx_HAL_TIM_EX_H */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -117,26 +117,6 @@
<pMon>STLink\ST-LINKIII-KEIL_SWO.dll</pMon>
</DebugOpt>
<TargetDriverDllRegistry>
<SetRegEntry>
<Number>0</Number>
<Key>ARMRTXEVENTFLAGS</Key>
<Name>-L70 -Z18 -C0 -M0 -T1</Name>
</SetRegEntry>
<SetRegEntry>
<Number>0</Number>
<Key>DLGTARM</Key>
<Name>(1010=-1,-1,-1,-1,0)(1007=-1,-1,-1,-1,0)(1008=-1,-1,-1,-1,0)(1009=-1,-1,-1,-1,0)</Name>
</SetRegEntry>
<SetRegEntry>
<Number>0</Number>
<Key>ARMDBGFLAGS</Key>
<Name></Name>
</SetRegEntry>
<SetRegEntry>
<Number>0</Number>
<Key>DLGUARM</Key>
<Name>(105=-1,-1,-1,-1,0)</Name>
</SetRegEntry>
<SetRegEntry>
<Number>0</Number>
<Key>UL2CM3</Key>
@ -145,10 +125,27 @@
<SetRegEntry>
<Number>0</Number>
<Key>ST-LINKIII-KEIL_SWO</Key>
<Name>-U-O142 -O2254 -SF10000 -C0 -A0 -I0 -HNlocalhost -HP7184 -P1 -N00("ARM CoreSight SW-DP (ARM Core") -D00(1BA01477) -L00(0) -TO131090 -TC10000000 -TT10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128.FLM -FS08000000 -FL010000 -FP0($$Device:STM32F103C8$Flash\STM32F10x_128.FLM) -WA0 -WE0 -WVCE4 -WS2710 -WM0 -WP2 -WK0-R0</Name>
<Name>-U-O142 -O2254 -S0 -C0 -N00("ARM CoreSight SW-DP") -D00(2BA01477) -L00(0) -TO18 -TC10000000 -TP21 -TDS8007 -TDT0 -TDC1F -TIEFFFFFFFF -TIP8 -FO7 -FD20000000 -FC800 -FN1 -FF0STM32F10x_128 -FS08000000 -FL010000 -FP0($$Device:STM32F103C8$Flash\STM32F10x_128.FLM)</Name>
</SetRegEntry>
</TargetDriverDllRegistry>
<Breakpoint/>
<Breakpoint>
<Bp>
<Number>0</Number>
<Type>0</Type>
<LineNumber>163</LineNumber>
<EnabledFlag>1</EnabledFlag>
<Address>0</Address>
<ByteObject>0</ByteObject>
<HtxType>0</HtxType>
<ManyObjects>0</ManyObjects>
<SizeOfObject>0</SizeOfObject>
<BreakByAccess>0</BreakByAccess>
<BreakIfRCount>0</BreakIfRCount>
<Filename>../Core/Src/main.c</Filename>
<ExecCommand></ExecCommand>
<Expression></Expression>
</Bp>
</Breakpoint>
<Tracepoint>
<THDelay>0</THDelay>
</Tracepoint>
@ -193,7 +190,7 @@
<pMultCmdsp></pMultCmdsp>
<DebugDescription>
<Enable>1</Enable>
<EnableFlashSeq>0</EnableFlashSeq>
<EnableFlashSeq>1</EnableFlashSeq>
<EnableLog>0</EnableLog>
<Protocol>2</Protocol>
<DbgClock>10000000</DbgClock>
@ -203,7 +200,7 @@
<Group>
<GroupName>Application/MDK-ARM</GroupName>
<tvExp>0</tvExp>
<tvExp>1</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<cbSel>0</cbSel>
<RteFlg>0</RteFlg>
@ -270,6 +267,18 @@
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Core/Src/tim.c</PathWithFileName>
<FilenameWithoutPath>tim.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>2</GroupNumber>
<FileNumber>6</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Core/Src/usart.c</PathWithFileName>
<FilenameWithoutPath>usart.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
@ -277,7 +286,7 @@
</File>
<File>
<GroupNumber>2</GroupNumber>
<FileNumber>6</FileNumber>
<FileNumber>7</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -289,7 +298,7 @@
</File>
<File>
<GroupNumber>2</GroupNumber>
<FileNumber>7</FileNumber>
<FileNumber>8</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -309,7 +318,7 @@
<RteFlg>0</RteFlg>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>8</FileNumber>
<FileNumber>9</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -321,19 +330,31 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>9</FileNumber>
<FileNumber>10</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c</PathWithFileName>
<FilenameWithoutPath>stm32f1xx_hal_uart.c</FilenameWithoutPath>
<PathWithFileName>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c</PathWithFileName>
<FilenameWithoutPath>stm32f1xx_hal_tim.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>10</FileNumber>
<FileNumber>11</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c</PathWithFileName>
<FilenameWithoutPath>stm32f1xx_hal_tim_ex.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>12</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -345,7 +366,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>11</FileNumber>
<FileNumber>13</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -357,7 +378,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>12</FileNumber>
<FileNumber>14</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -369,7 +390,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>13</FileNumber>
<FileNumber>15</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -381,7 +402,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>14</FileNumber>
<FileNumber>16</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -393,7 +414,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>15</FileNumber>
<FileNumber>17</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -405,7 +426,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>16</FileNumber>
<FileNumber>18</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -417,7 +438,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>17</FileNumber>
<FileNumber>19</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -429,7 +450,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>18</FileNumber>
<FileNumber>20</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -441,7 +462,7 @@
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>19</FileNumber>
<FileNumber>21</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
@ -451,6 +472,18 @@
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
<File>
<GroupNumber>3</GroupNumber>
<FileNumber>22</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<bDave2>0</bDave2>
<PathWithFileName>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c</PathWithFileName>
<FilenameWithoutPath>stm32f1xx_hal_uart.c</FilenameWithoutPath>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
</Group>
<Group>
@ -461,7 +494,7 @@
<RteFlg>0</RteFlg>
<File>
<GroupNumber>4</GroupNumber>
<FileNumber>20</FileNumber>
<FileNumber>23</FileNumber>
<FileType>1</FileType>
<tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>

View File

@ -408,6 +408,113 @@
<FileName>dma.c</FileName>
<FileType>1</FileType>
<FilePath>../Core/Src/dma.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>tim.c</FileName>
<FileType>1</FileType>
<FilePath>../Core/Src/tim.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>usart.c</FileName>
@ -435,9 +542,116 @@
<FilePath>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c</FilePath>
</File>
<File>
<FileName>stm32f1xx_hal_uart.c</FileName>
<FileName>stm32f1xx_hal_tim.c</FileName>
<FileType>1</FileType>
<FilePath>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c</FilePath>
<FilePath>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>stm32f1xx_hal_tim_ex.c</FileName>
<FileType>1</FileType>
<FilePath>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c</FilePath>
<FileOption>
<CommonProperty>
<UseCPPCompiler>2</UseCPPCompiler>
<RVCTCodeConst>0</RVCTCodeConst>
<RVCTZI>0</RVCTZI>
<RVCTOtherData>0</RVCTOtherData>
<ModuleSelection>0</ModuleSelection>
<IncludeInBuild>1</IncludeInBuild>
<AlwaysBuild>2</AlwaysBuild>
<GenerateAssemblyFile>2</GenerateAssemblyFile>
<AssembleAssemblyFile>2</AssembleAssemblyFile>
<PublicsOnly>2</PublicsOnly>
<StopOnExitCode>11</StopOnExitCode>
<CustomArgument></CustomArgument>
<IncludeLibraryModules></IncludeLibraryModules>
<ComprImg>1</ComprImg>
</CommonProperty>
<FileArmAds>
<Cads>
<interw>2</interw>
<Optim>0</Optim>
<oTime>2</oTime>
<SplitLS>2</SplitLS>
<OneElfS>2</OneElfS>
<Strict>2</Strict>
<EnumInt>2</EnumInt>
<PlainCh>2</PlainCh>
<Ropi>2</Ropi>
<Rwpi>2</Rwpi>
<wLevel>0</wLevel>
<uThumb>2</uThumb>
<uSurpInc>2</uSurpInc>
<uC99>2</uC99>
<uGnu>2</uGnu>
<useXO>2</useXO>
<v6Lang>0</v6Lang>
<v6LangP>0</v6LangP>
<vShortEn>2</vShortEn>
<vShortWch>2</vShortWch>
<v6Lto>2</v6Lto>
<v6WtE>2</v6WtE>
<v6Rtti>2</v6Rtti>
<VariousControls>
<MiscControls></MiscControls>
<Define></Define>
<Undefine></Undefine>
<IncludePath></IncludePath>
</VariousControls>
</Cads>
</FileArmAds>
</FileOption>
</File>
<File>
<FileName>stm32f1xx_hal.c</FileName>
@ -489,6 +703,11 @@
<FileType>1</FileType>
<FilePath>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c</FilePath>
</File>
<File>
<FileName>stm32f1xx_hal_uart.c</FileName>
<FileType>1</FileType>
<FilePath>../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_uart.c</FilePath>
</File>
</Files>
</Group>
<Group>

View File

@ -3,46 +3,65 @@
<pre>
<h1>µVision Build Log</h1>
<h2>Tool Versions:</h2>
IDE-Version: ¦ÌVision V5.43.1.0
Copyright (C) 2025 ARM Ltd and ARM Germany GmbH. All rights reserved.
License Information: 23 23, 2323, LIC=X96CK-Z03Q7-63IMB-2TXM6-GA9NR-VVDXS
IDE-Version: ¦ÌVision V5.41.0.0
Copyright (C) 2024 ARM Ltd and ARM Germany GmbH. All rights reserved.
License Information: 123 1543588107@qq.com, 123, LIC=65ISZ-J0KE9-011P1-CAV5H-FN80T-C8A3E
Tool Versions:
Toolchain: MDK-ARM Plus Version: 5.43.0.0
Toolchain Path: C:\keil\ARM\ARMCC\Bin
Toolchain: MDK-ARM Plus Version: 5.41.0.0
Toolchain Path: C:\app\Keil_v5\ARM\ARMCC\Bin
C Compiler: Armcc.exe V5.06 update 7 (build 960)
Assembler: Armasm.exe V5.06 update 7 (build 960)
Linker/Locator: ArmLink.exe V5.06 update 7 (build 960)
Library Manager: ArmAr.exe V5.06 update 7 (build 960)
Hex Converter: FromElf.exe V5.06 update 7 (build 960)
CPU DLL: SARMCM3.DLL V5.43.0.0
CPU DLL: SARMCM3.DLL V5.41.0.0
Dialog DLL: DCM.DLL V1.17.5.0
Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.3.1.0
Dialog DLL: TCM.DLL V1.56.6.0
Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.3.0.0
Dialog DLL: TCM.DLL V1.56.4.0
<h2>Project:</h2>
C:\Users\kkkjt\Desktop\PressureSensorBoard\Software\master\PressureSensorBoardMaster\MDK-ARM\PressureSensorBoardMaster.uvprojx
Project File Date: 12/06/2025
C:\Users\15435\Desktop\PressureSensorBoard\Software\master\PressureSensorBoardMaster\MDK-ARM\PressureSensorBoardMaster.uvprojx
Project File Date: 12/04/2025
<h2>Output:</h2>
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\keil\ARM\ARMCC\Bin'
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\app\Keil_v5\ARM\ARMCC\Bin'
Build target 'PressureSensorBoardMaster'
compiling main.c...
../Core/Src/main.c(717): warning: #1-D: last line of file ends without a newline
#endif /* USE_FULL_ASSERT */
../Core/Src/main.c: 1 warning, 0 errors
linking...
Program Size: Code=7236 RO-data=336 RW-data=36 ZI-data=2476
FromELF: creating hex file...
"PressureSensorBoardMaster\PressureSensorBoardMaster.axf" - 0 Error(s), 1 Warning(s).
../Core/Src/main.c(77): warning: #188-D: enumerated type mixed with another type
CommState_t query_state[SLAVE_COUNT] = {0,0,0};
../Core/Src/main.c(77): warning: #188-D: enumerated type mixed with another type
CommState_t query_state[SLAVE_COUNT] = {0,0,0};
../Core/Src/main.c(77): warning: #188-D: enumerated type mixed with another type
CommState_t query_state[SLAVE_COUNT] = {0,0,0};
../Core/Src/main.c(353): warning: #940-D: missing return statement at end of non-void function "Slave1_Sta_Query"
}
../Core/Src/main.c(372): warning: #940-D: missing return statement at end of non-void function "Slave1_Matrix_Query"
}
../Core/Src/main.c(391): warning: #940-D: missing return statement at end of non-void function "Slave2_Sta_Query"
}
../Core/Src/main.c(409): warning: #940-D: missing return statement at end of non-void function "Slave2_Matrix_Query"
}
../Core/Src/main.c(427): warning: #940-D: missing return statement at end of non-void function "Slave3_Sta_Query"
}
../Core/Src/main.c(446): warning: #940-D: missing return statement at end of non-void function "Slave3_Matrix_Query"
}
../Core/Src/main.c(493): warning: #940-D: missing return statement at end of non-void function "Process_Reply"
}
../Core/Src/main.c(523): warning: #940-D: missing return statement at end of non-void function "RS485_Output"
}
../Core/Src/main.c(552): error: #29: expected an expression
if()
../Core/Src/main.c: 11 warnings, 1 error
"PressureSensorBoardMaster\PressureSensorBoardMaster.axf" - 1 Error(s), 11 Warning(s).
<h2>Software Packages used:</h2>
Package Vendor: ARM
https://www.keil.com/pack/ARM.CMSIS.6.2.0.pack
ARM::CMSIS@6.2.0
https://www.keil.com/pack/ARM.CMSIS.6.1.0.pack
ARM::CMSIS@6.1.0
CMSIS (Common Microcontroller Software Interface Standard)
* Component: CORE Version: 6.1.1
* Component: CORE Version: 6.1.0
Package Vendor: Keil
https://www.keil.com/pack/Keil.STM32F1xx_DFP.2.4.1.pack
@ -51,14 +70,15 @@ Package Vendor: Keil
<h2>Collection of Component include folders:</h2>
./RTE/_PressureSensorBoardMaster
C:/keil/ARM/CMSIS/6.2.0/CMSIS/Core/Include
C:/keil/Keil/STM32F1xx_DFP/2.4.1/Device/Include
C:/app/Keil_v5/ARM/Packs/ARM/CMSIS/6.1.0/CMSIS/Core/Include
C:/app/Keil_v5/ARM/Packs/Keil/STM32F1xx_DFP/2.4.1/Device/Include
<h2>Collection of Component Files used:</h2>
* Component: ARM::CMSIS:CORE@6.1.1
* Component: ARM::CMSIS:CORE@6.1.0
Include file: CMSIS/Core/Include/tz_context.h
Build Time Elapsed: 00:00:01
Target not created.
Build Time Elapsed: 00:00:00
</pre>
</body>
</html>

View File

@ -1,33 +1,33 @@
:020000040800F2
:10000000D009002089010008771500086514000850
:100010007515000831030008B51A0008000000003B
:100020000000000000000000000000002D16000885
:1000300013040008000000007D1500082F160008BA
:100000000009002089010008B3190008FD17000845
:10001000B1190008D30200088D200008000000007C
:10002000000000000000000000000000F91A0008B5
:100030003F03000800000000B91900082D1B00084C
:10004000A3010008A3010008A3010008A301000800
:10005000A3010008A3010008A3010008A3010008F0
:10006000A3010008A3010008A3010008A3010008E0
:10007000A3010008A3010008A3010008350300083C
:10007000A3010008A3010008A30100080903000868
:10008000A3010008A3010008A3010008A3010008C0
:10009000A3010008A3010008A3010008A3010008B0
:1000A000A3010008A3010008A3010008A3010008A0
:1000B000A3010008A3010008A3010008A301000890
:1000B000A3010008951B0008A3010008A301000884
:1000C000A3010008A3010008A3010008A301000880
:1000D000A3010008A91A0008A3010008A301000851
:1000D000A30100086920000875200008812000089D
:1000E000A3010008A3010008A301000800F002F822
:1000F00000F03AF80AA090E8000C82448344AAF188
:100100000107DA4501D100F02FF8AFF2090EBAE885
:100110000F0013F0010F18BFFB1A43F0010318473B
:10012000541C0000741C0000103A24BF78C878C129
:10012000C0200000E0200000103A24BF78C878C149
:10013000FAD8520724BF30C830C144BF04680C60ED
:10014000704700000023002400250026103A28BF35
:1001500078C1FBD8520728BF30C148BF0B60704739
:100160001FB51FBD10B510BD00F07AF81146FFF79E
:10017000F7FF01F0B1FC00F098F803B4FFF7F2FFCD
:10017000F7FF01F09DFF00F098F803B4FFF7F2FFDE
:1001800003BC00F09FF80000094880470948004779
:10019000FEE7FEE7FEE7FEE7FEE7FEE7FEE7FEE737
:1001A000FEE7FEE704480549054A064B7047000094
:1001B00093160008ED000008D0030020D0090020AD
:1001C000D0050020D00500204FF000020429C0F027
:1001B000911B0008ED00000800030020000900204A
:1001C00000050020000500204FF000020429C0F0C7
:1001D000128010F0030C00F01B80CCF1040CBCF179
:1001E000020F18BF00F8012BA8BF20F8022BA1EBCB
:1001F0000C0100F00DB85FEAC17C24BF00F8012BB0
@ -43,437 +43,508 @@
:1002900021F00701AC46ACE8C009ACE8C009ACE805
:1002A000C009ACE8C0098D46704710B50446AFF3ED
:1002B00000802046BDE81040FFF75FBF0048704750
:1002C0007003002001491820ABBEFEE726000200A3
:1002D00070470000154910B5AA20087055204870D5
:1002E00002200022A1F1BD0302EB42141C44521C67
:1002F00064780C54401CC0B2032AF5DB5FF00002A6
:1003000002EB42141C44521CA4780C54401CC0B292
:10031000032AF5DB054B00225A3B9C5C0C54401C25
:10032000521CC0B25A2AF8DB10BD0000E1010020C7
:10033000FEE70000014800F0DFB800002C030020B9
:100340002DE9F0472348C06B00684068C0F5807312
:10035000214801698B4201D35C1A04E0C1F5807227
:10036000D4180122C270002C31D0002246790579C0
:1003700090F801A028E08F18DFF860C0FFB21CF8E9
:10038000077005B390F806C0E146B4451BD25FEA9A
:10039000090C0ED1012D01D0022D0AD1DFF84080C9
:1003A0000AEB4A1C18F80CC0674502D00027877179
:1003B00009E0DFF830C00CF8097009F10107FFB25D
:1003C0008771B74202D2521CA242D4D30361BDE866
:1003D000F0870000540200200000002024000020CC
:1003E000240100204302002030B590F84050012441
:1003F000AC40C56B6C60046863604368102B036895
:1004000003D099600068C26030BD9A600068C16026
:1004100030BD704772B6FEE710B590F8211000228B
:10042000022905D00421816380F82020012010BD1D
:1004300001680B6823F00E030B6001680B6823F062
:1004400001030B6090F84030C46B012101FA03F303
:10045000636080F8211080F82020104610BD000055
:1004600010B590F821100024022903D004218163E3
:1004700001243DE001680A6822F00E020A6001686A
:100480000A6822F001020A601A4A0168914201D109
:10049000012121E0174A1432914201D110211BE0C1
:1004A000144A2832914201D1891515E0114A3C3293
:1004B000914201D189140FE00E4A5032914202D18B
:1004C0004FF4803108E00B4A6432914202D14FF47C
:1004D000801101E04FF08071064A083A5160012115
:1004E00080F82110002180F82010416B01B188476D
:1004F000204610BD080002402DE9F05FC16B0C687A
:1005000001680B68D0F840C0042202FA0CF2494D91
:10051000DFF824A1494E4A4FDFF828B1DFF828E17F
:1005200022422CD05A072AD50A68920603D40A68B8
:1005300022F004020A600168A94201D1042219E0F4
:10054000514501D1402215E0B14202D14FF4806201
:1005500010E0B94202D14FF480420BE0594502D17C
:100560004FF4802206E0714502D14FF4800201E091
:100570004FF080622F4908394A60C16A3BE04FF072
:10058000020808FA0CF818EA040F4FF000094FF0BF
:10059000010235D05FEA837832D50B689B0605D41B
:1005A0000B6823F00A030B6080F821200168A94240
:1005B00001D1022219E0514501D1202215E0B142BA
:1005C00002D14FF4007210E0B94202D14FF4005250
:1005D0000BE0594502D14FF4003206E0714502D1DB
:1005E0004FF4001201E04FF00072124908394A60DE
:1005F00080F82090816A00291AD0BDE8F05F084792
:10060000082505FA0CF5254212D01B0710D50B68FA
:1006100023F00E030B6090F84010C36B02FA01F157
:100620005960826380F8212080F82090016BE2E716
:10063000BDE8F09F080002401C000240300002406C
:1006400044000240580002406C00024030B528B31C
:1006500008C8134914221944B1FBF2F18900C1639F
:1006600010498163022141771A6843F6F0718A4389
:10067000D0E900142143D0E902452C432143046909
:1006800021434469214384692143114319600021B6
:100690004163012242770177084630BD012030BD19
:1006A000F8FFFDBF0000024070B5044690F820003E
:1006B000002501280CD0012084F8200094F8216046
:1006C0000020012E06D084F820000225284670BDA7
:1006D000022070BD022684F82160A06320680668AD
:1006E00026F0010606602046FFF77EFEE06A00283D
:1006F0002068016802D041F00E0106E021F00401FB
:1007000001602068016841F00A0101602068016809
:1007100041F001010160D9E72DE9F84FDFF8B89108
:100720000024A9F1040B23460F2709F1040AABF1B9
:10073000040EC9E00125A5402A40AA427DD1674E9A
:10074000D1F804C0ACEB0608B44532D014DCBCF1DF
:10075000030F3AD009DCBCF1000F2AD0BCF1010F25
:100760001CD0BCF1020F31D11DE0BCF1110F17D02C
:10077000BCF1120F2AD119E0B8F5881F19D006DC98
:10078000B8F5803F15D0B8F5801F1FD111E0B8F53E
:10079000001F0ED0B8F5041F18D10AE0CB6815E091
:1007A000CB681B1D12E0CB6808330FE0CB680C331D
:1007B0000CE08B682BB1012B4FF0080303D045618F
:1007C00004E0042302E0056100E00023FF2A01D8D1
:1007D000064601E000F104064FEA840501D9A5F1BF
:1007E0002005D6F8008007FA05FC28EA0C0803FA71
:1007F00005F548EA0508C6F800804D68ED0062D5A9
:10080000374DAE6946F00106AE61AD6924F00306CE
:1008100005F001050095334D06EB050CDCF808509A
:10082000A607360F07FA06F825EA0805DFF8B880AC
:10083000404503D14FF0000817E044E0DFF8AC80FA
:10084000404502D14FF001080FE0DFF8A480404599
:1008500002D14FF0020808E0DFF89880404502D14D
:100860004FF0030801E04FF0040808FA06F848EAE0
:100870000508CCF808804D68D9F80060ED024D46B7
:1008800001D5164300E096432E604D68DAF800600B
:10089000AD02554601D5164300E096432E604D68E3
:1008A000DBF80060AD035D4601D5164300E09643DA
:1008B0002E604D68DEF80060ED03754601D51643E5
:1008C00000E096432E60641C0D682A46E5407FF4E4
:1008D00031AFBDE8F88F000008040140000011109E
:1008E000001002400000014000080140000C0140DF
:1008F00000100140001401400AB101617047090471
:10090000FBE70000014880687047000014000020E9
:100910000248816802781144816070471400002009
:10092000074810B5016841F010010160032000F094
:1009300075F80F2000F006F800F024F8002010BD34
:100940000020024070B50D4D04464FF47A712878AE
:10095000B1FBF0F00A490968B1FBF0F000F0F0FAE1
:1009600048B9102C07D200222146501E00F036F85C
:1009700000206C6070BD012070BD000014000020DC
:10098000200000200C4808B5816941F00101816117
:10099000816901F001010091C16941F08051C1619B
:1009A000C06900F0805000900448416821F0E06187
:1009B00041F00071416008BD00100240000001409C
:1009C000002809DB00F01F0201219140400980004E
:1009D00000F1E020C0F8001170470000F0B40E4BA9
:1009E0001B680C46C3F30223C3F10705042D00D98D
:1009F0000425191D072901D2002300E0DB1E012672
:100A000006FA05F1491E214099409E40761E164087
:100A10003143F0BC01F04FB80CED00E0064900F0A6
:100A2000070208684FF6FF03184040EA0220034A15
:100A300010430860704700000CED00E00000FA056C
:100A4000704700002DE9F0470F46050061D0434E86
:100A5000306800F00700B84209D2306820F0070083
:100A600038433060306800F00700B84251D1286840
:100A70003B4C810712D5400703D5606840F4E06025
:100A800060602878000703D5606840F460506060BB
:100A90006068A96820F0F000084360602878C0070B
:100AA00028D06868012810D02168022810D0890752
:100AB00000292EDA616821F0030101436160FFF72C
:100AC00021FF804641F288390DE021688903EFE774
:100AD0008901EDE7FFF716FFA0EB0801494502D9B0
:100AE0000320BDE8F0876068696800F00C00B0EB97
:100AF000810FEFD1306800F00700B8420BD93068A1
:100B000020F0070038433060306800F00700B8423A
:100B100001D00120E5E72878400705D56068E9683D
:100B200020F4E060084360602878000706D560681C
:100B3000296920F4605040EAC100606000F03EF88E
:100B40006168084AC1F30311515CC8400649086056
:100B500006480068FFF7F6FE0020C2E700200240CA
:100B6000001002405A1D000820000020180000203C
:100B700001490120C8647047000042420448054909
:100B800000684968044AC1F30221515CC8407047BB
:100B900020000020001002406A1D0008044805499A
:100BA00000684968044AC1F3C221515CC8407047DB
:100BB00020000020001002406A1D00080E4A516803
:100BC0000E4801F00C03042B11D0082B0FD10C4858
:100BD000C1F38343C903C05C0AD55168084AC1F315
:100BE0004041921E515C054A5043B0FBF1F0704702
:100BF00004494843704700000010024000127A0088
:100C00004A1D000800093D0010B5044CA06800060C
:100C100003D5FFF715FF8020A07210BD0010024021
:100C20002DE9F84F040070D02078C04DC00749D09E
:100C30006868C0F38100012807D06868C0F38100AC
:100C4000022809D16868C00306D52868800339D511
:100C500060680028E7D035E06068B0F5803F0BD0D1
:100C600010B1B0F5A02F11D0286820F48030286092
:100C7000286820F4802002E0286840F48030286052
:100C8000606890B1FFF73EFE06460AE0286840F42F
:100C900080202860F0E700BFFFF734FE801B642847
:100CA00073D828688003F7D50CE0FFF72BFE0646C3
:100CB00005E000BFFFF726FE801B6428F0D82868F7
:100CC0008003F7D420789A4E80074FF001094FF047
:100CD000000839D5686810F00C0F07D06868C0F3B9
:100CE0008100022809D16868C00306D428688007FB
:100CF00014D52069012808D110E02069B0B1C6F8E8
:100D00000090FFF7FFFD074605E00AE1FFF7FAFD57
:100D1000C01B0228C4D828688007F7D528686169F5
:100D200020F0F80040EAC10028600DE0C6F800801D
:100D3000FFF7E8FD074604E0FFF7E4FDC01B0228CB
:100D400023D828688007F7D4207800072CD5794865
:100D5000A169D9B1C0F80090FFF7D4FD074604E0BF
:100D6000FFF7D0FDC01B02280FD8686A8007F7D5AF
:100D700071484FF4FA510068B0FBF1F0009000BFE9
:100D80000098411E0091FAD20EE080E0C0F8008089
:100D9000FFF7B8FD074604E0FFF7B4FDC01B0228CB
:100DA00075D8686A8007F7D42078400760D5E8696D
:100DB0000027C00008D4E86940F08050E861E86985
:100DC000012700F0805000905C480168C90513D4E9
:100DD0000168834641F480710160FFF793FD82460C
:100DE00006E000BFFFF78EFDA0EB0A0064284ED896
:100DF000DBF80000C005F5D5E06801280AD008B18D
:100E0000052813D0286A20F001002862286A20F003
:100E1000040002E0286A40F001002862E06841F224
:100E2000883B98B1FFF76EFD82460BE0286A40F0E0
:100E300004002862EEE700BFFFF764FDA0EB0A01A3
:100E400059455AD8286A8007F6D50CE0FFF75AFDB5
:100E5000824605E0FFF756FDA0EB0A0159454CD844
:100E6000286A8007F6D41FB1E86920F08050E86155
:100E7000E06988B36968C1F38101022944D002287E
:100E8000C6F8608004D0FFF73DFD044638E034E04A
:100E9000FFF738FD074604E0FFF734FDC01B0228CA
:100EA0002BD828688001F7D4206AB0F5803F05D19F
:100EB0006868A16820F4003008436860D4E908013C
:100EC0000843696821F4741108436860C6F86090AB
:100ED000FFF718FD044606E025E000BFFFF712FD0E
:100EE000001B022809D828688001F7D51BE000BF45
:100EF000FFF708FD001B022802D90320BDE8F88F88
:100F000028688001F4D40EE00128F7D06868226ACE
:100F100000F48031914204D1616A00F4701088427B
:100F200001D00120EAE70020E8E7000000100240BD
:100F30000000424280044242200000200070004035
:100F400010B5401EB0F1807F01D3012010BD4FF0DD
:100F5000E02460610F21601700F0ADFD0020A0616A
:100F600007202061002010BD70477047F8B5016868
:100F700004460868CA684B6910F00F0F4FF000056F
:100F800059D003F0010602F49077374365D0C107CA
:100F900005D0D10503D5616C41F0010161644107C1
:100FA00005D5D90703D0616C41F002016164810766
:100FB00005D5D90703D0616C41F0040161640107D4
:100FC00007D502F02001314303D0616C41F00801E4
:100FD0006164616C00293AD0800604D5900602D580
:100FE000204600F022FC20684069616CC0F380104C
:100FF000090700D460B3204600F0E2FB2068406996
:10100000400621D52068143050E8001F21F040012F
:1010100040E80012002AF5D1E06BA8B16D494163A8
:10102000E06BFFF71DFA002811D0E06B416B01B0B7
:10103000BDE8F040084783060FD593060DD520463E
:10104000BDE8F84000F0F1BB2046FFF78EFFF8BD89
:101050002046FFF78AFF6564F8BD266B2023012E2A
:101060007CD1C6067AD5D60678D50868486800903F
:1010700048694FF00206400640D5E16B08684068B9
:101080000004000CE8D0A28D8242E5D9E085886991
:1010900020282DD020680C3050E8001F21F48071EA
:1010A00040E80012002AF5D12068143050E8001FF3
:1010B00021F0010140E80012002AF5D12068143027
:1010C00050E8001F21F0400140E80012002AF5D14D
:1010D00084F84230256320680C3050E8001F21F06E
:1010E000100140E80012002AF5D1E06BFFF794F9F7
:1010F0006663A08DE18D401A81B22AE0A08DE18D5A
:10110000401A81B2E08D0028A6D00029A4D0226820
:101110000C3252E8000F20F4907042E80007002FD4
:10112000F5D12068143050E8002F22F0010240E889
:101130000027002FF5D184F84230256320680C3059
:1011400050E8002F22F0100240E80023002BF5D1D8
:1011500066632046FFF708FFF8BDFFE705062BD5BD
:10116000150629D594F841002128F5D1A068B0F5DD
:10117000805F01D12069B0B1206A411C21622168E1
:1011800000784860E08C401E0004000CE084E3D14D
:101190002068C16821F08001C1602068C16841F009
:1011A0004001C160D8E7206A0088C0F308004860A9
:1011B000206A801C2062E5E74006CDD55006CBD5DD
:1011C000CA68204622F04002CA6084F8413000F02C
:1011D00048F9C1E79516000870B5040004D094F8EA
:1011E0004100002510B106E0012070BD84F8405098
:1011F000204600F023F8242084F841002068C168CC
:1012000021F40051C160204600F070FB20680169A4
:1012100021F4904101612068416921F02A01416176
:101220002068C16841F40051C1606564202084F8E1
:10123000410084F842006563002070BDF0B585B0C0
:1012400000240094019402940394054603684848DE
:10125000DFF818C102210322464E071563453ED12F
:10126000836943F480438361836903F48043049377
:10127000836943F0040383618069039200F00400F2
:1012800004900802CDE9000169463046FFF744FAB0
:10129000CDE90074694630460294FFF73DFA374EB7
:1012A0003548C6E900048020C6E9024020203461A8
:1012B000C6E905404FF44050F0613046FFF7C6F9EB
:1012C00008B1FFF7A7F8EE630022114625207562EA
:1012D000FFF784FB2520FFF773FB05B0F0BD284D19
:1012E000AB421ED1C36943F40033C361C36903F445
:1012F00000330493836943F004038361806903929C
:1013000000F0040004900420CDE900016946304655
:10131000FFF702FA0820CDE900046946304602943E
:1013200020E0184DAB42D8D1C36943F48023C36198
:10133000C36903F480230493836943F00803836142
:101340008069CDE9007100F00800CDE903200E4D61
:1013500069462846FFF7E0F9E814CDE9000469463C
:1013600028460294FFF7D8F9B7E70000003801409B
:101370000010024000080140580002402C030020E9
:101380000044004000480040000C014090F842300A
:10139000202B01D00220704721B11AB10023036332
:1013A00000F000BB012070470349884202D1034985
:1013B00001208870704700005402002000000020C7
:1013C00070472DE9F843044690F8410098461646C8
:1013D0000D46202802D00220BDE8F88385B17EB1F9
:1013E00000206064212084F84100FFF78BFAA68476
:1013F0008146E684A0682027B0F5805F02D003E034
:101400000120E9E7206910B12E4600250EE00026F4
:101410000CE08021204600F00DFBA8B9C6B116F8FB
:10142000010B21684860E08C401EE084E08C4B4654
:101430004FF00002CDF800800028EAD14FF04001C3
:10144000204600F0F7FA40B184F841700320C3E76A
:1014500035F8020BC0F30800E3E784F84170002080
:10146000BAE77047FEE70000094808B5416941F056
:10147000010141614069002200F00100009001215A
:101480000F20FFF7ABFABDE808400F20FFF798BA2E
:101490000010024030B585B0002418480094019433
:1014A00002940394816941F020018161816901F016
:1014B00020010491816941F004018161816901F099
:1014C00004010491816941F00801816180690C4D3A
:1014D00000F0080004900122F0212846FFF70CFAE2
:1014E000F02000900120CDE901040220039069461C
:1014F0002846FFF711F905B030BD0000001002408A
:10150000000C01400C4810B50A4901604FF4165117
:101510004160002181600C22C160C0E90412816138
:10152000C161FFF759FE002803D0BDE81040FEF767
:1015300071BF10BD00380140540200200C4810B5A6
:101540000A4901604FF416514160002181600C226C
:10155000C160C0E904128161C161FFF73DFE00284E
:1015600003D0BDE81040FEF755BF10BD0044004059
:101570009C020020FEE7FFF747FBFEE770470000F4
:101580002DE9F0431D4D00EB401463190A2A09D3DD
:101590000A782C5DA24205D14A78032A02D18A78C2
:1015A000052A03D000209870BDE8F08301229A70CC
:1015B0000022C0EB00188818DFF84090C5780020A2
:1015C00002EB420709F1630900EB4706F6B203EBB1
:1015D000060C25FA00F406EB480604F00104F6B206
:1015E0008CF803405A2E01D209F80640401C062808
:1015F000EADB521C052ADEDBD6E7000024010020CE
:1016000010B5094B00EB4014E018052A09D30A78FD
:101610001B5D9A4205D14A78012A02D189780129B5
:1016200000D00021417010BD240100207047FFF759
:101630006FB930B58FB028216846FEF7E7FD142159
:101640000AA8FEF7E3FD01210804CDE900100024FB
:10165000029402250491CDE907504FF4E01009905F
:101660006846FFF7DDFA08B172B6FEE70F20CDE954
:101670000A054FF48060CDE90C4002210AA80E94BF
:10168000FFF7E0F908B172B6FEE7FFF771FA0FB0A5
:1016900030BD704710B5406A0021C185C184FFF795
:1016A00064FC10BD70B5446A2068406994F841102C
:1016B000C0F3C0100025212904D118B1E5842046CB
:1016C00000F0A5F82068406994F84210C0F380103B
:1016D000222904D118B1E585204600F071F8606C2C
:1016E00040F0100060642046FFF73FFC70BD10B56D
:1016F0000146406A096809684FF0000289062ED445
:10170000C28501680C3151E8003F23F4807341E841
:101710000034002CF5D10168143151E8003F23F06A
:10172000010341E80034002CF5D10168143151E87F
:10173000003F23F0400341E80034002CF5D1202184
:1017400080F84210016B012909D101680C3151E880
:10175000003F23F0100341E80034002CF5D1426330
:10176000016B012902D0FFF71FFE10BD818DFFF72D
:10177000FBFB10BD10B5406A01214163016B0129DB
:1017800002D0FFF71DFE10BD818D4908FFF7ECFB6D
:1017900010BD000010B54FF4807206490648FFF7EF
:1017A000F5FD0548C06B006840680449C0F58070CD
:1017B000C86010BD2400002054020020000000205A
:1017C00001680C3151E8002F22F4907241E80023A7
:1017D000002BF5D10168143151E8002F22F00102ED
:1017E00041E80023002BF5D1016B012909D10168E3
:1017F0000C3151E8002F22F0100241E80023002BA9
:10180000F5D1202180F84210002101637047016862
:101810000C3151E8002F22F0C00241E80023002BD8
:10182000F5D1202180F84110704708B590F842109A
:10183000222901D0022008BD82684FF480539A42C9
:1018400001D1016921B1816A9A421BD04AB10AE0F3
:101850000268816A5268C2F308020A80816A891CA0
:1018600008E0026972B10268526802F07F020A70F1
:10187000816A491C8162C18D491E0904090CC18518
:1018800003D01BE002685268F1E70168CA6822F0E1
:101890002002CA600168CA6822F48072CA600168C6
:1018A0004A6922F001024A61202180F84210002199
:1018B0004163026B012A03D0FFF776FD002008BDCB
:1018C000016301680C3151E8002F22F0100241E859
:1018D0000023002BF5D101680A68D20602D50A68F8
:1018E00049680091818DFFF73FFBE7E770B504463B
:1018F00000680169E26821F44051114301612169E6
:10190000A0680843616908432168CA6841F20C6312
:101910009A430243CA6020684169A26921F4407178
:10192000114341611E492068884202D1FFF736F910
:1019300001E0FFF723F900EBC00101EB0012606842
:1019400064218000B2FBF0F3B3FBF1F36FF01806F3
:101950007343B2FBF0F5B2FBF0F605EB83053223DF
:1019600003EB0515B5FBF1F5B6FBF1F605F0F00557
:1019700005EB0615B2FBF0F6B2FBF0F0B0FBF1F0B0
:101980006FF01802504306EB800003EB0010B0FB31
:10199000F1F0216800F00F002844886070BD00005D
:1019A0000038014038B58162044682850020134624
:1019B0006064222284F84220E56B1B4AAA62E56B30
:1019C0001A4AEA62E56B1A4A2A63E26B50630A46D6
:1019D0002168E06B091DFEF767FE2068016840681A
:1019E0000090206948B120680C3050E8001F41F495
:1019F000807140E80012002AF5D12068143050E8C8
:101A0000001F41F0010140E80012002AF5D12068D2
:101A1000143050E8001F41F0400140E80012002A55
:101A2000F5D1002038BD0000EF160008751700083A
:101A3000A51600082DE9F843984617460D460446BA
:101A4000089E24E0701C22D0FEF75CFFA0EB08008B
:101A5000B0421AD8CEB12068C168490717D5802D89
:101A600015D0402D13D00168C94309070FD4016870
:101A70000025406800902046FFF7A2FE0820606421
:101A800084F840500120BDE8F8830320FBE720687C
:101A9000006835EA000004D00020B842D2D000200F
:101AA000F1E70120F9E700000148FFF75FBA000005
:101AB00054020020FEE70907090E002804DB00F1AC
:101AC000E02080F80014704700F00F0000F1E020E3
:101AD00080F8141D70470000FEF722FFFFF7A9FDF4
:101AE000FFF7D8FCFFF7C0FCFFF70CFDFFF726FD62
:101AF0000024884E254604EB4412611CB046B154C4
:101B000002EB08001E2145708570C01CFEF75CFBCF
:101B1000641C032CEFDB7F485A216330FEF754FB33
:101B20007C486221BD30FEF74FFB4FF480717A484C
:101B3000FEF76CFBFFF72EFEFEF7E4FE774C4FF04E
:101B4000010A4FF00A0B4FF00209A060FEF7DAFE1F
:101B50000646A068371AFEF7F3FB20780E28F5D268
:101B6000DFE800F007132635455666758596A7B75A
:101B7000C8D36570052084F804A060710A23574615
:101B8000A5710422664967483DE0A27960798242E6
:101B900006D365490020FFF733FD05E0A660D5E7D1
:101BA000282FD3D388F80150257184F80090F5E7E9
:101BB00084F804905A4984F805B0A5710A230422D8
:101BC0000C315848FFF7FDFB0320A6607FE0A279A7
:101BD0006079824204D354490020FFF7D1FC03E02E
:101BE000282FB3D388F802502571042080E084F8B0
:101BF00001A084F804A0052749496771A5710A234B
:101C00000422091D4748FFF7DCFBA66027709DE70B
:101C1000A2796079824204D343490120FFF7F0FCA6
:101C200003E0282F92D388F82250257106205FE028
:101C300084F804903A4984F805B0A5710A23042277
:101C400010313848FFF7BDFB0720A6603FE0A279BE
:101C50006079824204D334490120FFF791FC03E00C
:101C6000282F9CD388F823502571082040E084F861
:101C7000019084F804A0052060712949A5710A2308
:101C8000042208312748FFF79CFB0920A6601EE0CC
:101C9000A2796079824204D323490220FFF7B0FC85
:101CA00003E0282FB3D388F84350257184F800B09F
:101CB00074E784F804901A4984F805B0A5710A23E2
:101CC000042214311748FFF77CFB0B20A66020701C
:101CD0003CE7A2796079824204D313490220FFF7DE
:101CE0004FFC03E0282F92D388F8445025710C2034
:101CF000207053E7FEF7EEFA0B4964236222623943
:101D00000A48FFF75EFB0D20F2E7322FE0D3257083
:101D100044E70000240100202400002000000020EF
:101D2000301D000854020020430200209C020020C5
:101D30000101C0800201C0800301C0800103414154
:101D40000203414103034141010202030405060766
:101D500008090A0B0C0D0E0F101000000000000007
:101D60000000010203040607080900000000010248
:101D700003040000941D000800000020240000005F
:101D800028010008B81D000824000020AC0900004C
:101D900044010008000000000000000000000000F6
:101DA0000000000000000000010000001000000022
:081DB0000000000000127A009F
:1002C000A002002001491820ABBEFEE72600020074
:1002D0007047FEE770B505464FF6FF7000224AF200
:1002E00001040EE0AB5C58400023C60702D084EA4C
:1002F000500000E040085B1CDBB2082BF5D3521C19
:10030000D2B28A42EED370BD014800F08BB8000033
:100310005C02002030B590F840500124AC40C56B21
:100320006C60046863604368102B036803D09960B5
:100330000068C26030BD9A600068C16030BD70471F
:1003400072B6FEE710B590F821100022022905D000
:100350000421816380F82020012010BD01680B6812
:1003600023F00E030B6001680B6823F001030B60A0
:1003700090F84030C46B012101FA03F3636080F808
:10038000211080F82020104610BD000010B590F814
:1003900021100024022903D00421816301243DE0BF
:1003A00001680A6822F00E020A6001680A6822F0F9
:1003B00001020A601A4A0168914201D1012121E03B
:1003C000174A1432914201D110211BE0144A2832FD
:1003D000914201D1891515E0114A3C32914201D177
:1003E00089140FE00E4A5032914202D14FF480310D
:1003F00008E00B4A6432914202D14FF4801101E0CF
:100400004FF08071064A083A5160012180F82110AE
:10041000002180F82010416B01B18847204610BDB3
:10042000080002402DE9F05FC16B0C6801680B68A1
:10043000D0F840C0042202FA0CF2494DDFF824A1A2
:10044000494E4A4FDFF828B1DFF828E122422CD08C
:100450005A072AD50A68920603D40A6822F00402D1
:100460000A600168A94201D1042219E0514501D175
:10047000402215E0B14202D14FF4806210E0B9424F
:1004800002D14FF480420BE0594502D14FF4802253
:1004900006E0714502D14FF4800201E04FF0806226
:1004A0002F4908394A60C16A3BE04FF0020808FA58
:1004B0000CF818EA040F4FF000094FF0010235D094
:1004C0005FEA837832D50B689B0605D40B6823F06E
:1004D0000A030B6080F821200168A94201D10222A1
:1004E00019E0514501D1202215E0B14202D14FF46B
:1004F000007210E0B94202D14FF400520BE05945AE
:1005000002D14FF4003206E0714502D14FF40012DF
:1005100001E04FF00072124908394A6080F82090DB
:10052000816A00291AD0BDE8F05F0847082505FA5E
:100530000CF5254212D01B0710D50B6823F00E03D3
:100540000B6090F84010C36B02FA01F159608263AE
:1005500080F8212080F82090016BE2E7BDE8F09F51
:10056000080002401C0002403000024044000240EB
:10057000580002406C00024030B528B308C8134947
:1005800014221944B1FBF2F18900C163104981635F
:10059000022141771A6843F6F0718A43D0E90014CA
:1005A0002143D0E902452C43214304692143446996
:1005B00021438469214311431960002141630122D1
:1005C00042770177084630BD012030BDF8FFFDBFFE
:1005D0000000024070B5044690F820000025012874
:1005E0000CD0012084F8200094F821600020012E16
:1005F00006D084F820000225284670BD022070BD78
:10060000022684F82160A0632068066826F00106AF
:1006100006602046FFF77EFEE06A00282068016839
:1006200002D041F00E0106E021F0040101602068D3
:10063000016841F00A0101602068016841F0010190
:100640000160D9E72DE9F84FDFF8B8910024A9F14E
:10065000040B23460F2709F1040AABF1040EC9E08D
:100660000125A5402A40AA427DD1674ED1F804C099
:10067000ACEB0608B44532D014DCBCF1030F3AD021
:1006800009DCBCF1000F2AD0BCF1010F1CD0BCF179
:10069000020F31D11DE0BCF1110F17D0BCF1120FC8
:1006A0002AD119E0B8F5881F19D006DCB8F5803FCB
:1006B00015D0B8F5801F1FD111E0B8F5001F0ED07E
:1006C000B8F5041F18D10AE0CB6815E0CB681B1DF4
:1006D00012E0CB6808330FE0CB680C330CE08B687A
:1006E0002BB1012B4FF0080303D0456104E0042334
:1006F00002E0056100E00023FF2A01D8064601E080
:1007000000F104064FEA840501D9A5F12005D6F8C9
:10071000008007FA05FC28EA0C0803FA05F548EA08
:100720000508C6F800804D68ED0062D5374DAE690A
:1007300046F00106AE61AD6924F0030605F001053F
:100740000095334D06EB050CDCF80850A607360F74
:1007500007FA06F825EA0805DFF8B880404503D116
:100760004FF0000817E044E0DFF8AC80404502D1CC
:100770004FF001080FE0DFF8A480404502D14FF0B0
:10078000020808E0DFF89880404502D14FF00308E6
:1007900001E04FF0040808FA06F848EA0508CCF82A
:1007A00008804D68D9F80060ED024D4601D516432A
:1007B00000E096432E604D68DAF80060AD025546C1
:1007C00001D5164300E096432E604D68DBF80060CB
:1007D000AD035D4601D5164300E096432E604D689B
:1007E000DEF80060ED03754601D5164300E0964340
:1007F0002E60641C0D682A46E5407FF431AFBDE8E9
:10080000F88F0000080401400000111000100240A1
:100810000000014000080140000C014000100140B0
:10082000001401400AB1016170470904FBE70000B0
:10083000014880687047000020000020024881685D
:10084000027811448160704720000020074810B5ED
:10085000016841F010010160032000F075F80F20DD
:1008600000F006F800F024F8002010BD002002403F
:1008700070B50D4D04464FF47A712878B1FBF0F055
:100880000A490968B1FBF0F000F0F0FA48B9102C01
:1008900007D200222146501E00F036F800206C607E
:1008A00070BD012070BD0000200000202C00002041
:1008B0000C4808B5816941F001018161816901F04D
:1008C00001010091C16941F08051C161C06900F02E
:1008D000805000900448416821F0E06141F00071CF
:1008E000416008BD0010024000000140002809DB03
:1008F00000F01F02012191404009800000F1E0203A
:10090000C0F8001170470000F0B40E4B1B680C4695
:10091000C3F30223C3F10705042D00D90425191DD3
:10092000072901D2002300E0DB1E012606FA05F1AB
:10093000491E214099409E40761E16403143F0BC2E
:1009400001F0A5BB0CED00E0064900F007020868C5
:100950004FF6FF03184040EA0220034A10430860A4
:10096000704700000CED00E00000FA057047000041
:100970002DE9F0470F46050061D0434E306800F086
:100980000700B84209D2306820F0070038433060D1
:10099000306800F00700B84251D128683B4C81070D
:1009A00012D5400703D5606840F4E06060602878A5
:1009B000000703D5606840F4605060606068A96813
:1009C00020F0F000084360602878C00728D06868ED
:1009D000012810D02168022810D0890700292EDABA
:1009E000616821F0030101436160FFF721FF804648
:1009F00041F288390DE021688903EFE78901EDE7CD
:100A0000FFF716FFA0EB0801494502D90320BDE816
:100A1000F0876068696800F00C00B0EB810FEFD1DF
:100A2000306800F00700B8420BD9306820F00700AA
:100A300038433060306800F00700B84201D0012030
:100A4000E5E72878400705D56068E96820F4E060AC
:100A5000084360602878000706D56068296920F49B
:100A6000605040EAC100606000F03EF86168084AEA
:100A7000C1F30311515CC84006490860064800688C
:100A8000FFF7F6FE0020C2E70020024000100240FF
:100A9000C62100082C00002024000020014901206C
:100AA000C86470470000424204480549006849682C
:100AB000044AC1F30221515CC84070472C00002059
:100AC00000100240D6210008044805490068496822
:100AD000044AC1F3C221515CC84070472C00002079
:100AE00000100240D62100080E4A51680E4801F05D
:100AF0000C03042B11D0082B0FD10C48C1F38343F6
:100B0000C903C05C0AD55168084AC1F34041921E2E
:100B1000515C054A5043B0FBF1F07047044948432B
:100B2000704700000010024000127A00B621000851
:100B300000093D0010B5044CA068000603D5FFF77E
:100B400015FF8020A07210BD001002402DE9F84F63
:100B5000040070D02078C04DC00749D06868C0F349
:100B60008100012807D06868C0F38100022809D1FC
:100B70006868C00306D52868800339D560680028F6
:100B8000E7D035E06068B0F5803F0BD010B1B0F52C
:100B9000A02F11D0286820F480302860286820F425
:100BA000802002E0286840F480302860606890B1BE
:100BB000FFF73EFE06460AE0286840F480202860E1
:100BC000F0E700BFFFF734FE801B642873D8286865
:100BD0008003F7D50CE0FFF72BFE064605E000BFCB
:100BE000FFF726FE801B6428F0D828688003F7D41E
:100BF00020789A4E80074FF001094FF0000839D550
:100C0000686810F00C0F07D06868C0F381000228F4
:100C100009D16868C00306D42868800714D5206904
:100C2000012808D110E02069B0B1C6F80090FFF7A4
:100C3000FFFD074605E00AE1FFF7FAFDC01B0228A9
:100C4000C4D828688007F7D52868616920F0F800C3
:100C500040EAC10028600DE0C6F80080FFF7E8FD1B
:100C6000074604E0FFF7E4FDC01B022823D82868EC
:100C70008007F7D4207800072CD57948A169D9B12D
:100C8000C0F80090FFF7D4FD074604E0FFF7D0FD61
:100C9000C01B02280FD8686A8007F7D571484FF447
:100CA000FA510068B0FBF1F0009000BF0098411EBF
:100CB0000091FAD20EE080E0C0F80080FFF7B8FDA6
:100CC000074604E0FFF7B4FDC01B022875D8686A28
:100CD0008007F7D42078400760D5E8690027C00076
:100CE00008D4E86940F08050E861E869012700F025
:100CF000805000905C480168C90513D401688346A0
:100D000041F480710160FFF793FD824606E000BF69
:100D1000FFF78EFDA0EB0A0064284ED8DBF8000038
:100D2000C005F5D5E06801280AD008B1052813D020
:100D3000286A20F001002862286A20F0040002E0FE
:100D4000286A40F001002862E06841F2883B98B1CF
:100D5000FFF76EFD82460BE0286A40F0040028622F
:100D6000EEE700BFFFF764FDA0EB0A0159455AD832
:100D7000286A8007F6D50CE0FFF75AFD824605E0A9
:100D8000FFF756FDA0EB0A0159454CD8286A8007A9
:100D9000F6D41FB1E86920F08050E861E06988B3BB
:100DA0006968C1F38101022944D00228C6F8608035
:100DB00004D0FFF73DFD044638E034E0FFF738FD8E
:100DC000074604E0FFF734FDC01B02282BD8286833
:100DD0008001F7D4206AB0F5803F05D16868A1682A
:100DE00020F4003008436860D4E9080108436968CA
:100DF00021F4741108436860C6F86090FFF718FD8D
:100E0000044606E025E000BFFFF712FD001B0228A4
:100E100009D828688001F7D51BE000BFFFF708FD5F
:100E2000001B022802D90320BDE8F88F2868800142
:100E3000F4D40EE00128F7D06868226A00F480310B
:100E4000914204D1616A00F47010884201D00120FF
:100E5000EAE70020E8E700000010024000004242FC
:100E6000800442422C0000200070004010B5401E5B
:100E7000B0F1807F01D3012010BD4FF0E02460610C
:100E80000F21601701F003F90020A0610720206105
:100E9000002010BD7047704770B590F83C20012AC3
:100EA00026D0012480F83C40022280F83D200368CF
:100EB0005A689D6822F070060A6832435A600D4BEA
:100EC00002689A4208D0B2F1804F05D00A4B9A428C
:100ED00002D00A4B9A4204D1496825F08003194395
:100EE000916080F83D40002180F83C10084670BDBC
:100EF000022070BD002C01400004004000080040AA
:100F000010B5040003D094F83D0010B107E00120B3
:100F100010BD002084F83C00204600F01FF802209D
:100F200084F83D00211D206800F03AFE012084F87D
:100F3000460084F83E0084F83F0084F8400084F8BE
:100F4000410084F8420084F8430084F8440084F8A7
:100F5000450084F83D00002010BD000008B5006881
:100F60000B49884212D10B48C16941F00201C161AD
:100F7000C069002200F00200009011461D20FFF71A
:100F8000C3FCBDE808401D20FFF7B0BC08BD000051
:100F9000000400400010024090F83D10012901D0EB
:100FA00001207047022180F83D100168CA6842F0B4
:100FB0000102CA6000680B49884208D0B0F1804F36
:100FC00005D00949884202D00849884204D1816885
:100FD00001F00701062903D0016841F00101016019
:100FE00000207047002C0140000400400008004031
:100FF0000168CA6822F00102CA6001680A6A41F207
:1010000011131A4207D10A6A9B101A4203D10A68C7
:1010100022F001020A60012180F83D100020704793
:1010200070B5044690F83C000025012817D0012631
:1010300084F83C60022084F83D002068826822F039
:10104000770222F47F4282600868502838D00DDC95
:1010500020284FD005DC90B3102811D14AE002209F
:1010600070BD302846D040280AD13BE060282FD000
:1010700070280DD0B0F5805F03D0B0F5005F12D0BE
:10108000012584F83D60002084F83C00284670BDAE
:10109000CB68D1E90121206800F0BEFD206881689D
:1010A00041F0770109E0CB68D1E90121206800F027
:1010B000B3FD2068816841F480418160E1E719E077
:1010C000CA684968206800F0B9FD5021206806E030
:1010D000CA684968206800F0C2FD6021206800F0FD
:1010E000A5FDCEE7CA684968206800F0A7FD402149
:1010F0002068F4E7226801461046F0E770472DE9C2
:10110000F04104460068C66805694FF00007A9076A
:1011100013D5B10711D5F91E016101202077206890
:1011200080698007204602D0FFF7E8FF04E000F066
:101130007EF8204600F07CF82777680716D5700700
:1011400014D521686FF00400086102202077206820
:10115000806910F4407F204602D0FFF7CFFF04E003
:1011600000F065F8204600F063F82777280715D5CA
:10117000300713D521686FF008000861042020773C
:101180002068C0698007204602D0FFF7B7FF04E05F
:1011900000F04DF8204600F04BF82777E80616D50A
:1011A000F00614D521686FF0100008610820207740
:1011B0002068C06910F4407F204602D0FFF79EFFF0
:1011C00004E000F034F8204600F032F82777E80712
:1011D00008D0F00706D021686FF0010008612046B2
:1011E00000F028F8280608D5300606D521686FF0EB
:1011F000800008612046FFF74DFE680608D570069E
:1012000006D521686FF040000861204600F01EF806
:10121000A8060AD5B00608D521686FF0200008613D
:101220002046BDE8F041FFF736BEBDE8F0817047CB
:1012300070470000044A0168914204D16FF0010236
:101240000A61FFF7D5BE7047000400407047704741
:1012500010B504460068406994F84110C0F3C0100E
:10126000212911D180B12068143050E8001F21F0ED
:10127000800140E80012002AF5D1A06B08B1FFF709
:1012800061F8204600F0A3FD2068406994F8421000
:10129000C0F38010222911D180B12068143050E8A9
:1012A000001F21F0400140E80012002AF5D1E06B58
:1012B00008B1FFF747F8204600F062FD002010BD9E
:1012C00070470000F8B5016804460868CA684B69B1
:1012D00010F00F0F4FF0000559D003F0010602F493
:1012E0009077374365D0C10705D0D10503D5616C30
:1012F00041F001016164410705D5D90703D0616C54
:1013000041F002016164810705D5D90703D0616C02
:1013100041F004016164010707D502F02001314367
:1013200003D0616C41F008016164616C00293AD01E
:10133000800604D5900602D5204600F056FD2068B0
:101340004069616CC0F38010090700D460B3204687
:1013500000F016FD20684069400621D52068143051
:1013600050E8001F21F0400140E80012002AF5D1AA
:10137000E06BA8B16D494163E06BFFF707F8002807
:1013800011D0E06B416B01B0BDE8F0400847830627
:101390000FD593060DD52046BDE8F84000F025BDD9
:1013A0002046FFF78DFFF8BD2046FFF789FF6564F3
:1013B000F8BD266B2023012E7CD1C6067AD5D60631
:1013C00078D508684868009048694FF002064006E2
:1013D00040D5E16B086840680004000CE8D0A28D9D
:1013E0008242E5D9E085886920282DD020680C301C
:1013F00050E8001F21F4807140E80012002AF5D166
:101400002068143050E8001F21F0010140E800126C
:10141000002AF5D12068143050E8001F21F0400167
:1014200040E80012002AF5D184F842302563206894
:101430000C3050E8001F21F0100140E80012002A93
:10144000F5D1E06BFEF77EFF6663A08DE18D401A5B
:1014500081B22AE0A08DE18D401A81B2E08D002892
:10146000A6D00029A4D022680C3252E8000F20F444
:10147000907042E80007002FF5D12068143050E842
:10148000002F22F0010240E80027002FF5D184F858
:101490004230256320680C3050E8002F22F0100203
:1014A00040E80023002BF5D166632046FFF7CFFE0E
:1014B000F8BDFFE705062BD5150629D594F84100A0
:1014C0002128F5D1A068B0F5805F01D12069B0B1C5
:1014D000206A411C2162216800784860E08C401E2F
:1014E0000004000CE084E3D12068C16821F0800191
:1014F000C1602068C16841F04001C160D8E7206A3E
:101500000088C0F308004860206A801C2062E5E77C
:101510004006CDD55006CBD5CA68204622F0400201
:10152000CA6084F8413000F049F9C1E7831C000823
:1015300070B5040004D094F84100002510B106E015
:10154000012070BD84F84050204600F023F824208C
:1015500084F841002068C16821F40051C160204630
:1015600000F0A4FC2068016921F490410161206829
:10157000416921F02A0141612068C16841F40051AC
:10158000C1606564202084F8410084F842006563EE
:10159000002070BDF0B585B0002400940194029441
:1015A0000394054603684E48DFF830C10221032248
:1015B0004C4E071563453AD1836943F480438361F8
:1015C000836903F480430493836943F004038361D4
:1015D0008069039200F0040004900802CDE9000144
:1015E00069463046FFF72EF8CDE90074694630466B
:1015F0000294FFF727F83D4E3B48C6E900048020DF
:10160000C6E9024034614FF440507461C6E90640B7
:101610003046FEF7B1FF08B1FEF792FEEE630022FE
:10162000114625207562FFF76FF9252028E0304D1F
:10163000AB4229D1C36943F40033C361C36903F4E6
:1016400000330493836943F0040383618069039248
:1016500000F0040004900420CDE900016946304602
:10166000FEF7F0FF0820CDE90004694630460294F9
:10167000FEF7E8FF002211462620FFF745F9262055
:10168000FFF734F905B0F0BD1A4DAB42FAD1C3698A
:1016900043F48023C361C36903F480230493836903
:1016A00043F0080383618069CDE9007100F0080010
:1016B000CDE90320104D69462846FEF7C3FFE81424
:1016C000CDE90004694628460294FEF7BBFF0022DC
:1016D00011462720FFF718F92720D1E700380140ED
:1016E0000010024000080140580002405C02002047
:1016F0000044004000480040000C014090F8423097
:10170000202B01D00220704721B11AB100230363BE
:1017100000F028BC01207047704770472DE9F8435E
:10172000044690F84100984616460D46202802D0FF
:101730000220BDE8F88385B17EB1002060642120DD
:1017400084F84100FFF774F8A6848146E684A06817
:101750002027B0F5805F02D003E00120E9E720698F
:1017600010B12E4600250EE000260CE08021204618
:1017700000F040FCA8B9C6B116F8010B216848601A
:10178000E08C401EE084E08C4B464FF00002CDF828
:1017900000800028EAD14FF04001204600F02AFCEA
:1017A00040B184F841700320C3E735F8020BC0F361
:1017B0000800E3E784F841700020BAE710B500683C
:1017C0000B49884212D10B48FFF742FD0948C06B14
:1017D00000684068C0F14000C0B200F0EFF8BDE81A
:1017E0001040402204490348FFF788BF10BD0000A5
:1017F00000380140840100209A000020FEE700002C
:10180000094808B5416941F0010141614069002280
:1018100000F00100009011460F20FFF775F8BDE8B9
:1018200008400F20FFF762B80010024030B585B0C5
:10183000002418480094019402940394816941F0B3
:1018400020018161816901F020010491816941F0E9
:1018500004018161816901F004010491816941F011
:101860000801816180690C4D00F00800049001229C
:10187000F0212846FEF7D6FFF02000900120CDE9A8
:1018800001040220039069462846FEF7DBFE05B0FE
:1018900030BD000000100240000C014010B586B0C1
:1018A0000024184800940194029403940494144969
:1018B0000594016041F61F41C0E9011441F28731EE
:1018C000C0E9031480218161FFF71AFB08B1FEF71C
:1018D00037FD4FF48050009069460A48FFF7A0FB9F
:1018E00008B1FEF72DFD049404A906480594FFF7FE
:1018F000D3FA002801D0FEF723FD06B010BD00008A
:10190000000400403C0100200C4810B50A49016069
:101910004FF416514160002181600C22C160C0E982
:1019200004128161C161FFF703FE002803D0BDE806
:101930001040FEF705BD10BD0038014084010020B5
:101940000C4810B50A4901604FF41651416000215E
:1019500081600C22C160C0E904128161C161FFF79E
:10196000E7FD002803D0BDE81040FEF7E9BC10BD3C
:1019700000440040CC0100200C4810B50A49016029
:101980004FF416514160002181600C22C160C0E912
:1019900004128161C161FFF7CBFD002803D0BDE8CF
:1019A0001040FEF7CDBC10BD0048004014020020DE
:1019B000FEE7FFF7BFF8FEE7704700002DE9F05F94
:1019C000304DDFF8BCA0012329786C78AA78022674
:1019D000AAF1030B052802D00A2814D04AE02848AF
:1019E000401F4078814245D1012C43D1012A41D189
:1019F00001EBC10202EB0A00594400F8083D01F86E
:101A0000016C437036E09E460323032C32D1052A35
:101A100030D1481EDFF86C800022C0EB0010A946D0
:101A20004700A8F16A0800BF19F803505B1C02EBDD
:101A30004204DBB2002007EB440600BF25FA00F4A5
:101A400004F0010C3418E4B25A2C01D208F804C096
:101A5000401CC0B20628F1D3521CD2B2052AE3D3EF
:101A600001EBC10303EB0A02594402F808EC02201F
:101A700001F8010C40210348FEF7A6FBBDE8F09FEA
:101A8000050000209A000020184830B4AA210170F7
:101A9000552141700222164B002100BF01EBC10409
:101AA0001C44491C64788454521CC9B2D2B2032924
:101AB000F4D3002101EBC1041C44491CA4788454D4
:101AC000521CC9B2D2B20329F4D3084B0021AA3B5D
:101AD0005C5C8454521C491CC9B2D2B25A29F7D357
:101AE00030BC0A2301490348FFF718BEDA00002082
:101AF00005000020CC0100207047000010B5094C03
:101B000001200221207060702046FEF7E3FBA070E8
:101B1000000AE07021460422BDE810400A23024872
:101B2000FFF7FCBD8A00002084010020FEF786BE7E
:101B300030B58FB028216846FEF768FB14210AA84B
:101B4000FEF764FB01210804CDE900100024029493
:101B500002250491CDE907504FF4E0100990684642
:101B6000FEF7F4FF08B172B6FEE70F20CDE90A05D3
:101B70004FF48060CDE90C4002210AA80E94FEF7D4
:101B8000F7FE08B172B6FEE7FEF788FF0FB030BD72
:101B9000704700000148FFF7B2BA00003C01002086
:101BA000F0B50268194B1A4C1A4D4FF08047984215
:101BB00005D0B84203D0A04201D0A84203D122F000
:101BC00070064A683243984205D0B84203D0A0421A
:101BD00001D0A84203D122F44074CA6822434C6960
:101BE00022F08002224302608A68C2620A6882622E
:101BF000984201D109690163012141610169C90765
:101C000003D0016921F001010161F0BD002C014008
:101C1000000400400008004010B5846842EA032236
:101C200024F47F440A432243826010BD826822F07C
:101C300070020A4342F007018160704710B5036AE1
:101C4000046A24F001040462846924F0F00444EA84
:101C5000021423F00A020A438461026210BD10B527
:101C6000036A046A24F010040462846923F0A00368
:101C700024F4704444EA023243EA011182610162B1
:101C800010BD10B5406A0021C185C184FFF718FB63
:101C900010BD70B5446A2068406994F84110C0F3E3
:101CA000C0100025212904D118B1E584204600F098
:101CB0008EF82068406994F84210C0F38010222901
:101CC00004D118B1E585204600F05AF8606C40F068
:101CD000100060642046FFF7F3FA70BD10B50146AE
:101CE000406A096809684FF0000289062ED4C2854F
:101CF00001680C3151E8003F23F4807341E800345F
:101D0000002CF5D10168143151E8003F23F00103A4
:101D100041E80034002CF5D10168143151E8003F4E
:101D200023F0400341E80034002CF5D1202180F855
:101D30004210016B012909D101680C3151E8003FC3
:101D400023F0100341E80034002CF5D14263016B0D
:101D5000012902D0FFF7E0FC10BD818DFFF777FA73
:101D600010BD10B5406A01214163016B012902D009
:101D7000FFF7D3FC10BD818D4908FFF768FA10BD4D
:101D800001680C3151E8002F22F4907241E80023E1
:101D9000002BF5D10168143151E8002F22F0010227
:101DA00041E80023002BF5D1016B012909D101681D
:101DB0000C3151E8002F22F0100241E80023002BE3
:101DC000F5D1202180F8421000210163704701689D
:101DD0000C3151E8002F22F0C00241E80023002B13
:101DE000F5D1202180F84110704708B590F84210D5
:101DF000222901D0022008BD82684FF480539A4204
:101E000001D1016921B1816A9A421BD04AB10AE02D
:101E10000268816A5268C2F308020A80816A891CDA
:101E200008E0026972B10268526802F07F020A702B
:101E3000816A491C8162C18D491E0904090CC18552
:101E400003D01BE002685268F1E70168CA6822F01B
:101E50002002CA600168CA6822F48072CA60016800
:101E60004A6922F001024A61202180F842100021D3
:101E70004163026B012A03D0FFF74EFC002008BD2E
:101E8000016301680C3151E8002F22F0100241E893
:101E90000023002BF5D101680A68D20602D50A6832
:101EA00049680091818DFFF7D2F9E7E770B50446E4
:101EB00000680169E26821F4405111430161216920
:101EC000A0680843616908432168CA6841F20C634D
:101ED0009A430243CA6020684169A26921F44071B3
:101EE000114341611E492068884202D1FEF7ECFD92
:101EF00001E0FEF7D9FD00EBC00101EB00126068C4
:101F000064218000B2FBF0F3B3FBF1F36FF018062D
:101F10007343B2FBF0F5B2FBF0F605EB8305322319
:101F200003EB0515B5FBF1F5B6FBF1F605F0F00591
:101F300005EB0615B2FBF0F6B2FBF0F0B0FBF1F0EA
:101F40006FF01802504306EB800003EB0010B0FB6B
:101F5000F1F0216800F00F002844886070BD000097
:101F60000038014038B5816204468285002013465E
:101F70006064222284F84220E56B1B4AAA62E56B6A
:101F80001A4AEA62E56B1A4A2A63E26B50630A4610
:101F90002168E06B091DFEF71DFB206801684068A1
:101FA0000090206948B120680C3050E8001F41F4CF
:101FB000807140E80012002AF5D12068143050E802
:101FC000001F41F0010140E80012002AF5D120680D
:101FD000143050E8001F41F0400140E80012002A90
:101FE000F5D1002038BD0000DD1C0008631D00088D
:101FF000931C00082DE9F843984617460D46044601
:10200000089E24E0701C22D0FEF712FCA0EB080012
:10201000B0421AD8CEB12068C168490717D5802DC3
:1020200015D0402D13D00168C94309070FD40168AA
:102030000025406800902046FFF7A2FE082060645B
:1020400084F840500120BDE8F8830320FBE72068B6
:10205000006835EA000004D00020B842D2D0002049
:10206000F1E70120F9E700000148FFF72BB9000074
:10207000840100200148FFF725B90000CC010020B1
:102080000148FFF71FB9000014020020FEE709070E
:10209000090E002804DB00F1E02080F800147047EE
:1020A00000F00F0000F1E02080F8141D70470000E0
:1020B000FEF7CCFBFFF73CFDFFF7B8FBFFF7A0FBFB
:1020C000FFF73EFCFFF7EAFBFFF71EFCFFF754FCAF
:1020D000344C01254022257033493448FFF70EFB6C
:1020E00032480068C16841F01001C160304F04F10E
:1020F0000208EE1E2078082800D1257020780828D4
:10210000F8D2DFE800F00405151E2A38434CF1E749
:1021100098F800000128EDD0FFF7F0FC88F8005097
:10212000657018E0386806612148FEF735FFE1E781
:1021300098F800000128DDD0FFF7E0FC88F8005097
:1021400013E098F801000128D4D0FFF7D7FC88F8F5
:102150000150022018E0052208E098F8010001284B
:10216000C8D0FFF7CBFC88F801500A220E490F486F
:10217000FFF7C4FAD6E798F802000128BAD0FFF7B3
:10218000BDFC88F8025003206070E4E798F8020074
:102190000128AFD0FFF7B2FC88F80250E5E7FFF75F
:1021A00073FCBFE7000000209A000020840100209B
:1021B0003C010020010202030405060708090A0B7E
:1021C0000C0D0E0F101000000000000000000102B6
:1021D00003040607080900000000010203040000D0
:1021E0000022000800000020300000002801000844
:1021F0003022000830000020D00800004401000810
:1022000000000000000100000000000000000200CB
:1022100000000000000000030000000000000000BB
:1022200001000000100000000000000000127A0011
:04000005080000ED02
:00000001FF

View File

@ -3,11 +3,13 @@
"pressuresensorboardmaster\main.o"
"pressuresensorboardmaster\gpio.o"
"pressuresensorboardmaster\dma.o"
"pressuresensorboardmaster\tim.o"
"pressuresensorboardmaster\usart.o"
"pressuresensorboardmaster\stm32f1xx_it.o"
"pressuresensorboardmaster\stm32f1xx_hal_msp.o"
"pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o"
"pressuresensorboardmaster\stm32f1xx_hal_uart.o"
"pressuresensorboardmaster\stm32f1xx_hal_tim.o"
"pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o"
"pressuresensorboardmaster\stm32f1xx_hal.o"
"pressuresensorboardmaster\stm32f1xx_hal_rcc.o"
"pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o"
@ -18,6 +20,7 @@
"pressuresensorboardmaster\stm32f1xx_hal_flash.o"
"pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o"
"pressuresensorboardmaster\stm32f1xx_hal_exti.o"
"pressuresensorboardmaster\stm32f1xx_hal_uart.o"
"pressuresensorboardmaster\system_stm32f1xx.o"
--strict --scatter "PressureSensorBoardMaster\PressureSensorBoardMaster.sct"
--summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols

View File

@ -0,0 +1,16 @@
; *************************************************************
; *** Scatter-Loading Description File generated by uVision ***
; *************************************************************
LR_IROM1 0x08000000 0x00010000 { ; load region size_region
ER_IROM1 0x08000000 0x00010000 { ; load address = execution address
*.o (RESET, +First)
*(InRoot$$Sections)
.ANY (+RO)
.ANY (+XO)
}
RW_IRAM1 0x20000000 0x00005000 { ; RW data
.ANY (+RW +ZI)
}
}

View File

@ -8,14 +8,14 @@ pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\dma.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\dma.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\dma.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\dma.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\dma.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -26,4 +26,6 @@ pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -8,14 +8,14 @@ pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\gpio.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\gpio.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\gpio.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\gpio.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\gpio.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -26,4 +26,6 @@ pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -7,14 +7,14 @@ pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\main.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\main.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\main.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\main.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\main.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -25,8 +25,12 @@ pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\main.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h
pressuresensorboardmaster\main.o: ../Core/Inc/dma.h
pressuresensorboardmaster\main.o: ../Core/Inc/tim.h
pressuresensorboardmaster\main.o: ../Core/Inc/usart.h
pressuresensorboardmaster\main.o: ../Core/Inc/gpio.h
pressuresensorboardmaster\main.o: C:\keil\ARM\ARMCC\Bin\..\include\string.h
pressuresensorboardmaster\main.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h
pressuresensorboardmaster\main.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\string.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/s
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/s
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Drive
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Drive
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_cortex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_dma.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_exti.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_flash.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Dri
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Dri
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_flash_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_gpio.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driv
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driv
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_gpio_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -7,14 +7,14 @@ pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -25,4 +25,6 @@ pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_msp.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_pwr.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/I
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_rcc.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Drive
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Drive
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_rcc_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -0,0 +1,29 @@
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Core/Inc/stm32f1xx_hal_conf.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -0,0 +1,29 @@
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Core/Inc/stm32f1xx_hal_conf.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_tim_ex.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -6,14 +6,14 @@ pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_hal_uart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -7,14 +7,14 @@ pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/st
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\stm32f1xx_it.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_it.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\stm32f1xx_it.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_it.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -25,5 +25,7 @@ pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/st
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h
pressuresensorboardmaster\stm32f1xx_it.o: ../Core/Inc/stm32f1xx_it.h

View File

@ -2,7 +2,7 @@ pressuresensorboardmaster\system_stm32f1xx.o: ../Core/Src/system_stm32f1xx.c
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\system_stm32f1xx.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\system_stm32f1xx.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
@ -13,7 +13,7 @@ pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/In
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\system_stm32f1xx.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\system_stm32f1xx.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -24,4 +24,6 @@ pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/In
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\system_stm32f1xx.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -0,0 +1,31 @@
pressuresensorboardmaster\tim.o: ../Core/Src/tim.c
pressuresensorboardmaster\tim.o: ../Core/Inc/tim.h
pressuresensorboardmaster\tim.o: ../Core/Inc/main.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\tim.o: ../Core/Inc/stm32f1xx_hal_conf.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_def.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\tim.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\tim.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\tim.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_exti.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_dma_ex.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_cortex.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\tim.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -8,14 +8,14 @@ pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f1xx.h
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/stm32f103xb.h
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Include/core_cm3.h
pressuresensorboardmaster\usart.o: C:\keil\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\usart.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Include/cmsis_version.h
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
pressuresensorboardmaster\usart.o: ../Drivers/CMSIS/Device/ST/STM32F1xx/Include/system_stm32f1xx.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h
pressuresensorboardmaster\usart.o: C:\keil\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\usart.o: C:\app\Keil_v5\ARM\ARMCC\Bin\..\include\stddef.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_rcc_ex.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_gpio_ex.h
@ -26,4 +26,6 @@ pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_flash_ex.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_pwr.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_tim_ex.h
pressuresensorboardmaster\usart.o: ../Drivers/STM32F1xx_HAL_Driver/Inc/stm32f1xx_hal_uart.h

View File

@ -1,6 +1,6 @@
/*
* UVISION generated file: DO NOT EDIT!
* Generated by: uVision version 5.43.1.0
* Generated by: uVision version 5.41.0.0
*
* Project: 'PressureSensorBoardMaster'
* Target: 'PressureSensorBoardMaster'

View File

@ -473,10 +473,11 @@ ARM Macro Assembler Page 8
00000000
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M3 --apcs=interw
ork --depend=pressuresensorboardmaster\startup_stm32f103xb.d -opressuresensorbo
ardmaster\startup_stm32f103xb.o -I.\RTE\_PressureSensorBoardMaster -IC:\keil\AR
M\CMSIS\6.2.0\CMSIS\Core\Include -IC:\keil\Keil\STM32F1xx_DFP\2.4.1\Device\Incl
ude --predefine="__UVISION_VERSION SETA 543" --predefine="STM32F10X_MD SETA 1"
--predefine="_RTE_ SETA 1" --list=startup_stm32f103xb.lst startup_stm32f103xb.s
ardmaster\startup_stm32f103xb.o -I.\RTE\_PressureSensorBoardMaster -IC:\app\Kei
l_v5\ARM\Packs\ARM\CMSIS\6.1.0\CMSIS\Core\Include -IC:\app\Keil_v5\ARM\Packs\Ke
il\STM32F1xx_DFP\2.4.1\Device\Include --predefine="__UVISION_VERSION SETA 541"
--predefine="STM32F10X_MD SETA 1" --predefine="_RTE_ SETA 1" --list=startup_stm
32f103xb.lst startup_stm32f103xb.s

View File

@ -8,7 +8,7 @@ Dma.USART1_RX.0.Direction=DMA_PERIPH_TO_MEMORY
Dma.USART1_RX.0.Instance=DMA1_Channel5
Dma.USART1_RX.0.MemDataAlignment=DMA_MDATAALIGN_BYTE
Dma.USART1_RX.0.MemInc=DMA_MINC_ENABLE
Dma.USART1_RX.0.Mode=DMA_CIRCULAR
Dma.USART1_RX.0.Mode=DMA_NORMAL
Dma.USART1_RX.0.PeriphDataAlignment=DMA_PDATAALIGN_BYTE
Dma.USART1_RX.0.PeriphInc=DMA_PINC_DISABLE
Dma.USART1_RX.0.Priority=DMA_PRIORITY_VERY_HIGH
@ -22,10 +22,11 @@ Mcu.IP0=DMA
Mcu.IP1=NVIC
Mcu.IP2=RCC
Mcu.IP3=SYS
Mcu.IP4=USART1
Mcu.IP5=USART2
Mcu.IP6=USART3
Mcu.IPNb=7
Mcu.IP4=TIM3
Mcu.IP5=USART1
Mcu.IP6=USART2
Mcu.IP7=USART3
Mcu.IPNb=8
Mcu.Name=STM32F103C(8-B)Tx
Mcu.Package=LQFP48
Mcu.Pin0=PD0-OSC_IN
@ -35,6 +36,7 @@ Mcu.Pin11=PB5
Mcu.Pin12=PB6
Mcu.Pin13=PB7
Mcu.Pin14=VP_SYS_VS_Systick
Mcu.Pin15=VP_TIM3_VS_ClockSourceINT
Mcu.Pin2=PA2
Mcu.Pin3=PA3
Mcu.Pin4=PB10
@ -43,14 +45,14 @@ Mcu.Pin6=PA9
Mcu.Pin7=PA10
Mcu.Pin8=PA13
Mcu.Pin9=PA14
Mcu.PinsNb=15
Mcu.PinsNb=16
Mcu.ThirdPartyNb=0
Mcu.UserConstants=
Mcu.UserName=STM32F103C8Tx
MxCube.Version=6.15.0
MxDb.Version=DB.6.0.150
NVIC.BusFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false
NVIC.DMA1_Channel5_IRQn=true\:1\:0\:true\:false\:true\:false\:true\:true
NVIC.DMA1_Channel5_IRQn=true\:0\:0\:false\:false\:true\:false\:true\:true
NVIC.DebugMonitor_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false
NVIC.ForceEnableDMAVector=true
NVIC.HardFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false
@ -60,7 +62,10 @@ NVIC.PendSV_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false
NVIC.PriorityGroup=NVIC_PRIORITYGROUP_4
NVIC.SVCall_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false
NVIC.SysTick_IRQn=true\:15\:0\:false\:false\:true\:false\:true\:false
NVIC.TIM3_IRQn=true\:0\:0\:false\:false\:true\:true\:true\:true
NVIC.USART1_IRQn=true\:0\:0\:false\:false\:true\:true\:true\:true
NVIC.USART2_IRQn=true\:0\:0\:false\:false\:true\:true\:true\:true
NVIC.USART3_IRQn=true\:0\:0\:false\:false\:true\:true\:true\:true
NVIC.UsageFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false
PA10.Mode=Asynchronous
PA10.Signal=USART1_RX
@ -130,7 +135,7 @@ ProjectManager.ToolChainLocation=
ProjectManager.UAScriptAfterPath=
ProjectManager.UAScriptBeforePath=
ProjectManager.UnderRoot=false
ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-HAL-false,2-MX_GPIO_Init-GPIO-false-HAL-true,3-MX_DMA_Init-DMA-false-HAL-true,4-MX_USART2_UART_Init-USART2-false-HAL-true,5-MX_USART1_UART_Init-USART1-false-HAL-true,6-MX_USART3_UART_Init-USART3-false-HAL-true
ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-HAL-false,2-MX_GPIO_Init-GPIO-false-HAL-true,3-MX_DMA_Init-DMA-false-HAL-true,4-MX_USART2_UART_Init-USART2-false-HAL-true,5-MX_TIM3_Init-TIM3-false-HAL-true,6-MX_USART1_UART_Init-USART1-false-HAL-true,7-MX_USART3_UART_Init-USART3-false-HAL-true
RCC.ADCFreqValue=36000000
RCC.AHBFreq_Value=72000000
RCC.APB1CLKDivider=RCC_HCLK_DIV2
@ -153,6 +158,10 @@ RCC.SYSCLKSource=RCC_SYSCLKSOURCE_PLLCLK
RCC.TimSysFreq_Value=72000000
RCC.USBFreq_Value=72000000
RCC.VCOOutput2Freq_Value=8000000
TIM3.AutoReloadPreload=TIM_AUTORELOAD_PRELOAD_ENABLE
TIM3.IPParameters=Prescaler,Period,AutoReloadPreload
TIM3.Period=4999
TIM3.Prescaler=7199
USART1.BaudRate=9600
USART1.IPParameters=VirtualMode,BaudRate
USART1.VirtualMode=VM_ASYNC
@ -164,4 +173,6 @@ USART3.IPParameters=VirtualMode,BaudRate
USART3.VirtualMode=VM_ASYNC
VP_SYS_VS_Systick.Mode=SysTick
VP_SYS_VS_Systick.Signal=SYS_VS_Systick
VP_TIM3_VS_ClockSourceINT.Mode=Internal
VP_TIM3_VS_ClockSourceINT.Signal=TIM3_VS_ClockSourceINT
board=custom

File diff suppressed because one or more lines are too long