summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiFiPhile <[email protected]>2025-12-16 21:11:13 +0100
committerHiFiPhile <[email protected]>2025-12-16 21:19:18 +0100
commitce7b15d6f94b1f8efe917f40eb61b8c3a703d0f8 (patch)
treeb4865cc00d78a9afed4a7e3c6ac447a6d23c944b
parentabf27bfa37f9e8bee49011eb91f7088287afa529 (diff)
more fixes
Signed-off-by: HiFiPhile <[email protected]>
-rwxr-xr-x.github/workflows/ci_set_matrix.py4
-rw-r--r--README.rst4
-rw-r--r--hw/bsp/rw61x/family.cmake1
-rw-r--r--hw/bsp/stm32h5/family.mk1
4 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci_set_matrix.py b/.github/workflows/ci_set_matrix.py
index b682da1a2..c276d5253 100755
--- a/.github/workflows/ci_set_matrix.py
+++ b/.github/workflows/ci_set_matrix.py
@@ -21,8 +21,8 @@ family_list = {
"imxrt": ["arm-gcc", "arm-clang"],
"kinetis_k kinetis_kl kinetis_k32l2": ["arm-gcc", "arm-clang"],
"lpc11 lpc13 lpc15 lpc17 lpc18 lpc40 lpc43": ["arm-gcc", "arm-clang"],
- "lpc51 lpc54 lpc55 mcx rw61x": ["arm-gcc", "arm-clang"],
- "maxim mm32 msp432e4 tm4c": ["arm-gcc"],
+ "lpc51 lpc54 lpc55": ["arm-gcc", "arm-clang"],
+ "maxim mcx mm32 msp432e4 rw61x tm4c": ["arm-gcc"],
"msp430": ["msp430-gcc"],
"nrf": ["arm-gcc", "arm-clang"],
"nuc100_120 nuc121_125 nuc126 nuc505 xmc4000": ["arm-gcc"],
diff --git a/README.rst b/README.rst
index 58a9e393e..178a084ce 100644
--- a/README.rst
+++ b/README.rst
@@ -209,8 +209,8 @@ Supported CPUs
| | +-------------------+--------+------+-----------+------------------------+--------------------+
| | | A15 | ✔ | | | ci_fs | |
| +---------+-------------------+--------+------+-----------+------------------------+--------------------+
-| | RW61x | ✔ | ✔ | ✔ | ci_hs, ehci | |
-+--------------+-----------------------------+--------+------+-----------+------------------------+-------------------+
+| | RW61x | ✔ | ✔ | ✔ | ci_hs, ehci | |
++--------------+-----------------------------+--------+------+-----------+------------------------+--------------------+
| Raspberry Pi | RP2040, RP2350 | ✔ | ✔ | ✖ | rp2040, pio_usb | |
+--------------+-----+-----------------------+--------+------+-----------+------------------------+--------------------+
| Renesas | RX | 63N, 65N, 72N | ✔ | ✔ | ✖ | rusb2 | |
diff --git a/hw/bsp/rw61x/family.cmake b/hw/bsp/rw61x/family.cmake
index 8c332f96e..6782e87e3 100644
--- a/hw/bsp/rw61x/family.cmake
+++ b/hw/bsp/rw61x/family.cmake
@@ -82,7 +82,6 @@ function(family_configure_example TARGET RTOS)
target_link_options(${TARGET} PUBLIC
"LINKER:--script=${LD_FILE_GNU}"
--specs=nosys.specs --specs=nano.specs
- -nostartfiles
)
elseif (CMAKE_C_COMPILER_ID STREQUAL "Clang")
target_link_options(${TARGET} PUBLIC
diff --git a/hw/bsp/stm32h5/family.mk b/hw/bsp/stm32h5/family.mk
index 89a2eddd5..e34bb513e 100644
--- a/hw/bsp/stm32h5/family.mk
+++ b/hw/bsp/stm32h5/family.mk
@@ -49,6 +49,7 @@ SRC_C += \
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_uart.c \
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_uart_ex.c \
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_gpio.c \
+ $(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_i2c.c \
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_dma.c
INC += \