Skip to content

Commit

Permalink
[µTVM] Zephyr: Add STM32F746 disco board as a test platform (apache#7863
Browse files Browse the repository at this point in the history
)

Add STM32F746 Discovery board as test platform so tests can run against
it by using:

$ pytest test_zephyr.py --microtvm-platforms=stm32f746xx_disco

Since that board has the same MCU identifier as the ST Nucleo board,
the test platform identifier for Nucleo board is renamed and a
suffix _nucleo is added to differentiate it from the ST Disco board.

Signed-off-by: Gustavo Romero <[email protected]>
  • Loading branch information
gromero authored and Trevor Morris committed May 6, 2021
1 parent b747c86 commit c8584ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/micro/zephyr/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"host": ("host", "qemu_x86"),
"host_riscv32": ("host", "qemu_riscv32"),
"host_riscv64": ("host", "qemu_riscv64"),
"stm32f746xx": ("stm32f746xx", "nucleo_f746zg"),
"stm32f746xx_nucleo": ("stm32f746xx", "nucleo_f746zg"),
"stm32f746xx_disco": ("stm32f746xx", "stm32f746g_disco"),
"nrf5340dk": ("nrf5340dk", "nrf5340dk_nrf5340_cpuapp"),
}

Expand Down

0 comments on commit c8584ef

Please sign in to comment.