File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 24
24
#include "BLEProperty.h"
25
25
#include "BLEStringCharacteristic.h"
26
26
#include "BLETypedCharacteristics.h"
27
+
28
+ #if defined(ARDUINO_PNUCLEO_WB55RG )
29
+ #include "utility/HCISharedMemTransport.h"
30
+ #else
27
31
#include "utility/HCISpiTransport.h"
32
+ #endif
28
33
29
34
#endif
Original file line number Diff line number Diff line change 23
23
#include " HCITransport.h"
24
24
#include " SPI.h"
25
25
26
- typedef enum BLEChip_s {
27
- SPBTLE_RF,
28
- SPBTLE_1S,
29
- BLUENRG_M2SP
30
- } BLEChip_t;
31
-
32
26
#ifndef BLE_SPI_BYTE_ORDER
33
27
#define BLE_SPI_BYTE_ORDER MSBFIRST
34
28
#endif
Original file line number Diff line number Diff line change 22
22
23
23
#include < Arduino.h>
24
24
25
+ typedef enum BLEChip_s {
26
+ SPBTLE_RF,
27
+ SPBTLE_1S,
28
+ BLUENRG_M2SP,
29
+ BLE5_0,
30
+ } BLEChip_t;
31
+
25
32
class HCITransportInterface {
26
33
public:
27
34
virtual int begin () = 0;
You can’t perform that action at this time.
0 commit comments