We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea9ba23 commit 5e6262aCopy full SHA for 5e6262a
libraries/tests/net/cellular/http/ubloxusbgsm/main.cpp
@@ -3,23 +3,23 @@
3
4
#ifndef MODEM_APN
5
#warning APN not specified, using "internet"
6
-#define APN "internet"
+#define MODEM_APN "internet"
7
#endif
8
9
#ifndef MODEM_USERNAME
10
#warning username not specified
11
-#define USERNAME NULL
+#define MODEM_USERNAME NULL
12
13
14
#ifndef MODEM_PASSWORD
15
#warning password not specified
16
-#define PASSWORD NULL
+#define MODEM_PASSWORD NULL
17
18
19
void test(void const* data)
20
{
21
UbloxUSBGSMModem modem;
22
- httptest(modem, APN, USERNAME, PASSWORD);
+ httptest(modem, MODEM_APN, MODEM_USERNAME, MODEM_PASSWORD);
23
while (true);
24
}
25
0 commit comments