Skip to content

Commit 28f7a4e

Browse files
author
Chris Trowbridge
committed
Moved DEFAULT_DELAY_BETWEEN_AT_COMMANDS constant to cpp file
1 parent ea5d8cf commit 28f7a4e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

features/cellular/framework/targets/TELIT/ME910/TELIT_ME910.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ static const intptr_t cellular_properties[AT_CellularBase::PROPERTY_MAX] = {
5959
1, // PROPERTY_AT_CGEREP
6060
};
6161

62+
//the delay between sending AT commands
63+
static const uint16_t DEFAULT_DELAY_BETWEEN_AT_COMMANDS = 20;
64+
6265
TELIT_ME910::TELIT_ME910(FileHandle *fh, PinName pwr, bool active_high)
6366
: AT_CellularDevice(fh),
6467
_active_high(active_high),

features/cellular/framework/targets/TELIT/ME910/TELIT_ME910.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@
3030
#include "DigitalOut.h"
3131
#include "AT_CellularDevice.h"
3232

33-
//the delay between sending AT commands
34-
#define DEFAULT_DELAY_BETWEEN_AT_COMMANDS 20
35-
3633
namespace mbed {
3734

3835
class TELIT_ME910 : public AT_CellularDevice {

0 commit comments

Comments
 (0)