From 1b065277f96e4af6b1f8ff2c7f0ddce3ac686397 Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Thu, 17 Dec 2020 09:28:45 +0100 Subject: [PATCH] add acorn CLE 215+ support --- README.md | 1 + src/board.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 597042c..f0e9c0e 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Universal utility for programming FPGA __Current support kits:__ +* [Acorn CLE 215+](http://squirrelsresearch.com/acorn-cle-215/) (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) * [Digilent Arty A7 xc7a35ti](https://reference.digilentinc.com/reference/programmable-logic/arty-a7/start) (memory and spi flash) diff --git a/src/board.hpp b/src/board.hpp index 3c88a79..d3a0513 100644 --- a/src/board.hpp +++ b/src/board.hpp @@ -84,6 +84,7 @@ typedef struct { {_cs, _sck, _so, _si, _holdn, _wpn}}} static std::map board_list = { + JTAG_BOARD("acornCle215", "", 0, 0), JTAG_BOARD("arty", "digilent", 0, 0), JTAG_BOARD("nexysVideo", "digilent_b", 0, 0), JTAG_BOARD("colorlight", "", 0, 0),