File tree 18 files changed +33
-34
lines changed
18 files changed +33
-34
lines changed Original file line number Diff line number Diff line change 27
27
#endif
28
28
29
29
#include <Arduino.h>
30
- #include "ConnectionHandlerDefinitions.h"
30
+ #include "definitions/ ConnectionHandlerDefinitions.h"
31
31
32
32
#if defined(BOARD_HAS_WIFI )
33
- #include "WiFiConnectionHandler.h"
33
+ #include "handlers/ WiFiConnectionHandler.h"
34
34
#endif
35
35
36
36
#if defined(BOARD_HAS_GSM )
37
- #include "GSMConnectionHandler.h"
37
+ #include "handlers/ GSMConnectionHandler.h"
38
38
#endif
39
39
40
40
#if defined(BOARD_HAS_NB )
41
- #include "NBConnectionHandler.h"
41
+ #include "handlers/ NBConnectionHandler.h"
42
42
#endif
43
43
44
44
#if defined(BOARD_HAS_LORA )
45
- #include "LoRaConnectionHandler.h"
45
+ #include "handlers/ LoRaConnectionHandler.h"
46
46
#endif
47
47
48
48
#if defined(BOARD_HAS_ETHERNET )
49
- #include "EthernetConnectionHandler.h"
49
+ #include "handlers/ EthernetConnectionHandler.h"
50
50
#endif
51
51
52
52
#if defined(BOARD_HAS_CATM1_NBIOT )
53
- #include "CatM1ConnectionHandler.h"
53
+ #include "handlers/ CatM1ConnectionHandler.h"
54
54
#endif
55
55
56
56
#if defined(BOARD_HAS_CELLULAR )
57
- #include "CellularConnectionHandler.h"
57
+ #include "handlers/ CellularConnectionHandler.h"
58
58
#endif
59
59
60
60
#endif /* CONNECTION_HANDLER_H_ */
File renamed without changes.
Original file line number Diff line number Diff line change 19
19
INCLUDE
20
20
******************************************************************************/
21
21
22
- #include " ConnectionHandlerDefinitions.h"
22
+ #include " definitions/ ConnectionHandlerDefinitions.h"
23
23
24
24
#ifdef BOARD_HAS_CATM1_NBIOT /* Only compile if the board has CatM1 BN-IoT */
25
- #include " CatM1ConnectionHandler.h"
25
+ #include " handlers/ CatM1ConnectionHandler.h"
26
26
27
27
/* *****************************************************************************
28
28
CTOR/DTOR
Original file line number Diff line number Diff line change 22
22
INCLUDE
23
23
******************************************************************************/
24
24
25
- #include " ConnectionHandlerInterface.h"
25
+ #include " interface/ ConnectionHandlerInterface.h"
26
26
27
27
#if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_EDGE_CONTROL)
28
28
#include < GSM.h>
Original file line number Diff line number Diff line change 13
13
INCLUDE
14
14
******************************************************************************/
15
15
16
- #include " ConnectionHandlerDefinitions.h"
16
+ #include " definitions/ ConnectionHandlerDefinitions.h"
17
17
18
18
#ifdef BOARD_HAS_CELLULAR /* Only compile if the board has Cellular */
19
- #include " CellularConnectionHandler.h"
19
+ #include " handlers/ CellularConnectionHandler.h"
20
20
21
21
/* *****************************************************************************
22
22
CTOR/DTOR
Original file line number Diff line number Diff line change 16
16
INCLUDE
17
17
******************************************************************************/
18
18
19
- #include " Arduino_ConnectionHandler.h"
20
-
21
-
22
- /* *****************************************************************************
23
- CLASS DECLARATION
24
- ******************************************************************************/
19
+ #include " interface/ConnectionHandlerInterface.h"
25
20
26
21
#if defined(ARDUINO_PORTENTA_C33) || defined(ARDUINO_PORTENTA_H7_M7)
27
22
#include < Arduino_Cellular.h>
31
26
#error "Board doesn't support CELLULAR"
32
27
#endif
33
28
29
+ /* *****************************************************************************
30
+ CLASS DECLARATION
31
+ ******************************************************************************/
32
+
34
33
class CellularConnectionHandler : public ConnectionHandler
35
34
{
36
35
public:
Original file line number Diff line number Diff line change 16
16
INCLUDE
17
17
******************************************************************************/
18
18
19
- #include " ConnectionHandlerDefinitions.h"
19
+ #include " definitions/ ConnectionHandlerDefinitions.h"
20
20
21
21
#ifdef BOARD_HAS_ETHERNET /* Only compile if the board has ethernet */
22
- #include " EthernetConnectionHandler.h"
22
+ #include " handlers/ EthernetConnectionHandler.h"
23
23
24
24
/* *****************************************************************************
25
25
CTOR/DTOR
Original file line number Diff line number Diff line change 19
19
INCLUDE
20
20
******************************************************************************/
21
21
22
- #include " ConnectionHandlerInterface.h"
22
+ #include " interface/ ConnectionHandlerInterface.h"
23
23
24
24
#if defined(ARDUINO_PORTENTA_H7_M7)
25
25
#include < Ethernet.h>
Original file line number Diff line number Diff line change 19
19
INCLUDE
20
20
******************************************************************************/
21
21
22
- #include " ConnectionHandlerDefinitions.h"
22
+ #include " definitions/ ConnectionHandlerDefinitions.h"
23
23
24
24
#ifdef BOARD_HAS_GSM /* Only compile if this is a board with GSM */
25
- #include " GSMConnectionHandler.h"
25
+ #include " handlers/ GSMConnectionHandler.h"
26
26
27
27
/* *****************************************************************************
28
28
CONSTANTS
Original file line number Diff line number Diff line change 22
22
INCLUDE
23
23
******************************************************************************/
24
24
25
- #include " ConnectionHandlerInterface.h"
25
+ #include " interface/ ConnectionHandlerInterface.h"
26
26
27
27
#if defined(ARDUINO_SAMD_MKRGSM1400)
28
28
#include < MKRGSM.h>
Original file line number Diff line number Diff line change 19
19
INCLUDE
20
20
******************************************************************************/
21
21
22
- #include " ConnectionHandlerDefinitions.h"
22
+ #include " definitions/ ConnectionHandlerDefinitions.h"
23
23
24
24
#if defined(BOARD_HAS_LORA) /* Only compile if the board has LoRa */
25
- #include " LoRaConnectionHandler.h"
25
+ #include " handlers/ LoRaConnectionHandler.h"
26
26
27
27
/* *****************************************************************************
28
28
TYPEDEF
Original file line number Diff line number Diff line change 22
22
INCLUDE
23
23
******************************************************************************/
24
24
25
- #include " ConnectionHandlerInterface.h"
25
+ #include " interface/ ConnectionHandlerInterface.h"
26
26
27
27
#if defined(ARDUINO_SAMD_MKRWAN1300) || defined(ARDUINO_SAMD_MKRWAN1310)
28
28
#include < MKRWAN.h>
Original file line number Diff line number Diff line change 19
19
INCLUDE
20
20
******************************************************************************/
21
21
22
- #include " ConnectionHandlerDefinitions.h"
22
+ #include " definitions/ ConnectionHandlerDefinitions.h"
23
23
24
24
#ifdef BOARD_HAS_NB /* Only compile if this is a board with NB */
25
- #include " NBConnectionHandler.h"
25
+ #include " handlers/ NBConnectionHandler.h"
26
26
27
27
/* *****************************************************************************
28
28
CONSTANTS
Original file line number Diff line number Diff line change 22
22
INCLUDE
23
23
******************************************************************************/
24
24
25
- #include " ConnectionHandlerInterface.h"
25
+ #include " interface/ ConnectionHandlerInterface.h"
26
26
27
27
#ifdef ARDUINO_SAMD_MKRNB1500
28
28
#include < MKRNB.h>
Original file line number Diff line number Diff line change 19
19
INCLUDE
20
20
******************************************************************************/
21
21
22
- #include " ConnectionHandlerDefinitions.h"
22
+ #include " definitions/ ConnectionHandlerDefinitions.h"
23
23
24
24
#ifdef BOARD_HAS_WIFI /* Only compile if the board has WiFi */
25
- #include " WiFiConnectionHandler.h"
25
+ #include " handlers/ WiFiConnectionHandler.h"
26
26
27
27
/* *****************************************************************************
28
28
CONSTANTS
Original file line number Diff line number Diff line change 22
22
INCLUDE
23
23
******************************************************************************/
24
24
25
- #include " ConnectionHandlerInterface.h"
25
+ #include " interface/ ConnectionHandlerInterface.h"
26
26
27
27
#ifdef ARDUINO_SAMD_MKR1000
28
28
#include < WiFi101.h>
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments