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

stm32wb_at_ble.c « stm32wb_at « Components « BSP « Drivers - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ae505d5c21534435d7dcd926fab1ee80e3a5958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
  ******************************************************************************
  * @file    stm32wb_at_ble.c
  * @author  MCD Application Team
  * @brief   AT BLE commands
  *
  ******************************************************************************
  * @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.
  *
  ******************************************************************************
  */

/* Includes ------------------------------------------------------------------*/
#include "stm32wb_at_ble.h"

/* Private typedef -----------------------------------------------------------*/
/* Private define ------------------------------------------------------------*/
/* Private macros ------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Exported variable ---------------------------------------------------------*/
const char *AT_BLE_CMD_STRING[] = {
  FOREACH_AT_BLE_CMD(GENERATE_STRING)
};

const char *AT_BLE_EVT_STRING[] = {
  FOREACH_AT_BLE_EVT(GENERATE_STRING)
};

/* Exported functions --------------------------------------------------------*/
FOREACH_AT_BLE_CMD(GENERATE_AT_BLE_CB_FUNC)
FOREACH_AT_BLE_EVT(GENERATE_AT_BLE_EVT_CB_FUNC)