2026-04-18 14:37:49 +00:00
|
|
|
/* USER CODE BEGIN Header */
|
|
|
|
|
/**
|
|
|
|
|
******************************************************************************
|
|
|
|
|
* @file : main.c
|
|
|
|
|
* @brief : Main program body
|
|
|
|
|
******************************************************************************
|
|
|
|
|
* @attention
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2026 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 "main.h"
|
|
|
|
|
|
|
|
|
|
/* Private includes ----------------------------------------------------------*/
|
|
|
|
|
/* USER CODE BEGIN Includes */
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "mqtt.h"
|
|
|
|
|
#include "esp_at.h"
|
|
|
|
|
#include "wifi_portal.h"
|
|
|
|
|
/* USER CODE END Includes */
|
|
|
|
|
|
|
|
|
|
/* Private typedef -----------------------------------------------------------*/
|
|
|
|
|
/* USER CODE BEGIN PTD */
|
|
|
|
|
#define ESP_EN_Pin GPIO_PIN_10
|
|
|
|
|
#define ESP_EN_GPIO_Port GPIOA
|
|
|
|
|
#define ESP_RX_BUF_SIZE 512
|
|
|
|
|
|
|
|
|
|
UART_HandleTypeDef huart1; // ESP
|
|
|
|
|
UART_HandleTypeDef huart3; // debug
|
|
|
|
|
|
2026-04-18 16:06:03 +00:00
|
|
|
uint8_t esp_rx_byte;
|
2026-04-18 14:37:49 +00:00
|
|
|
|
|
|
|
|
void SystemClock_Config(void);
|
|
|
|
|
static void MX_GPIO_Init(void);
|
|
|
|
|
static void MX_USART1_UART_Init(void);
|
|
|
|
|
static void MX_USART3_UART_Init(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
volatile int esp_rx_idx;
|
|
|
|
|
|
|
|
|
|
/* USER CODE END PTD */
|
|
|
|
|
|
|
|
|
|
/* Private define ------------------------------------------------------------*/
|
|
|
|
|
/* USER CODE BEGIN PD */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END PD */
|
|
|
|
|
|
|
|
|
|
/* Private macro -------------------------------------------------------------*/
|
|
|
|
|
/* USER CODE BEGIN PM */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END PM */
|
|
|
|
|
|
|
|
|
|
/* Private variables ---------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
TIM_HandleTypeDef htim1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN PV */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END PV */
|
|
|
|
|
|
|
|
|
|
/* Private function prototypes -----------------------------------------------*/
|
|
|
|
|
void SystemClock_Config(void);
|
|
|
|
|
static void MPU_Config(void);
|
|
|
|
|
static void MX_GPIO_Init(void);
|
|
|
|
|
static void MX_ICACHE_Init(void);
|
|
|
|
|
static void MX_TIM1_Init(void);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char esp_rx_buf[ESP_RX_BUF_SIZE];
|
|
|
|
|
volatile int esp_rx_idx = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN PFP */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END PFP */
|
|
|
|
|
|
|
|
|
|
/* Private user code ---------------------------------------------------------*/
|
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
|
volatile uint8_t http_request_flag = 0;
|
|
|
|
|
volatile int http_link_id = -1;
|
|
|
|
|
|
2026-04-18 16:06:03 +00:00
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 👇 METE AQUI
|
|
|
|
|
static int parse_link_id(const char *buf)
|
|
|
|
|
{
|
|
|
|
|
char *p = strstr(buf, "+IPD,");
|
|
|
|
|
if (!p) return -1;
|
|
|
|
|
|
|
|
|
|
int id = -1;
|
|
|
|
|
sscanf(p, "+IPD,%d,", &id);
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-18 14:37:49 +00:00
|
|
|
void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart)
|
|
|
|
|
{
|
|
|
|
|
if (huart->Instance == USART1)
|
|
|
|
|
{
|
2026-04-18 16:06:03 +00:00
|
|
|
ESP_RxByte(esp_rx_byte);
|
2026-04-18 14:37:49 +00:00
|
|
|
|
|
|
|
|
HAL_UART_Receive_IT(&huart1, &esp_rx_byte, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void Portal_SendHello(int link_id)
|
|
|
|
|
{
|
2026-04-18 16:06:03 +00:00
|
|
|
char cmd[64];
|
2026-04-18 14:37:49 +00:00
|
|
|
|
|
|
|
|
const char *resp =
|
2026-04-18 16:06:03 +00:00
|
|
|
"HTTP/1.1 200 OK\r\n"
|
|
|
|
|
"Content-Type: text/html\r\n"
|
|
|
|
|
"Connection: close\r\n"
|
|
|
|
|
"\r\n"
|
|
|
|
|
"<html>"
|
|
|
|
|
"<head><title>WiFi Setup</title></head>"
|
|
|
|
|
"<body>"
|
|
|
|
|
"<h2>Configurar WiFi</h2>"
|
|
|
|
|
"<form action=\"/save\">"
|
|
|
|
|
"SSID:<br><input name=\"s\"><br>"
|
|
|
|
|
"PASS:<br><input name=\"p\" type=\"password\"><br><br>"
|
|
|
|
|
"<input type=\"submit\" value=\"Guardar\">"
|
|
|
|
|
"</form>"
|
|
|
|
|
"</body>"
|
|
|
|
|
"</html>";
|
2026-04-18 14:37:49 +00:00
|
|
|
|
|
|
|
|
int len = strlen(resp);
|
|
|
|
|
|
|
|
|
|
ESP_ClearBuffer();
|
|
|
|
|
esp_rx_idx = 0;
|
|
|
|
|
|
|
|
|
|
snprintf(cmd, sizeof(cmd), "AT+CIPSEND=%d,%d\r\n", link_id, len);
|
|
|
|
|
ESP_SendData(cmd);
|
|
|
|
|
|
|
|
|
|
uint32_t t0 = HAL_GetTick();
|
2026-04-18 16:06:03 +00:00
|
|
|
while ((HAL_GetTick() - t0) < 3000)
|
2026-04-18 14:37:49 +00:00
|
|
|
{
|
|
|
|
|
if (strstr(esp_rx_buf, ">"))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (strstr(esp_rx_buf, "ERROR"))
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-18 16:06:03 +00:00
|
|
|
ESP_ClearBuffer();
|
|
|
|
|
esp_rx_idx = 0;
|
|
|
|
|
|
2026-04-18 14:37:49 +00:00
|
|
|
ESP_SendData(resp);
|
|
|
|
|
|
|
|
|
|
t0 = HAL_GetTick();
|
2026-04-18 16:06:03 +00:00
|
|
|
while ((HAL_GetTick() - t0) < 5000)
|
2026-04-18 14:37:49 +00:00
|
|
|
{
|
|
|
|
|
if (strstr(esp_rx_buf, "SEND OK"))
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (strstr(esp_rx_buf, "ERROR"))
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
snprintf(cmd, sizeof(cmd), "AT+CIPCLOSE=%d\r\n", link_id);
|
|
|
|
|
ESP_SendData(cmd);
|
|
|
|
|
|
2026-04-18 16:06:03 +00:00
|
|
|
HAL_Delay(100);
|
|
|
|
|
|
2026-04-18 14:37:49 +00:00
|
|
|
ESP_ClearBuffer();
|
|
|
|
|
esp_rx_idx = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* USER CODE END 0 */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief The application entry point.
|
|
|
|
|
* @retval int
|
|
|
|
|
*/
|
|
|
|
|
int main(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
|
|
|
|
|
|
/* MCU Configuration--------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
/* MPU Configuration--------------------------------------------------------*/
|
|
|
|
|
MPU_Config();
|
|
|
|
|
|
|
|
|
|
/* Reset of all peripherals, Initializes the Flash interface and the Systick. */
|
|
|
|
|
HAL_Init();
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN Init */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END Init */
|
|
|
|
|
|
|
|
|
|
/* Configure the system clock */
|
|
|
|
|
SystemClock_Config();
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN SysInit */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END SysInit */
|
|
|
|
|
|
|
|
|
|
/* Initialize all configured peripherals */
|
|
|
|
|
MX_GPIO_Init();
|
|
|
|
|
MX_ICACHE_Init();
|
|
|
|
|
MX_TIM1_Init();
|
|
|
|
|
MX_USART1_UART_Init();
|
|
|
|
|
MX_USART3_UART_Init();
|
|
|
|
|
|
|
|
|
|
//HAL_GPIO_WritePin(GPIOA, GPIO_PIN_10, GPIO_PIN_SET);
|
|
|
|
|
//HAL_Delay(1500);
|
|
|
|
|
|
|
|
|
|
HAL_UART_Receive_IT(&huart1, &esp_rx_byte, 1);ESP_SendCmd("AT+RST", "ready", 5000);
|
|
|
|
|
HAL_Delay(2000);
|
|
|
|
|
|
|
|
|
|
WIFI_PORTAL_Init();
|
|
|
|
|
ESP_Init();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Infinite loop */
|
|
|
|
|
/* USER CODE BEGIN WHILE */
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
2026-04-18 16:06:03 +00:00
|
|
|
ESP_Task(); // só tratar RX + parser HTTP
|
2026-04-18 14:37:49 +00:00
|
|
|
|
|
|
|
|
HAL_Delay(1);
|
|
|
|
|
}
|
|
|
|
|
/* USER CODE END 3 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief System Clock Configuration
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
void SystemClock_Config(void)
|
|
|
|
|
{
|
|
|
|
|
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
|
|
|
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
|
|
|
|
|
|
|
|
|
/** Configure the main internal regulator output voltage
|
|
|
|
|
*/
|
|
|
|
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE3);
|
|
|
|
|
|
|
|
|
|
while(!__HAL_PWR_GET_FLAG(PWR_FLAG_VOSRDY)) {}
|
|
|
|
|
|
|
|
|
|
/** Initializes the RCC Oscillators according to the specified parameters
|
|
|
|
|
* in the RCC_OscInitTypeDef structure.
|
|
|
|
|
*/
|
|
|
|
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI;
|
|
|
|
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
|
|
|
|
RCC_OscInitStruct.HSIDiv = RCC_HSI_DIV2;
|
|
|
|
|
RCC_OscInitStruct.HSICalibrationValue = RCC_HSICALIBRATION_DEFAULT;
|
|
|
|
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
|
|
|
|
|
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Initializes the CPU, AHB and APB buses clocks
|
|
|
|
|
*/
|
|
|
|
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
|
|
|
|
|
|RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2
|
|
|
|
|
|RCC_CLOCKTYPE_PCLK3;
|
|
|
|
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_HSI;
|
|
|
|
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
|
|
|
|
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
|
|
|
|
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
|
|
|
|
|
RCC_ClkInitStruct.APB3CLKDivider = RCC_HCLK_DIV1;
|
|
|
|
|
|
|
|
|
|
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_1) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Configure the programming delay
|
|
|
|
|
*/
|
|
|
|
|
__HAL_FLASH_SET_PROGRAM_DELAY(FLASH_PROGRAMMING_DELAY_0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief ICACHE Initialization Function
|
|
|
|
|
* @param None
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
static void MX_ICACHE_Init(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN ICACHE_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END ICACHE_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN ICACHE_Init 1 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END ICACHE_Init 1 */
|
|
|
|
|
|
|
|
|
|
/** Enable instruction cache in 1-way (direct mapped cache)
|
|
|
|
|
*/
|
|
|
|
|
if (HAL_ICACHE_ConfigAssociativityMode(ICACHE_1WAY) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_ICACHE_Enable() != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
/* USER CODE BEGIN ICACHE_Init 2 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END ICACHE_Init 2 */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief TIM1 Initialization Function
|
|
|
|
|
* @param None
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
static void MX_TIM1_Init(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN TIM1_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END TIM1_Init 0 */
|
|
|
|
|
|
|
|
|
|
TIM_ClockConfigTypeDef sClockSourceConfig = {0};
|
|
|
|
|
TIM_MasterConfigTypeDef sMasterConfig = {0};
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN TIM1_Init 1 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END TIM1_Init 1 */
|
|
|
|
|
htim1.Instance = TIM1;
|
|
|
|
|
htim1.Init.Prescaler = 0;
|
|
|
|
|
htim1.Init.CounterMode = TIM_COUNTERMODE_UP;
|
|
|
|
|
htim1.Init.Period = 65535;
|
|
|
|
|
htim1.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
|
|
|
|
|
htim1.Init.RepetitionCounter = 0;
|
|
|
|
|
htim1.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
|
|
|
|
|
if (HAL_TIM_Base_Init(&htim1) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL;
|
|
|
|
|
if (HAL_TIM_ConfigClockSource(&htim1, &sClockSourceConfig) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET;
|
|
|
|
|
sMasterConfig.MasterOutputTrigger2 = TIM_TRGO2_RESET;
|
|
|
|
|
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE;
|
|
|
|
|
if (HAL_TIMEx_MasterConfigSynchronization(&htim1, &sMasterConfig) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
/* USER CODE BEGIN TIM1_Init 2 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END TIM1_Init 2 */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief USART1 Initialization Function
|
|
|
|
|
* @param None
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
static void MX_USART1_UART_Init(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN USART1_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END USART1_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN USART1_Init 1 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END USART1_Init 1 */
|
|
|
|
|
huart1.Instance = USART1;
|
|
|
|
|
huart1.Init.BaudRate = 115200;
|
|
|
|
|
huart1.Init.WordLength = UART_WORDLENGTH_8B;
|
|
|
|
|
huart1.Init.StopBits = UART_STOPBITS_1;
|
|
|
|
|
huart1.Init.Parity = UART_PARITY_NONE;
|
|
|
|
|
huart1.Init.Mode = UART_MODE_TX_RX;
|
|
|
|
|
huart1.Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
|
|
|
|
huart1.Init.OverSampling = UART_OVERSAMPLING_16;
|
|
|
|
|
huart1.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
|
|
|
|
|
huart1.Init.ClockPrescaler = UART_PRESCALER_DIV1;
|
|
|
|
|
huart1.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
|
|
|
|
|
if (HAL_UART_Init(&huart1) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_UARTEx_SetTxFifoThreshold(&huart1, UART_TXFIFO_THRESHOLD_1_8) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_UARTEx_SetRxFifoThreshold(&huart1, UART_RXFIFO_THRESHOLD_1_8) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_UARTEx_DisableFifoMode(&huart1) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
/* USER CODE BEGIN USART1_Init 2 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END USART1_Init 2 */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief USART3 Initialization Function
|
|
|
|
|
* @param None
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
static void MX_USART3_UART_Init(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN USART3_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END USART3_Init 0 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN USART3_Init 1 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END USART3_Init 1 */
|
|
|
|
|
huart3.Instance = USART3;
|
|
|
|
|
huart3.Init.BaudRate = 115200;
|
|
|
|
|
huart3.Init.WordLength = UART_WORDLENGTH_8B;
|
|
|
|
|
huart3.Init.StopBits = UART_STOPBITS_1;
|
|
|
|
|
huart3.Init.Parity = UART_PARITY_NONE;
|
|
|
|
|
huart3.Init.Mode = UART_MODE_TX_RX;
|
|
|
|
|
huart3.Init.HwFlowCtl = UART_HWCONTROL_NONE;
|
|
|
|
|
huart3.Init.OverSampling = UART_OVERSAMPLING_16;
|
|
|
|
|
huart3.Init.OneBitSampling = UART_ONE_BIT_SAMPLE_DISABLE;
|
|
|
|
|
huart3.Init.ClockPrescaler = UART_PRESCALER_DIV1;
|
|
|
|
|
huart3.AdvancedInit.AdvFeatureInit = UART_ADVFEATURE_NO_INIT;
|
|
|
|
|
if (HAL_UART_Init(&huart3) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_UARTEx_SetTxFifoThreshold(&huart3, UART_TXFIFO_THRESHOLD_1_8) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_UARTEx_SetRxFifoThreshold(&huart3, UART_RXFIFO_THRESHOLD_1_8) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
if (HAL_UARTEx_DisableFifoMode(&huart3) != HAL_OK)
|
|
|
|
|
{
|
|
|
|
|
Error_Handler();
|
|
|
|
|
}
|
|
|
|
|
/* USER CODE BEGIN USART3_Init 2 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END USART3_Init 2 */
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief GPIO Initialization Function
|
|
|
|
|
* @param None
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
static void MX_GPIO_Init(void)
|
|
|
|
|
{
|
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
|
|
|
/* USER CODE BEGIN MX_GPIO_Init_1 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END MX_GPIO_Init_1 */
|
|
|
|
|
|
|
|
|
|
/* GPIO Ports Clock Enable */
|
|
|
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
|
|
|
__HAL_RCC_GPIOH_CLK_ENABLE();
|
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
|
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
|
|
|
|
|
|
|
|
/*Configure GPIO pin Output Level */
|
|
|
|
|
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_10, GPIO_PIN_RESET);
|
|
|
|
|
|
|
|
|
|
/*Configure GPIO pin Output Level */
|
|
|
|
|
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, GPIO_PIN_SET);
|
|
|
|
|
|
|
|
|
|
/*Configure GPIO pin : PA10 */
|
|
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_10;
|
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
|
|
|
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
|
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
|
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
|
|
|
|
|
|
/*Configure GPIO pin : PB3 */
|
|
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_3;
|
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
|
|
|
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
|
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
|
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN MX_GPIO_Init_2 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END MX_GPIO_Init_2 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* USER CODE BEGIN 4 */
|
|
|
|
|
|
|
|
|
|
/* USER CODE END 4 */
|
|
|
|
|
|
|
|
|
|
/* MPU Configuration */
|
|
|
|
|
|
|
|
|
|
void MPU_Config(void)
|
|
|
|
|
{
|
|
|
|
|
MPU_Region_InitTypeDef MPU_InitStruct = {0};
|
|
|
|
|
MPU_Attributes_InitTypeDef MPU_AttributesInit = {0};
|
|
|
|
|
|
|
|
|
|
/* Disables the MPU */
|
|
|
|
|
HAL_MPU_Disable();
|
|
|
|
|
|
|
|
|
|
/** Initializes and configures the Region 0 and the memory to be protected
|
|
|
|
|
*/
|
|
|
|
|
MPU_InitStruct.Enable = MPU_REGION_ENABLE;
|
|
|
|
|
MPU_InitStruct.Number = MPU_REGION_NUMBER0;
|
|
|
|
|
MPU_InitStruct.BaseAddress = 0x08FFF000;
|
|
|
|
|
MPU_InitStruct.LimitAddress = 0x08FFFFFF;
|
|
|
|
|
MPU_InitStruct.AttributesIndex = MPU_ATTRIBUTES_NUMBER0;
|
|
|
|
|
MPU_InitStruct.AccessPermission = MPU_REGION_ALL_RO;
|
|
|
|
|
MPU_InitStruct.DisableExec = MPU_INSTRUCTION_ACCESS_DISABLE;
|
|
|
|
|
MPU_InitStruct.IsShareable = MPU_ACCESS_NOT_SHAREABLE;
|
|
|
|
|
|
|
|
|
|
HAL_MPU_ConfigRegion(&MPU_InitStruct);
|
|
|
|
|
|
|
|
|
|
/** Initializes and configures the Attribute 0 and the memory to be protected
|
|
|
|
|
*/
|
|
|
|
|
MPU_AttributesInit.Number = MPU_ATTRIBUTES_NUMBER0;
|
|
|
|
|
MPU_AttributesInit.Attributes = INNER_OUTER(MPU_NOT_CACHEABLE);
|
|
|
|
|
|
|
|
|
|
HAL_MPU_ConfigMemoryAttributes(&MPU_AttributesInit);
|
|
|
|
|
/* Enables the MPU */
|
|
|
|
|
HAL_MPU_Enable(MPU_PRIVILEGED_DEFAULT);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief This function is executed in case of error occurrence.
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
void Error_Handler(void)
|
|
|
|
|
{
|
|
|
|
|
/* USER CODE BEGIN Error_Handler_Debug */
|
|
|
|
|
/* User can add his own implementation to report the HAL error return state */
|
|
|
|
|
__disable_irq();
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
/* USER CODE END Error_Handler_Debug */
|
|
|
|
|
}
|
|
|
|
|
#ifdef USE_FULL_ASSERT
|
|
|
|
|
/**
|
|
|
|
|
* @brief Reports the name of the source file and the source line number
|
|
|
|
|
* where the assert_param error has occurred.
|
|
|
|
|
* @param file: pointer to the source file name
|
|
|
|
|
* @param line: assert_param error line source number
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
|
|
|
|
void assert_failed(uint8_t *file, uint32_t line)
|
|
|
|
|
{
|
|
|
|
|
/* USER CODE BEGIN 6 */
|
|
|
|
|
/* User can add his own implementation to report the file name and line number,
|
|
|
|
|
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
|
|
|
|
|
/* USER CODE END 6 */
|
|
|
|
|
}
|
|
|
|
|
#endif /* USE_FULL_ASSERT */
|