Skip to content

Commit 365cb3c

Browse files
remove generic, TPPs, nested namespaces
1 parent f5358a7 commit 365cb3c

File tree

742 files changed

+6120
-9319
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

742 files changed

+6120
-9319
lines changed

.astyleignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
^BUILD
22
^cmsis
3+
^connectivity/drivers/ble
4+
^connectivity/FEATURE_BLE
35
^connectivity/libraries/mbed-coap
46
^connectivity/libraries/ppp
57
^features/cryptocell
6-
^features/FEATURE_BLE
78
^features/FEATURE_EXPERIMENTAL_API/FEATURE_PSA/TARGET_MBED_PSA_SRV
89
^features/FEATURE_EXPERIMENTAL_API/FEATURE_PSA/TARGET_TFM
910
^features/frameworks

components/BLE/COMPONENT_BlueNRG_MS/BlueNrgMsHCIDriver.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include "platform/mbed_wait_api.h"
2828

2929
// FEATURE_BLE/targets/TARGET_CORDIO
30-
#include "CordioBLE.h"
30+
#include "CordioBLEInstanceBase.h"
3131
#include "CordioHCIDriver.h"
3232
#include "CordioHCITransportDriver.h"
3333
#include "hci_api.h"
@@ -64,17 +64,17 @@ namespace bluenrg_ms {
6464

6565
/**
6666
* BlueNRG_MS HCI driver implementation.
67-
* @see cordio::CordioHCIDriver
67+
* @see CordioHCIDriver
6868
*/
69-
class HCIDriver : public cordio::CordioHCIDriver {
69+
class HCIDriver : public CordioHCIDriver {
7070
public:
7171
/**
7272
* Construction of the BlueNRG_MS HCIDriver.
7373
* @param transport: Transport of the HCI commands.
7474
* @param rst: Name of the reset pin
7575
*/
76-
HCIDriver(cordio::CordioHCITransportDriver &transport_driver, PinName rst) :
77-
cordio::CordioHCIDriver(transport_driver), rst(rst) { }
76+
HCIDriver(CordioHCITransportDriver &transport_driver, PinName rst) :
77+
CordioHCIDriver(transport_driver), rst(rst) { }
7878

7979
/**
8080
* @see CordioHCIDriver::do_initialize
@@ -87,10 +87,10 @@ class HCIDriver : public cordio::CordioHCIDriver {
8787
/**
8888
* @see CordioHCIDriver::get_buffer_pool_description
8989
*/
90-
ble::vendor::cordio::buf_pool_desc_t get_buffer_pool_description()
90+
ble::buf_pool_desc_t get_buffer_pool_description()
9191
{
9292
// Use default buffer pool
93-
return ble::vendor::cordio::CordioHCIDriver::get_default_buffer_pool_description();
93+
return ble::CordioHCIDriver::get_default_buffer_pool_description();
9494
}
9595

9696
/**
@@ -435,7 +435,7 @@ class HCIDriver : public cordio::CordioHCIDriver {
435435
* event from the stack. This might not be the best solution for all BLE chip;
436436
* especially this one.
437437
*/
438-
class TransportDriver : public cordio::CordioHCITransportDriver {
438+
class TransportDriver : public CordioHCITransportDriver {
439439
public:
440440
/**
441441
* Construct the transport driver required by a BlueNRG_MS module.
@@ -607,7 +607,7 @@ class TransportDriver : public cordio::CordioHCITransportDriver {
607607
/**
608608
* Cordio HCI driver factory
609609
*/
610-
ble::vendor::cordio::CordioHCIDriver &ble_cordio_get_hci_driver()
610+
ble::CordioHCIDriver &ble_cordio_get_hci_driver()
611611
{
612612
static ble::vendor::bluenrg_ms::TransportDriver transport_driver(
613613
MBED_CONF_BLUENRG_MS_SPI_MOSI,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)