|
@@ -90,8 +90,6 @@ static volatile uint8_t dispWDT = 0;
|
|
|
/* USER CODE END PV */
|
|
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
-static void MX_GPIO_Init(void);
|
|
|
-static void MX_DMA_Init(void);
|
|
|
static void MX_I2C1_Init(void);
|
|
|
static void MX_SPI1_Init(void);
|
|
|
/* USER CODE BEGIN PFP */
|
|
@@ -118,8 +116,6 @@ int main(void)
|
|
|
Board_Init();
|
|
|
|
|
|
/* Initialize all configured peripherals */
|
|
|
- MX_GPIO_Init();
|
|
|
- MX_DMA_Init();
|
|
|
MX_I2C1_Init();
|
|
|
MX_SPI1_Init();
|
|
|
/* USER CODE BEGIN 2 */
|
|
@@ -440,170 +436,6 @@ static void MX_SPI1_Init(void)
|
|
|
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * Enable DMA controller clock
|
|
|
- */
|
|
|
-static void MX_DMA_Init(void)
|
|
|
-{
|
|
|
-
|
|
|
- /* Init with LL driver */
|
|
|
- /* DMA controller clock enable */
|
|
|
- LL_AHB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_DMA1);
|
|
|
-
|
|
|
- /* DMA interrupt init */
|
|
|
- /* DMA1_Channel1_IRQn interrupt configuration */
|
|
|
- NVIC_SetPriority(DMA1_Channel1_IRQn, 0);
|
|
|
- NVIC_EnableIRQ(DMA1_Channel1_IRQn);
|
|
|
- /* DMA1_Channel2_3_IRQn interrupt configuration */
|
|
|
- NVIC_SetPriority(DMA1_Channel2_3_IRQn, 0);
|
|
|
- NVIC_EnableIRQ(DMA1_Channel2_3_IRQn);
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * @brief GPIO Initialization Function
|
|
|
- * @param None
|
|
|
- * @retval None
|
|
|
- */
|
|
|
-static void MX_GPIO_Init(void)
|
|
|
-{
|
|
|
- LL_EXTI_InitTypeDef EXTI_InitStruct = {0};
|
|
|
- LL_GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
|
-
|
|
|
- /* GPIO Ports Clock Enable */
|
|
|
- LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOB);
|
|
|
- LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOC);
|
|
|
- LL_IOP_GRP1_EnableClock(LL_IOP_GRP1_PERIPH_GPIOA);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(UART_EN_GPIO_Port, UART_EN_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(LC0_GPIO_Port, LC0_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(LC1_GPIO_Port, LC1_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(LC2_GPIO_Port, LC2_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(LC3_GPIO_Port, LC3_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(SHDN_GPIO_Port, SHDN_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_ResetOutputPin(Latch_GPIO_Port, Latch_Pin);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_EXTI_SetEXTISource(LL_EXTI_CONFIG_PORTC, LL_EXTI_CONFIG_LINE14);
|
|
|
-
|
|
|
- /**/
|
|
|
- EXTI_InitStruct.Line_0_31 = LL_EXTI_LINE_14;
|
|
|
- EXTI_InitStruct.LineCommand = ENABLE;
|
|
|
- EXTI_InitStruct.Mode = LL_EXTI_MODE_IT;
|
|
|
- EXTI_InitStruct.Trigger = LL_EXTI_TRIGGER_RISING;
|
|
|
- LL_EXTI_Init(&EXTI_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_SetPinPull(IRQ_GPIO_Port, IRQ_Pin, LL_GPIO_PULL_UP);
|
|
|
-
|
|
|
- /**/
|
|
|
- LL_GPIO_SetPinMode(IRQ_GPIO_Port, IRQ_Pin, LL_GPIO_MODE_INPUT);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = UART_EN_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_NO;
|
|
|
- LL_GPIO_Init(UART_EN_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = LC0_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_DOWN;
|
|
|
- LL_GPIO_Init(LC0_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = LC1_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_DOWN;
|
|
|
- LL_GPIO_Init(LC1_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = LC2_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_DOWN;
|
|
|
- LL_GPIO_Init(LC2_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = LC3_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_DOWN;
|
|
|
- LL_GPIO_Init(LC3_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = SHDN_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_PUSHPULL;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_DOWN;
|
|
|
- LL_GPIO_Init(SHDN_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = BTN4_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_INPUT;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_UP;
|
|
|
- LL_GPIO_Init(BTN4_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = BTN1_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_INPUT;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_UP;
|
|
|
- LL_GPIO_Init(BTN1_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = Latch_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_OUTPUT;
|
|
|
- GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_HIGH;
|
|
|
- GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_OPENDRAIN;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_NO;
|
|
|
- LL_GPIO_Init(Latch_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = BTN2_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_INPUT;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_UP;
|
|
|
- LL_GPIO_Init(BTN2_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = UART_ST_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_INPUT;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_UP;
|
|
|
- LL_GPIO_Init(UART_ST_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /**/
|
|
|
- GPIO_InitStruct.Pin = BTN3_Pin;
|
|
|
- GPIO_InitStruct.Mode = LL_GPIO_MODE_INPUT;
|
|
|
- GPIO_InitStruct.Pull = LL_GPIO_PULL_UP;
|
|
|
- LL_GPIO_Init(BTN3_GPIO_Port, &GPIO_InitStruct);
|
|
|
-
|
|
|
- /* EXTI interrupt init*/
|
|
|
- NVIC_SetPriority(EXTI4_15_IRQn, 0);
|
|
|
- NVIC_EnableIRQ(EXTI4_15_IRQn);
|
|
|
-
|
|
|
-}
|
|
|
-
|
|
|
/* USER CODE BEGIN 4 */
|
|
|
/*************************
|
|
|
* S U B R O U T I N E S *
|