add support for Alchitry Au

This commit is contained in:
Gwenhael Goavec-Merou 2021-04-16 21:20:30 +02:00
parent 4defec0db1
commit 858d9e6273
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ Universal utility for programming FPGA
__Current support kits:__ __Current support kits:__
* [Acorn CLE 215+](http://squirrelsresearch.com/acorn-cle-215/) (memory and spi flash) * [Acorn CLE 215+](http://squirrelsresearch.com/acorn-cle-215/) (memory and spi flash)
* [Alchitry Au](https://alchitry.com/products/alchitry-au-fpga-development-board) (memory)
* Trenz cyc1000 Cyclone 10 LP 10CL025 (memory and spi flash) * Trenz cyc1000 Cyclone 10 LP 10CL025 (memory and spi flash)
* [Colorlight 5A-75B (version 7)](https://fr.aliexpress.com/item/32281130824.html) (memory and spi flash) * [Colorlight 5A-75B (version 7)](https://fr.aliexpress.com/item/32281130824.html) (memory and spi flash)
* [Digilent Arty A7 xc7a35ti](https://reference.digilentinc.com/reference/programmable-logic/arty-a7/start) (memory and spi flash) * [Digilent Arty A7 xc7a35ti](https://reference.digilentinc.com/reference/programmable-logic/arty-a7/start) (memory and spi flash)

View File

@ -85,6 +85,7 @@ typedef struct {
static std::map <std::string, target_cable_t> board_list = { static std::map <std::string, target_cable_t> board_list = {
JTAG_BOARD("acornCle215", "", 0, 0), JTAG_BOARD("acornCle215", "", 0, 0),
JTAG_BOARD("alchitry_au", "ft2232", 0, 0),
JTAG_BOARD("arty", "digilent", 0, 0), JTAG_BOARD("arty", "digilent", 0, 0),
JTAG_BOARD("nexysVideo", "digilent_b", 0, 0), JTAG_BOARD("nexysVideo", "digilent_b", 0, 0),
JTAG_BOARD("kc705", "digilent", 0, 0), JTAG_BOARD("kc705", "digilent", 0, 0),