Skip to content

Commit 9a473e2

Browse files
Make test configuration for ST NUCLEO-U575ZI-Q board
Because there is no standard clock configuration available for this chip family yet and because this chip uses a very slow clock after reset (4 MHz), the test configurtion has to use reduced tick frequency of 100 Hz. It will fail during the tests with default tick frequency of 1000 Hz, because some test case steps are expected to complete within single tick.
1 parent 960ab7a commit 9a473e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ available in YAML files.
4646
with *STM32G0* chip.
4747
- Added support and test configuration for [NUCLEO-F767ZI](https://www.st.com/en/evaluation-tools/nucleo-f767zi.html)
4848
board with *STM32F7* chip.
49-
- Support and build configuration for [NUCLEO-U575ZI-Q](https://www.st.com/en/evaluation-tools/nucleo-u575zi-q.html)
49+
- Support and test configuration for [NUCLEO-U575ZI-Q](https://www.st.com/en/evaluation-tools/nucleo-u575zi-q.html)
5050
board with *STM32U5* chip.
5151
- Added boolean `#define` in `distortosConfiguration.h` which specifies selected board, e.g.
5252
`#define DISTORTOS_BOARD_ST_NUCLEO_F767ZI 1` for *NUCLEO-F767ZI* board.

configurations/ST_NUCLEO-U575ZI-Q/build/distortosConfiguration.cmake renamed to configurations/ST_NUCLEO-U575ZI-Q/test/distortosConfiguration.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ set("distortos_Build_00_Static_destructors"
2323
"BOOL"
2424
"Enable static destructors.\n\nEnable destructors for objects with static storage duration. As embedded applications almost never \"exit\", these destructors are usually never executed, wasting ROM.")
2525
set("distortos_Scheduler_00_Tick_frequency"
26-
"1000"
26+
"100"
2727
CACHE
2828
"STRING"
2929
"System's tick frequency, Hz.\n\nAllowed range: [1; 2147483647]")
3030
set("distortos_Scheduler_01_Round_robin_frequency"
3131
"10"
3232
CACHE
3333
"STRING"
34-
"Round-robin frequency, Hz.\n\nAllowed range: [1; 1000]")
34+
"Round-robin frequency, Hz.\n\nAllowed range: [1; 100]")
3535
set("distortos_Scheduler_02_Support_for_signals"
3636
"ON"
3737
CACHE

0 commit comments

Comments
 (0)