diff options
| author | hathach <[email protected]> | 2026-05-30 00:11:19 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-05-30 00:11:19 +0700 |
| commit | 28beb0fe4db608c1a9001452d099cb5ea095377e (patch) | |
| tree | e3a372dfa0f885634c3d997afca82d09b9a0d16b | |
| parent | 24700ea8ef09d1a990fd3aff3345064c2a54088b (diff) | |
ci: fix IAR Pe111 and stm32h7s3 flash overflow
- examples/device/midi2_device/src/main.c: drop the unreachable
`return 0;` after the `while(1)` superloop. IAR with
--warnings_are_errors rejects Pe111 (statement is unreachable);
C99 lets `int main` fall off the end, matching midi_test.
- examples/host/msc_file_explorer_freertos/skip.txt: skip
stm32h7s3nucleo. The board has only 64 KB on-chip FLASH and the
FreeRTOS + FatFS host MSC explorer now overflows by ~248 bytes
after the async control queue refactor.
Co-Authored-By: Claude Opus 4.7 <[email protected]>
| -rw-r--r-- | examples/device/midi2_device/src/main.c | 2 | ||||
| -rw-r--r-- | examples/host/msc_file_explorer_freertos/skip.txt | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/examples/device/midi2_device/src/main.c b/examples/device/midi2_device/src/main.c index 62741ac41..ce052a20b 100644 --- a/examples/device/midi2_device/src/main.c +++ b/examples/device/midi2_device/src/main.c @@ -715,6 +715,4 @@ int main(void) { } } } - - return 0; } diff --git a/examples/host/msc_file_explorer_freertos/skip.txt b/examples/host/msc_file_explorer_freertos/skip.txt index f0be07d25..a8c9bea2a 100644 --- a/examples/host/msc_file_explorer_freertos/skip.txt +++ b/examples/host/msc_file_explorer_freertos/skip.txt @@ -1,3 +1,4 @@ mcu:CH32F20X board:lpcxpresso54114 mcu:FT90X +board:stm32h7s3nucleo |
