| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * @file : main.c
- * @brief : Main program body
- ******************************************************************************
- * @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 "main.h"
- #include <time.h>
- #include <stdlib.h>
- #include "string.h"
- #include "E52.h"
- #include "E104-BT5005A.h"
- //上船测试版本
- /* Private includes ----------------------------------------------------------*/
- /* USER CODE BEGIN Includes */
- /* USER CODE END Includes */
- /* Private typedef -----------------------------------------------------------*/
- /* USER CODE BEGIN PTD */
- /* 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 ---------------------------------------------------------*/
- UART_HandleTypeDef huart1;
- UART_HandleTypeDef huart2;
- UART_HandleTypeDef huart3;
- DMA_HandleTypeDef hdma_usart2_rx;
- DMA_HandleTypeDef hdma_usart3_rx;
- /* USER CODE BEGIN PV */
- uint8_t rx_buf[100] = {0};
- uint8_t rx_buf_uart2[100] = {0};
- uint8_t totalData[120][50] = {0};
- uint8_t uart2_rx_byte[10] = {0};
- uint8_t loraSendNextDataFlag = 0;
- uint8_t baseRandomTimer = 3*60;
- uint8_t RandomTimer= 3*60;
- // uint8_t loraDataErrorCount = 0;
- uint8_t workMode = 0; // 0: 接收蓝牙数据 1: 使用lora发生数据 2:等待间隔时间
- uint8_t receiveBlDataCount = 0;
- uint8_t newLoraDataFlag = 0; //接收lora数据成功标志位。1:有新数据来。0.表示等待接收数据。后续可以改成队列类型。
- /* USER CODE END PV */
- /* Private function prototypes -----------------------------------------------*/
- void SystemClock_Config(void);
- static void MX_GPIO_Init(void);
- static void MX_DMA_Init(void);
- static void MX_USART1_UART_Init(void);
- static void MX_USART2_UART_Init(void);
- static void MX_USART3_UART_Init(void);
- /* USER CODE BEGIN PFP */
- /* USER CODE END PFP */
- /* Private user code ---------------------------------------------------------*/
- /* USER CODE BEGIN 0 */
- #include <stdio.h>
- // 重定向fputc函数到USART1
- // int _write(int file, char *ptr, int len)
- // {
- // HAL_UART_Transmit(&huart1, (uint8_t*)ptr, len, HAL_MAX_DELAY);
- // return len;
- // }
- //
- // int fputc(int ch, FILE *f)
- // {
- // uint8_t c = ch;
- // HAL_UART_Transmit(&huart1, &c, 1, HAL_MAX_DELAY);
- // return ch;
- // }
- int __io_putchar(int ch)
- {
- uint8_t c = ch;
- HAL_UART_Transmit(&huart1, &c, 1, HAL_MAX_DELAY);
- return ch;
- }
- void sentLoraData(uint8_t sendDataNum) {
- HAL_UART_Transmit(&huart2, totalData[sendDataNum], 8, HAL_MAX_DELAY);
- }
- uint16_t randomFun() {
- return rand() % RandomTimer + baseRandomTimer; //随机时间1分钟到3分钟之间随机数
- }
- // 进入睡眠模式
- void EnterSleepMode(void)
- {
- // 确保所有外设操作完成
- HAL_Delay(10);
- // 清除所有挂起的中断,防止立即唤醒
- // __HAL_IRQ_CLEAR_PENDING(EXTI0_IRQn);
- // 进入睡眠模式,任何中断都能唤醒
- HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON, PWR_SLEEPENTRY_WFI);
- // 或者使用WFE指令:HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON, PWR_SLEEPENTRY_WFE);
- }
- /* USER CODE END 0 */
- /**
- * @brief The application entry point.
- * @retval int
- */
- int main(void)
- {
- /* USER CODE BEGIN 1 */
- /* USER CODE END 1 */
- /* MCU Configuration--------------------------------------------------------*/
- /* 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_DMA_Init();
- MX_USART1_UART_Init();
- MX_USART2_UART_Init();
- // MX_USART3_UART_Init();
- /* USER CODE BEGIN 2 */
- // 启动 USART2 DMA 接收
- // HAL_UART_Receive_DMA(&huart3, rx_buf, sizeof(rx_buf));
- // // HAL_UART_Receive_IT(&huart2, uart2_rx_byte, 7);
- // // 使能 USART2 空闲中断
- // __HAL_UART_ENABLE_IT(&huart3, UART_IT_IDLE);
- HAL_UART_Receive_DMA(&huart2, rx_buf_uart2, sizeof(rx_buf));
- // HAL_UART_Receive_IT(&huart2, uart2_rx_byte, 7);
- // 使能 USART2 空闲中断
- __HAL_UART_ENABLE_IT(&huart2, UART_IT_IDLE);
- HAL_Delay(2000);
- // printf("开始初始化\r\n");
- // printf("切换为观察者模式\r\n");
- // E104_BT5005A_ROLE_Fun();
- // HAL_Delay(2000);
- // printf("初始化扫描间隔\r\n");
- // E104_BT5005A_SCANINTV_Fun();
- // HAL_Delay(2000);
- // printf("初始化扫描窗口\r\n");
- // E104_BT5005A_SCANWND_Fun();
- // HAL_Delay(2000);
- // printf("初始化复位\r\n");
- // E104_BT5005A_RESET_Fun();
- // HAL_Delay(2000);
- printf("开启Lora广播模块");
- const char *lora_msg = "AT+OPTION=3,0";
- HAL_UART_Transmit(&huart2, (uint8_t *)lora_msg, strlen(lora_msg), HAL_MAX_DELAY);
- HAL_Delay(2000);
- const char *lora_msg1 = "AT+TYPE=1";
- HAL_UART_Transmit(&huart2, (uint8_t *)lora_msg1, strlen(lora_msg1), HAL_MAX_DELAY);
- HAL_Delay(2000);
- const char *lora_msg2 = "AT+MAC=?";
- HAL_UART_Transmit(&huart2, (uint8_t *)lora_msg2, strlen(lora_msg2), HAL_MAX_DELAY);
- HAL_Delay(2000);
- const char *lora_msg3 = "AT+HEAD=0";
- HAL_UART_Transmit(&huart2, (uint8_t *)lora_msg3, strlen(lora_msg3), HAL_MAX_DELAY);
- HAL_Delay(2000);
- // MAC=0x0569a82a
- // uint16_t count = 0;
- // uint16_t randomTime = 0;
- srand(HAL_GetTick());
- /* USER CODE END 2 */
- /* Infinite loop */
- /* USER CODE BEGIN WHILE */
- while (1)
- {
- /* USER CODE END WHILE */
- /* USER CODE BEGIN 3 */
- // if (workMode == 0) { // 接收蓝牙数据
- // printf("接收中第%d秒,接受了%d位数据\r\n", count, receiveBlDataCount);
- // if (count > 30 || receiveBlDataCount >= 115) { //搜10秒数据
- // E104_BT5005A_SLEEP_Fun();
- // HAL_Delay(5);//等待蓝牙模块进入睡眠模式
- // // receiveBlDataCount = 0;
- // workMode = 1;
- // count = 0;
- // }else {
- // count++;
- // }
- // }else if (workMode == 1) { // 发送数据给Lora
- // if (count < receiveBlDataCount)
- // {
- // printf("发送第%d个数据,总数据大小为%d\r\n", count,receiveBlDataCount);
- // // 启动 USART2 DMA 接收
- // sentLoraData(count);
- // if (loraSendNextDataFlag == 0 || loraSendNextDataFlag > 3) {
- // memset(totalData[count], 0, sizeof(totalData[count]));
- // count++;
- // memset(rx_buf_uart2, 0, 100);
- // loraSendNextDataFlag = 0;
- // }else {
- // printf("send error!\r\n");
- // }
- // }else {
- // printf("发送结束,总数据大小为%d\r\n",receiveBlDataCount);
- // const char *end_msg = "SENDEND\r\n";
- // HAL_UART_Transmit(&huart2, (uint8_t *)end_msg, strlen(end_msg), HAL_MAX_DELAY);
- // receiveBlDataCount = 0;
- // workMode = 2;
- // count = 0;
- // }
- // }else if (workMode == 2) {
- // printf("等待进度:%d\r\n", count);
- // printf("等待时间%d秒\r\n",randomTime);
- // if (randomTime == 0) {
- // randomTime = randomFun();
- // }
- // if (count > randomTime) {
- // E104_BT5005A_WAKE_UP_Fun();
- // randomTime = 0;
- // workMode = 0;
- // count = 0;
- // }else {
- // count++;
- // }
- // }
- // if (workMode == 1) {
- // HAL_Delay(300);
- // }else {
- // HAL_Delay(1000);
- // }
- while (1) {
- // printf("Hello world:%d\r\n",i);
- // //睡眠测试 --
- // i++;
- // if (i == 15) {
- // HAL_SuspendTick(); // 停止 SysTick 中断
- // __WFI(); // 真正进入 Sleep
- // HAL_ResumeTick(); // 唤醒后恢复 SysTick
- // }
- // HAL_Delay(1000);
- // //睡眠测试 --
- // printf("Hello world:%d\r\n",newLoraDataFlag);
- if (newLoraDataFlag == 1) {
- E52_Analyze_Data();
- newLoraDataFlag = 0;//重置状态
- }
- // HAL_Delay(500);
- }
- }
- /* USER CODE END 3 */
- }
- /**
- * @brief System Clock Configuration
- * @retval None
- */
- void SystemClock_Config(void)
- {
- RCC_OscInitTypeDef RCC_OscInitStruct = {0};
- RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
- /** Initializes the RCC Oscillators according to the specified parameters
- * in the RCC_OscInitTypeDef structure.
- */
- RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
- RCC_OscInitStruct.HSEState = RCC_HSE_ON;
- RCC_OscInitStruct.HSEPredivValue = RCC_HSE_PREDIV_DIV1;
- RCC_OscInitStruct.HSIState = RCC_HSI_ON;
- RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
- RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
- RCC_OscInitStruct.PLL.PLLMUL = RCC_PLL_MUL9;
- 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_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
- RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV2;
- RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV1;
- RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV1;
- if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_2) != HAL_OK)
- {
- Error_Handler();
- }
- }
- /**
- * @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;
- if (HAL_UART_Init(&huart1) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN USART1_Init 2 */
- /* USER CODE END USART1_Init 2 */
- }
- /**
- * @brief USART2 Initialization Function
- * @param None
- * @retval None
- */
- static void MX_USART2_UART_Init(void)
- {
- /* USER CODE BEGIN USART2_Init 0 */
- /* USER CODE END USART2_Init 0 */
- /* USER CODE BEGIN USART2_Init 1 */
- /* USER CODE END USART2_Init 1 */
- huart2.Instance = USART2;
- huart2.Init.BaudRate = 115200;
- huart2.Init.WordLength = UART_WORDLENGTH_8B;
- huart2.Init.StopBits = UART_STOPBITS_1;
- huart2.Init.Parity = UART_PARITY_NONE;
- huart2.Init.Mode = UART_MODE_TX_RX;
- huart2.Init.HwFlowCtl = UART_HWCONTROL_NONE;
- huart2.Init.OverSampling = UART_OVERSAMPLING_16;
- if (HAL_UART_Init(&huart2) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN USART2_Init 2 */
- /* USER CODE END USART2_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;
- if (HAL_UART_Init(&huart3) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN USART3_Init 2 */
- /* USER CODE END USART3_Init 2 */
- }
- /**
- * Enable DMA controller clock
- */
- static void MX_DMA_Init(void)
- {
- /* DMA controller clock enable */
- __HAL_RCC_DMA1_CLK_ENABLE();
- /* DMA interrupt init */
- /* DMA1_Channel3_IRQn interrupt configuration */
- HAL_NVIC_SetPriority(DMA1_Channel3_IRQn, 0, 0);
- HAL_NVIC_EnableIRQ(DMA1_Channel3_IRQn);
- /* DMA1_Channel6_IRQn interrupt configuration */
- HAL_NVIC_SetPriority(DMA1_Channel6_IRQn, 0, 0);
- HAL_NVIC_EnableIRQ(DMA1_Channel6_IRQn);
- }
- /**
- * @brief GPIO Initialization Function
- * @param None
- * @retval None
- */
- static void MX_GPIO_Init(void)
- {
- /* USER CODE BEGIN MX_GPIO_Init_1 */
- /* USER CODE END MX_GPIO_Init_1 */
- /* GPIO Ports Clock Enable */
- __HAL_RCC_GPIOD_CLK_ENABLE();
- __HAL_RCC_GPIOA_CLK_ENABLE();
- __HAL_RCC_GPIOB_CLK_ENABLE();
- /* USER CODE BEGIN MX_GPIO_Init_2 */
- /* USER CODE END MX_GPIO_Init_2 */
- }
- /* USER CODE BEGIN 4 */
- // void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart)
- // {
- // // if (huart->Instance == USART2) // 判断是USART2
- // // {
- // // // 这里处理接收到的数据,例如打印出来
- // // // printf("USART2 Received: %s\r\n", uart2_rx_byte);
- // //
- // // // 继续接收下一个字节
- // // HAL_UART_Receive_IT(&huart2, uart2_rx_byte, 7);
- // // }
- // }
- /* USER CODE END 4 */
- /**
- * @brief Period elapsed callback in non blocking mode
- * @note This function is called when TIM3 interrupt took place, inside
- * HAL_TIM_IRQHandler(). It makes a direct call to HAL_IncTick() to increment
- * a global variable "uwTick" used as application time base.
- * @param htim : TIM handle
- * @retval None
- */
- void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
- {
- /* USER CODE BEGIN Callback 0 */
- /* USER CODE END Callback 0 */
- if (htim->Instance == TIM3)
- {
- HAL_IncTick();
- }
- /* USER CODE BEGIN Callback 1 */
- /* USER CODE END Callback 1 */
- }
- /**
- * @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 */
|