diff --git a/docs/microtvm/index.rst b/docs/microtvm/index.rst index 68583fed31f4..2371219af27f 100644 --- a/docs/microtvm/index.rst +++ b/docs/microtvm/index.rst @@ -42,6 +42,7 @@ flexible and portable to other processors such as RISC-V and does not require Ze demos run against QEMU and the following hardware: * `STM Nucleo-F746ZG `_ +* `STM STM32F746 Discovery `_ * `nRF 5340 Preview Development Kit `_ diff --git a/python/tvm/micro/contrib/zephyr.py b/python/tvm/micro/contrib/zephyr.py index 2451eac3cb61..fa032e20c930 100644 --- a/python/tvm/micro/contrib/zephyr.py +++ b/python/tvm/micro/contrib/zephyr.py @@ -352,6 +352,7 @@ def _get_nrf_device_args(self): # kwargs passed to usb.core.find to find attached boards for the openocd flash runner. BOARD_USB_FIND_KW = { "nucleo_f746zg": {"idVendor": 0x0483, "idProduct": 0x374B}, + "stm32f746g_disco": {"idVendor": 0x0483, "idProduct": 0x374B}, } def openocd_serial(self, cmake_entries):