Skip to content

Commit 46bf5d0

Browse files
committed
Mass rebuild variants
1 parent c944abd commit 46bf5d0

File tree

24 files changed

+62
-44
lines changed

24 files changed

+62
-44
lines changed

cores/arduino/mbed/connectivity/drivers/emac/TARGET_STM/stm32xx_emac.h

+7
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,13 @@ class STM32_EMAC : public EMAC {
148148
*/
149149
virtual void set_memory_manager(EMACMemoryManager &mem_mngr);
150150

151+
/* return the status of the interface as integer */
152+
int get_interface_status() override;
153+
/* return true if the interface is in the correct state to transmit */
154+
bool is_ready_to_tx() override;
155+
/* restart only if the interface is in error state */
156+
void restart() override;
157+
151158
// Called from driver functions
152159
ETH_HandleTypeDef EthHandle;
153160
osThreadId_t thread; /**< Processing thread */

cores/arduino/mbed/connectivity/netsocket/include/netsocket/EMAC.h

+11
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,17 @@ class EMAC {
176176
* @param mem_mngr Pointer to memory manager
177177
*/
178178
virtual void set_memory_manager(EMACMemoryManager &mem_mngr) = 0;
179+
180+
virtual bool is_ready_to_tx() {
181+
return true;
182+
}
183+
184+
virtual void restart() {
185+
}
186+
187+
virtual int get_interface_status() {
188+
return -1;
189+
}
179190
};
180191

181192

variants/ARDUINO_NANO33BLE/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
-DFEATURE_STORAGE=1
3535
-D__FPU_PRESENT=1
3636
-D__MBED__=1
37-
-DMBED_BUILD_TIMESTAMP=1719580467.0657709
37+
-DMBED_BUILD_TIMESTAMP=1720438723.6150708
3838
-D__MBED_CMSIS_RTOS_CM
3939
-DMBED_MPU_CUSTOM
4040
-DMBED_TICKLESS
@@ -65,7 +65,7 @@
6565
-DTOOLCHAIN_GCC_ARM
6666
-DWSF_MAX_HANDLERS=10
6767
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
68-
-DCORE_MAJOR=
69-
-DCORE_MINOR=
70-
-DCORE_PATCH=
68+
-DCORE_MAJOR=4
69+
-DCORE_MINOR=1
70+
-DCORE_PATCH=5
7171
-DUSE_ARDUINO_PINOUT
-44 KB
Binary file not shown.

variants/EDGE_CONTROL/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
-DFEATURE_STORAGE=1
3939
-D__FPU_PRESENT=1
4040
-D__MBED__=1
41-
-DMBED_BUILD_TIMESTAMP=1719580640.5462966
41+
-DMBED_BUILD_TIMESTAMP=1720438575.8324268
4242
-D__MBED_CMSIS_RTOS_CM
4343
-DMBED_MPU_CUSTOM
4444
-DMBED_TICKLESS
@@ -69,7 +69,7 @@
6969
-DTOOLCHAIN_GCC_ARM
7070
-DWSF_MAX_HANDLERS=10
7171
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
72-
-DCORE_MAJOR=
73-
-DCORE_MINOR=
74-
-DCORE_PATCH=
72+
-DCORE_MAJOR=4
73+
-DCORE_MINOR=1
74+
-DCORE_PATCH=5
7575
-DUSE_ARDUINO_PINOUT

variants/EDGE_CONTROL/libs/libmbed.a

-46.2 KB
Binary file not shown.

variants/GENERIC_STM32H747_M4/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
-DFEATURE_BLE=1
4343
-D__FPU_PRESENT=1
4444
-D__MBED__=1
45-
-DMBED_BUILD_TIMESTAMP=1719580585.9789317
45+
-DMBED_BUILD_TIMESTAMP=1720439009.4096816
4646
-D__MBED_CMSIS_RTOS_CM
4747
-DMBED_MPU_CUSTOM
4848
-DMBED_TICKLESS
@@ -79,7 +79,7 @@
7979
-DUSE_HAL_DRIVER
8080
-DVIRTIO_DEVICE_ONLY
8181
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
82-
-DCORE_MAJOR=
83-
-DCORE_MINOR=
84-
-DCORE_PATCH=
82+
-DCORE_MAJOR=4
83+
-DCORE_MINOR=1
84+
-DCORE_PATCH=5
8585
-DUSE_ARDUINO_PINOUT
-38.7 KB
Binary file not shown.

variants/GIGA/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
-DFEATURE_BLE=1
4545
-D__FPU_PRESENT=1
4646
-D__MBED__=1
47-
-DMBED_BUILD_TIMESTAMP=1719930214.211079
47+
-DMBED_BUILD_TIMESTAMP=1720438617.7533863
4848
-D__MBED_CMSIS_RTOS_CM
4949
-DMBED_TICKLESS
5050
-DMBEDTLS_FS_IO
@@ -80,7 +80,7 @@
8080
-DUSE_HAL_DRIVER
8181
-DVIRTIO_DRIVER_ONLY
8282
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
83-
-DCORE_MAJOR=
84-
-DCORE_MINOR=
85-
-DCORE_PATCH=
83+
-DCORE_MAJOR=4
84+
-DCORE_MINOR=1
85+
-DCORE_PATCH=5
8686
-DUSE_ARDUINO_PINOUT

variants/GIGA/libs/libmbed.a

740 Bytes
Binary file not shown.

variants/NANO_RP2040_CONNECT/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
-DDEVICE_USTICKER=1
2222
-DDEVICE_WATCHDOG=1
2323
-D__MBED__=1
24-
-DMBED_BUILD_TIMESTAMP=1719580442.2641459
24+
-DMBED_BUILD_TIMESTAMP=1720438706.2363644
2525
-D__MBED_CMSIS_RTOS_CM
2626
-DMBED_MPU_CUSTOM
2727
-DMBEDTLS_ENTROPY_NV_SEED
@@ -45,7 +45,7 @@
4545
-DTOOLCHAIN_GCC
4646
-DTOOLCHAIN_GCC_ARM
4747
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
48-
-DCORE_MAJOR=
49-
-DCORE_MINOR=
50-
-DCORE_PATCH=
48+
-DCORE_MAJOR=4
49+
-DCORE_MINOR=1
50+
-DCORE_PATCH=5
5151
-DUSE_ARDUINO_PINOUT
-23.6 KB
Binary file not shown.

variants/NICLA/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
-DFEATURE_BLE=1
3434
-D__FPU_PRESENT=1
3535
-D__MBED__=1
36-
-DMBED_BUILD_TIMESTAMP=1719580684.6774077
36+
-DMBED_BUILD_TIMESTAMP=1720438759.8894477
3737
-D__MBED_CMSIS_RTOS_CM
3838
-DMBED_MPU_CUSTOM
3939
-DMBED_TICKLESS
@@ -75,7 +75,7 @@
7575
-DTOOLCHAIN_GCC
7676
-DTOOLCHAIN_GCC_ARM
7777
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
78-
-DCORE_MAJOR=
79-
-DCORE_MINOR=
80-
-DCORE_PATCH=
78+
-DCORE_MAJOR=4
79+
-DCORE_MINOR=1
80+
-DCORE_PATCH=5
8181
-DUSE_ARDUINO_PINOUT

variants/NICLA/libs/libmbed.a

-43.5 KB
Binary file not shown.

variants/NICLA_VISION/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
-DFLOW_SILENT
4646
-D__FPU_PRESENT=1
4747
-D__MBED__=1
48-
-DMBED_BUILD_TIMESTAMP=1719580720.2247646
48+
-DMBED_BUILD_TIMESTAMP=1720438783.4796686
4949
-D__MBED_CMSIS_RTOS_CM
5050
-DMBED_TICKLESS
5151
-DMBEDTLS_FS_IO
@@ -83,7 +83,7 @@
8383
-DUSE_HAL_DRIVER
8484
-DVIRTIO_DRIVER_ONLY
8585
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
86-
-DCORE_MAJOR=
87-
-DCORE_MINOR=
88-
-DCORE_PATCH=
86+
-DCORE_MAJOR=4
87+
-DCORE_MINOR=1
88+
-DCORE_PATCH=5
8989
-DUSE_ARDUINO_PINOUT

variants/NICLA_VISION/libs/libmbed.a

-40.1 KB
Binary file not shown.

variants/OPTA/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
-DFEATURE_BLE=1
4545
-D__FPU_PRESENT=1
4646
-D__MBED__=1
47-
-DMBED_BUILD_TIMESTAMP=1719929630.0019104
47+
-DMBED_BUILD_TIMESTAMP=1720438877.8913524
4848
-D__MBED_CMSIS_RTOS_CM
4949
-DMBED_TICKLESS
5050
-DMBEDTLS_FS_IO
@@ -80,7 +80,7 @@
8080
-DUSE_HAL_DRIVER
8181
-DVIRTIO_DRIVER_ONLY
8282
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
83-
-DCORE_MAJOR=
84-
-DCORE_MINOR=
85-
-DCORE_PATCH=
83+
-DCORE_MAJOR=4
84+
-DCORE_MINOR=1
85+
-DCORE_PATCH=5
8686
-DUSE_ARDUINO_PINOUT

variants/OPTA/libs/libmbed.a

1.63 KB
Binary file not shown.

variants/PORTENTA_H7_M7/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
-D__FPU_PRESENT=1
4747
-DLSE_STARTUP_TIMEOUT=200
4848
-D__MBED__=1
49-
-DMBED_BUILD_TIMESTAMP=1719580529.7864532
49+
-DMBED_BUILD_TIMESTAMP=1720438970.1228094
5050
-D__MBED_CMSIS_RTOS_CM
5151
-DMBED_TICKLESS
5252
-DMBEDTLS_FS_IO
@@ -83,7 +83,7 @@
8383
-DUSE_HAL_DRIVER
8484
-DVIRTIO_DRIVER_ONLY
8585
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
86-
-DCORE_MAJOR=
87-
-DCORE_MINOR=
88-
-DCORE_PATCH=
86+
-DCORE_MAJOR=4
87+
-DCORE_MINOR=1
88+
-DCORE_PATCH=5
8989
-DUSE_ARDUINO_PINOUT
-37.2 KB
Binary file not shown.

variants/PORTENTA_X8/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
-DEXTRA_IDLE_STACK_REQUIRED
3535
-D__FPU_PRESENT=1
3636
-D__MBED__=1
37-
-DMBED_BUILD_TIMESTAMP=1719580895.1557932
37+
-DMBED_BUILD_TIMESTAMP=1720439046.7874656
3838
-D__MBED_CMSIS_RTOS_CM
3939
-DMBED_MPU_CUSTOM
4040
-DMBED_TICKLESS
@@ -70,7 +70,7 @@
7070
-DUSE_HAL_DRIVER
7171
-DVIRTIO_DEVICE_ONLY
7272
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
73-
-DCORE_MAJOR=
74-
-DCORE_MINOR=
75-
-DCORE_PATCH=
73+
-DCORE_MAJOR=4
74+
-DCORE_MINOR=1
75+
-DCORE_PATCH=5
7676
-DUSE_ARDUINO_PINOUT

variants/PORTENTA_X8/libs/libmbed.a

-31.1 KB
Binary file not shown.

variants/RASPBERRY_PI_PICO/defines.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
-DDEVICE_USTICKER=1
2222
-DDEVICE_WATCHDOG=1
2323
-D__MBED__=1
24-
-DMBED_BUILD_TIMESTAMP=1719580504.0819786
24+
-DMBED_BUILD_TIMESTAMP=1720439093.433086
2525
-D__MBED_CMSIS_RTOS_CM
2626
-DMBED_MPU_CUSTOM
2727
-DMBEDTLS_ENTROPY_NV_SEED
@@ -44,7 +44,7 @@
4444
-DTOOLCHAIN_GCC
4545
-DTOOLCHAIN_GCC_ARM
4646
-DMBED_NO_GLOBAL_USING_DIRECTIVE=1
47-
-DCORE_MAJOR=
48-
-DCORE_MINOR=
49-
-DCORE_PATCH=
47+
-DCORE_MAJOR=4
48+
-DCORE_MINOR=1
49+
-DCORE_PATCH=5
5050
-DUSE_ARDUINO_PINOUT
-23.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)