12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- ******************************************************************************
- * @file : modbus_deal.h
- * @brief : Header for modbus_deal.c file.
- * This file contains the common defines of the application.
- ******************************************************************************
- * @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.
- *
- ******************************************************************************
- */
- /* Define to prevent recursive inclusion -------------------------------------*/
- #ifndef __MODBUS_DEAL_H
- #define __MODBUS_DEAL_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Includes ------------------------------------------------------------------*/
- #include "stm32l4xx_hal.h"
- void Modbus_StartReceive(void);
- void Modbus_DataHandle(void);
- /* Exported functions prototypes ---------------------------------------------*/
- #ifdef __cplusplus
- }
- #endif
- #endif /* __MODBUS_DEAL_H */
|