Skip to content

Commit d43ad08

Browse files
committed
files case sensitive
1 parent ec806bd commit d43ad08

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

TEST_APPS/device/nfcapp/nfccommands.cpp renamed to TEST_APPS/device/nfcapp/NFCCommands.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
#include "mbed_events.h"
2222
#include "mbed-client-cli/ns_cmdline.h"
2323
#include "rtos\Thread.h"
24-
#include "nfcTestShim.h"
25-
#include "nfcCommands.h"
24+
#include "NFCTestShim.h"
25+
#include "NFCCommands.h"
2626

2727
#if MBED_CONF_NFCEEPROM
2828
#include "NFCEEPROMDriver.h"
29-
#include "nfcProcessEeprom.h"
29+
#include "NFCProcessEEPROM.h"
3030
#endif
3131

3232
using mbed::nfc::nfc_rf_protocols_bitmask_t;

TEST_APPS/device/nfcapp/nfccommands.h renamed to TEST_APPS/device/nfcapp/NFCCommands.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
#define _NFCCOMMANDS_H_INCLUDED
1919

2020
#if MBED_CONF_NFCEEPROM
21-
#include "nfcProcessEeprom.h"
21+
#include "NFCProcessEEPROM.h"
2222
#else
23-
#include "nfcProcessCtrl.h"
23+
#include "NFCProcessCtrl.h"
2424
#endif
2525

2626
// see https://support.microsoft.com/en-my/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer

TEST_APPS/device/nfcapp/nfcprocessCtrl.cpp renamed to TEST_APPS/device/nfcapp/NFCProcessCtrl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
#include "nfc/ndef/common/util.h"
3030

3131

32-
#include "nfcCommands.h"
33-
#include "nfcProcessCtrl.h"
32+
#include "NFCCommands.h"
33+
#include "NFCProcessCtrl.h"
3434
#include "SmartPoster.h"
3535

3636
using mbed::Span;

TEST_APPS/device/nfcapp/nfcprocessCtrl.h renamed to TEST_APPS/device/nfcapp/NFCProcessCtrl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "nfc/ndef/MessageBuilder.h"
2626
#include "nfc/ndef/common/URI.h"
2727
#include "nfc/ndef/common/util.h"
28-
#include "nfcTestShim.h"
28+
#include "NFCTestShim.h"
2929

3030
#if !MBED_CONF_NFCEEPROM
3131

TEST_APPS/device/nfcapp/nfcprocessEeprom.cpp renamed to TEST_APPS/device/nfcapp/NFCProcessEEPROM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#if MBED_CONF_NFCEEPROM
3131
#include "NFCEEPROMDriver.h"
3232

33-
#include "nfcProcessEeprom.h"
33+
#include "NFCProcessEEPROM.h"
3434
#include "SmartPoster.h"
3535

3636
using mbed::Span;

TEST_APPS/device/nfcapp/nfcprocessEeprom.h renamed to TEST_APPS/device/nfcapp/NFCProcessEEPROM.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "nfc/ndef/MessageBuilder.h"
2626
#include "nfc/ndef/common/URI.h"
2727
#include "nfc/ndef/common/util.h"
28-
#include "nfcTestShim.h"
28+
#include "NFCTestShim.h"
2929

3030
#if MBED_CONF_NFCEEPROM
3131
#include "NFCEEPROM.h"

TEST_APPS/device/nfcapp/nfctestshim.cpp renamed to TEST_APPS/device/nfcapp/NFCTestShim.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#include "nfc/nfcdefinitions.h"
2828

2929
#include "NFCEEPROMDriver.h"
30-
#include "nfcCommands.h"
31-
#include "nfcTestShim.h"
30+
#include "NFCCommands.h"
31+
#include "NFCTestShim.h"
3232
#include "SmartPoster.h"
3333

3434
using mbed::Span;

TEST_APPS/device/nfcapp/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#include "platform/Span.h"
2323
#include "mbed_events.h"
2424
#include "mbed-client-cli/ns_cmdline.h"
25-
#include "nfcTestShim.h"
26-
#include "nfcCommands.h"
25+
#include "NFCTestShim.h"
26+
#include "NFCCommands.h"
2727

2828
#if MBED_CONF_NFCEEPROM
2929
using mbed::nfc::NFCEEPROM;

0 commit comments

Comments
 (0)