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

hal_common.h « app « STM32_WPAN « BLE_MeshLightingLPN « BLE « Applications « NUCLEO-WB15CC « Projects - github.com/Flipper-Zero/STM32CubeWB.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d580f16a73a9f709eec256e86c81224a36c1cf26 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* USER CODE BEGIN Header */
/**
  ******************************************************************************
  * @file    hal_common.h
  * @author  MCD Application Team
  * @brief   Common functions of HAL file 
  ******************************************************************************
  * @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.
  *
  ******************************************************************************
  */
/* USER CODE END Header */

/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef _HAL_H_
#define _HAL_H_

/* Includes ------------------------------------------------------------------*/

#if defined(NUCLEO_L152RE) || defined(USE_STM32WBXX_NUCLEO) || USE_STM32WBXX_USB_DONGLE /* NUCLEO_L152RE */
#include "user_if.h" 
#else /* not NUCLEO_L152RE */
#if defined(BLUENRG1) || defined(BLUENRG2) /* BLUENRG1 or BLUENRG2 */
#include "hal.h"   
#else /* not BLUENRG1 or BLUENRG2 */
#error "Unsupported board"
#endif /* BLUENRG1 or BLUENRG2 */
#endif /* NUCLEO_L152RE */

#include <stdio.h>
#include <stdlib.h>

#include <stdint.h>
#include <stdbool.h>

#include "types.h"

void SetLed(int state);
BUTTON_STATE GetButtonState(void);
BUTTON_STATE GetButton2State(void);
void InitDevice(void);

void ShouldSleepFunc(void);

#endif /* _HAL_H_ */