Skip to content

Commit b975b72

Browse files
ubidefeoaentinger
authored andcommitted
Remove connection handling and debug messages because those tasks are now handled by 'Arduino_ConnectionHandler' and 'Arduino_DebugUtils'
1 parent 6d0d5ed commit b975b72

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

examples/GSM_Cloud_Blink/GSM_Cloud_Blink.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ void sendString(String stringToSend) {
7373
if (lastSentChar != '\n') {
7474
CloudSerial.write('\n');
7575
}
76-
}
76+
}

src/ArduinoIoTCloud.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,20 @@
1515
a commercial license, send an email to license@arduino.cc.
1616
*/
1717

18+
<<<<<<< HEAD
1819
#include <ArduinoIoTCloud.h>
1920

2021
#ifdef BOARD_HAS_ECCX08
2122
#include "utility/ECCX08Cert.h"
2223
#include <ArduinoECCX08.h>
2324
#endif
25+
=======
26+
#include <ArduinoECCX08.h>
27+
#include "utility/ECCX08Cert.h"
28+
#include "CloudSerial.h"
29+
#include "ArduinoIoTCloud.h"
30+
#include <Arduino_DebugUtils.h>
31+
>>>>>>> Remove connection handling and debug messages because those tasks are now handled by 'Arduino_ConnectionHandler' and 'Arduino_DebugUtils'
2432

2533
#ifdef ARDUINO_ARCH_SAMD
2634
#include <RTCZero.h>

0 commit comments

Comments
 (0)