add support for Alchitry Au
This commit is contained in:
parent
4defec0db1
commit
858d9e6273
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue