RadioLib
Universal wireless communication library for Arduino
Loading...
Searching...
No Matches
STM32WLx_Module.h
1/*
2
3Copyright (c) 2022 STMicroelectronics
4
5This file is licensed under the MIT License: https://opensource.org/licenses/MIT
6*/
7
8#if !defined(_RADIOLIB_STM32WLX_MODULE_H)
9#define _RADIOLIB_STM32WLX_MODULE_H
10
11#include "../../TypeDef.h"
12
13#if !RADIOLIB_EXCLUDE_STM32WLX
14
15#include "../../Module.h"
16
26class STM32WLx_Module : public Module {
27 // Note: We cannot easily override any methods here, since most calls
28 // are non-virtual and made through a Module*, so they would not be
29 // calling any overridden methods. This means this class works by
30 // overriding some of the callbacks in its constructor.
31
32 public:
34};
35
36#endif
37
38#endif
Implements all common low-level methods to control the wireless module. Every module class contains o...
Definition Module.h:73
Definition STM32WLx_Module.h:26