summaryrefslogtreecommitdiff
path: root/examples/device
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-05-30 00:11:19 +0700
committerhathach <[email protected]>2026-05-30 00:11:19 +0700
commit28beb0fe4db608c1a9001452d099cb5ea095377e (patch)
treee3a372dfa0f885634c3d997afca82d09b9a0d16b /examples/device
parent24700ea8ef09d1a990fd3aff3345064c2a54088b (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]>
Diffstat (limited to 'examples/device')
-rw-r--r--examples/device/midi2_device/src/main.c2
1 files changed, 0 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;
}