mirror of https://github.com/ARMmbed/mbed-os.git
Cypress BLE driver: Fix removal of mbed.h
parent
904b7f5163
commit
ea47ee0808
connectivity/drivers/ble/FEATURE_BLE/COMPONENT_CYW43XXX
|
@ -20,10 +20,15 @@
|
||||||
#include "hci_api.h"
|
#include "hci_api.h"
|
||||||
#include "hci_cmd.h"
|
#include "hci_cmd.h"
|
||||||
#include "hci_core.h"
|
#include "hci_core.h"
|
||||||
|
#include "dm_api.h"
|
||||||
#include "bstream.h"
|
#include "bstream.h"
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include "hci_mbed_os_adaptation.h"
|
#include "hci_mbed_os_adaptation.h"
|
||||||
#include "CyH4TransportDriver.h"
|
#include "CyH4TransportDriver.h"
|
||||||
|
#include "platform/mbed_power_mgmt.h"
|
||||||
|
#include "rtos/ThisThread.h"
|
||||||
|
|
||||||
|
using namespace std::chrono_literals;
|
||||||
|
|
||||||
extern const int brcm_patch_ram_length;
|
extern const int brcm_patch_ram_length;
|
||||||
extern const uint8_t brcm_patchram_buf[];
|
extern const uint8_t brcm_patchram_buf[];
|
||||||
|
@ -521,7 +526,7 @@ private:
|
||||||
}
|
}
|
||||||
|
|
||||||
PinName bt_power_name;
|
PinName bt_power_name;
|
||||||
DigitalInOut bt_power;
|
mbed::DigitalInOut bt_power;
|
||||||
|
|
||||||
bool is_powersave_enabled;
|
bool is_powersave_enabled;
|
||||||
uint8_t host_wake_irq;
|
uint8_t host_wake_irq;
|
||||||
|
|
Loading…
Reference in New Issue