Lines Matching +full:development +full:- +full:tools
6 The Microchip M2GL025 board is an IGLOO2 FPGA based development board.
7 The Mi-V RISC-V soft CPU can be deployed on the MGL025 board.
9 …icrochip's website <https://www.microchip.com/en-us/products/fpgas-and-plds/fpga-and-soc-design-to…
20 .. zephyr-app-commands::
28 with RISC-V support.
32 <https://www.microchip.com/en-us/products/fpgas-and-plds/fpga-and-soc-design-tools/soc-fpga/softcon…
34 With the necessary tools installed, you can connect to the board using OpenOCD.
37 .. code-block:: bash
40 <softconsole_path>/openocd/bin/openocd --file \
41 <softconsole_path>/openocd/share/openocd/scripts/board/microsemi-riscv.cfg
45 the board. You can use the RISC-V GDB from a toolchain delivered with
51 .. code-block:: console
53 <softconsole_path>/riscv-unknown-elf-gcc/bin/riscv64-unknown-elf-gdb \
54 -ex "target extended-remote localhost:3333" \
55 -ex "set mem inaccessible-by-default off" \
56 -ex "set arch riscv:rv32" \
57 -ex "set riscv use_compressed_breakpoints no" \
58 -ex "load" <path_to_executable>