File tree 6 files changed +8
-10
lines changed
6 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 50
50
type : gsm
51
51
- fqbn : arduino:samd:mkrnb1500
52
52
type : nb
53
- - fqbn : arduino:mbed:envie_m4
54
- type : mbed
55
53
- fqbn : arduino:mbed:envie_m7
56
54
type : mbed
57
55
- fqbn : esp8266:esp8266:huzzah
Original file line number Diff line number Diff line change 116
116
117
117
#if defined(ARDUINO_SAMD_MKRGSM1400 ) || defined(ARDUINO_SAMD_MKR1000 ) || \
118
118
defined(ARDUINO_SAMD_MKRNB1500 ) || defined(ARDUINO_PORTENTA_H7_M7 ) || \
119
- defined( ARDUINO_PORTENTA_H7_M4 ) || defined (ARDUINO_NANO_RP2040_CONNECT )
119
+ defined (ARDUINO_NANO_RP2040_CONNECT )
120
120
#define BOARD_HAS_ECCX08
121
121
#define HAS_TCP
122
122
#endif
Original file line number Diff line number Diff line change 38
38
#include " tls/utility/CryptoUtil.h"
39
39
#endif
40
40
41
- #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined( ARDUINO_NICLA_VISION)
41
+ #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION)
42
42
# include " tls/utility/SHA256.h"
43
43
# include < stm32h7xx_hal_rtc_ex.h>
44
44
# include < WiFi.h>
@@ -826,7 +826,7 @@ void ArduinoIoTCloudTCP::onOTARequest()
826
826
_ota_error = rp2040_connect_onOTARequest (_ota_url.c_str ());
827
827
#endif
828
828
829
- #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined( ARDUINO_NICLA_VISION)
829
+ #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION)
830
830
_ota_error = portenta_h7_onOTARequest (_ota_url.c_str ());
831
831
#endif
832
832
}
Original file line number Diff line number Diff line change 15
15
a commercial license, send an email to [email protected] .
16
16
*/
17
17
18
- #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined( ARDUINO_NICLA_VISION)
18
+ #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION)
19
19
20
20
/* *****************************************************************************
21
21
* INCLUDE
@@ -87,4 +87,4 @@ int portenta_h7_onOTARequest(char const * ota_url)
87
87
NVIC_SystemReset ();
88
88
}
89
89
90
- #endif /* defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined( ARDUINO_NICLA_VISION) */
90
+ #endif /* defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION) */
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ int samd_onOTARequest(char const * ota_url);
62
62
int rp2040_connect_onOTARequest (char const * ota_url );
63
63
#endif
64
64
65
- #if defined(ARDUINO_PORTENTA_H7_M7 ) || defined(ARDUINO_PORTENTA_H7_M4 ) || defined( ARDUINO_NICLA_VISION )
65
+ #if defined(ARDUINO_PORTENTA_H7_M7 ) || defined(ARDUINO_NICLA_VISION )
66
66
int portenta_h7_onOTARequest (char const * ota_url );
67
67
#endif
68
68
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ void mkr_nb_feed_watchdog()
90
90
static void mbed_watchdog_enable ()
91
91
{
92
92
watchdog_config_t cfg;
93
- #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined( ARDUINO_NICLA_VISION)
93
+ #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION)
94
94
cfg.timeout_ms = PORTENTA_H7_WATCHDOG_MAX_TIMEOUT_ms;
95
95
#elif defined(ARDUINO_NANO_RP2040_CONNECT)
96
96
cfg.timeout_ms = NANO_RP2040_WATCHDOG_MAX_TIMEOUT_ms;
@@ -116,7 +116,7 @@ static void mbed_watchdog_reset()
116
116
void mbed_watchdog_trigger_reset ()
117
117
{
118
118
watchdog_config_t cfg;
119
- #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) || defined( ARDUINO_NICLA_VISION)
119
+ #if defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_NICLA_VISION)
120
120
cfg.timeout_ms = 1 ;
121
121
#elif defined(ARDUINO_NANO_RP2040_CONNECT)
122
122
cfg.timeout_ms = 1 ;
You can’t perform that action at this time.
0 commit comments