From 5755b1cc51ec1b9660c5a76b0c30b2cab48caac5 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Tue, 31 Dec 2024 21:03:00 +0100 Subject: [PATCH] fix: divisors list had excess element --- hdl_spi/src/spi_masterslave.vhd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdl_spi/src/spi_masterslave.vhd b/hdl_spi/src/spi_masterslave.vhd index 00257e6..b79a138 100644 --- a/hdl_spi/src/spi_masterslave.vhd +++ b/hdl_spi/src/spi_masterslave.vhd @@ -9,7 +9,7 @@ entity spi_masterslave is generic ( SIZES : natural_vector := (8, 16); SIZES_2LOG : natural := 1; - DIVISORS : natural_vector := (2, 4, 6, 8, 16, 32, 64, 128, 256); + DIVISORS : natural_vector := (2, 4, 8, 16, 32, 64, 128, 256); DIVISORS_LOG2 : natural := 3; CSN_PULSE_CYCLES : natural := 1 ); -- 2.48.1