Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Drivers/BSP/Components/stm32wb_at/stm32wb_at_client.h')
-rw-r--r--Drivers/BSP/Components/stm32wb_at/stm32wb_at_client.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/Drivers/BSP/Components/stm32wb_at/stm32wb_at_client.h b/Drivers/BSP/Components/stm32wb_at/stm32wb_at_client.h
new file mode 100644
index 000000000..06af95db5
--- /dev/null
+++ b/Drivers/BSP/Components/stm32wb_at/stm32wb_at_client.h
@@ -0,0 +1,50 @@
+/**
+ ******************************************************************************
+ * @file stm32wb_at_client.h
+ * @author MCD Application Team
+ * @brief Header file of AT client.
+ ******************************************************************************
+ * @attention
+ *
+ * Copyright (c) 2021 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 STM32WB_AT_CLIENT_H
+#define STM32WB_AT_CLIENT_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Includes ------------------------------------------------------------------*/
+#include "stm32wb_at.h"
+#include "stm32wb_at_ll.h"
+#include "stm32wb_at_ble.h"
+
+/* Private includes ----------------------------------------------------------*/
+
+/* Exported types ------------------------------------------------------------*/
+
+/* Exported constants --------------------------------------------------------*/
+
+/* Exported macros -----------------------------------------------------------*/
+
+/* Exported functions --------------------------------------------------------*/
+uint8_t stm32wb_at_client_Init(void);
+uint8_t stm32wb_at_client_Query(stm32wb_at_BLE_CMD_t cmd);
+uint8_t stm32wb_at_client_Process_rx_frame(char * str);
+uint8_t stm32wb_at_client_Set(stm32wb_at_BLE_CMD_t cmd, void *param);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* STM32WB_AT_CLIENT_H */