Skip to content

Commit b98ffa4

Browse files
fix uppercase X in nrf5x
1 parent 6a26a8a commit b98ffa4

File tree

9 files changed

+121
-121
lines changed

9 files changed

+121
-121
lines changed

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5/source/btle/btle.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ extern "C" {
5050

5151
#include "nrf_ble_hci.h"
5252

53-
#include "nRF5XPalGattClient.h"
54-
#include "nRF5XPalSecurityManager.h"
53+
#include "nRF5xPalGattClient.h"
54+
#include "nRF5xPalSecurityManager.h"
5555

5656

5757
bool isEventsSignaled = false;
@@ -163,7 +163,7 @@ error_t btle_init(void)
163163

164164
void btle_handler(ble_evt_t *p_ble_evt)
165165
{
166-
using ble::pal::vendor::nordic::nRF5XGattClient;
166+
using ble::pal::vendor::nordic::nRF5xGattClient;
167167
using ble::pal::vendor::nordic::nRF5xSecurityManager;
168168

169169
/* Library service handlers */
@@ -179,7 +179,7 @@ void btle_handler(ble_evt_t *p_ble_evt)
179179
#endif
180180

181181
#if !defined(TARGET_MCU_NRF51_16K_S110) && !defined(TARGET_MCU_NRF51_32K_S110)
182-
nRF5XGattClient::handle_events(p_ble_evt);
182+
nRF5xGattClient::handle_events(p_ble_evt);
183183
#endif
184184

185185
nRF5xn &ble = nRF5xn::Instance(BLE::DEFAULT_INSTANCE);
@@ -222,7 +222,7 @@ void btle_handler(ble_evt_t *p_ble_evt)
222222

223223
#if !defined(TARGET_MCU_NRF51_16K_S110) && !defined(TARGET_MCU_NRF51_32K_S110)
224224
// Close all pending discoveries for this connection
225-
nRF5XGattClient::handle_connection_termination(handle);
225+
nRF5xGattClient::handle_connection_termination(handle);
226226
#endif
227227

228228
gap.processDisconnectionEvent(handle, reason);

0 commit comments

Comments
 (0)