Skip to content

Commit 4c4ed0a

Browse files
authored
Merge pull request #12258 from trowbridgec/disable-ep_agora-cell-aux-uart-by-default
Disable the cell AUX UART by default on EP_AGORA
2 parents 606f3a3 + a21a006 commit 4c4ed0a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_AGORA/ONBOARD_TELIT_ME910.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ nsapi_error_t ONBOARD_TELIT_ME910::init()
114114
// AT#PORTCFG=0
115115
// Set command allows to connect Service Access Points to the external physical ports giving a great
116116
// flexibility. Examples of Service Access Points: AT Parser Instance #1, #2, #3, etc..
117-
_at->at_cmd_discard("#PORTCFG", "=3");
117+
_at->at_cmd_discard("#PORTCFG", "=", "%d", EP_AGORA_PORT_CONFIGURATION_VARIANT);
118118

119119
// AT&W&P
120120
// - AT&W: Execution command stores on profile <n> the complete configuration of the device. If

targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_NRF52/TARGET_MCU_NRF52840/TARGET_EP_AGORA/mbed_lib.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"help" : "Enable the cell module on the EP_AGORA board",
66
"macro_name" : "EP_AGORA_ENABLE_CELL",
77
"value" : true
8+
},
9+
"port-configuration-variant" : {
10+
"help" : "Telit ME910C1 AT#PORTCFG Variant value",
11+
"macro_name" : "EP_AGORA_PORT_CONFIGURATION_VARIANT",
12+
"value" : 0
813
}
914
},
1015
"target_overrides": {

0 commit comments

Comments
 (0)