Skip to content

Commit dd46862

Browse files
committed
Change LTEM_BAND in examples
1 parent b26d917 commit dd46862

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

examples/application/soracom-gps-tracker/CellularTask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define USE_PSM
1414

1515
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
16-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
16+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
1717
static const char APN[] = "soracom.io";
1818

1919
static const char HOST[] = "uni.soracom.io";

examples/cellular/cellular-mqtt-pubsubclient/cellular-mqtt-pubsubclient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <ArduinoJson.h>
1717

1818
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
19-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
19+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
2020
static const char APN[] = "soracom.io";
2121

2222
static const char MQTT_BROKER_HOST[] = "test.mosquitto.org";

examples/cellular/shell/shell.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <WioCellular.h>
1818

1919
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
20-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
20+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
2121
static const char APN[] = "soracom.io";
2222

2323
static constexpr int POWER_ON_TIMEOUT = 1000 * 20; // [ms]

examples/soracom/soracom-uptime-httpclient/soracom-uptime-httpclient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <ArduinoHttpClient.h>
1818

1919
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
20-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
20+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
2121
static const char APN[] = "soracom.io";
2222

2323
static const char HOST[] = "metadata.soracom.io";

examples/soracom/soracom-uptime-off/soracom-uptime-off.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <ArduinoJson.h>
1515

1616
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
1818
static const char APN[] = "soracom.io";
1919

2020
static const char HOST[] = "uni.soracom.io";

examples/soracom/soracom-uptime-psm/soracom-uptime-psm.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <ArduinoJson.h>
1515

1616
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
1818
static const char APN[] = "soracom.io";
1919

2020
static const char HOST[] = "uni.soracom.io";

examples/soracom/soracom-uptime-tcpclient/soracom-uptime-tcpclient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <ArduinoJson.h>
1515

1616
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
1818
static const char APN[] = "soracom.io";
1919

2020
static const char HOST[] = "uni.soracom.io";

examples/soracom/soracom-uptime/soracom-uptime.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <ArduinoJson.h>
1515

1616
#define SEARCH_ACCESS_TECHNOLOGY (WioCellularNetwork::SearchAccessTechnology::LTEM) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17-
#define LTEM_BAND (WioCellularNetwork::NTTDOCOMO_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
17+
#define LTEM_BAND (WioCellularNetwork::ALL_LTEM_BAND) // https://seeedjp.github.io/Wiki/Wio_BG770A/kb/kb4.html
1818
static const char APN[] = "soracom.io";
1919

2020
static const char HOST[] = "uni.soracom.io";

0 commit comments

Comments
 (0)