From: Florent Kermarrec Date: Fri, 5 Jul 2019 11:09:21 +0000 (+0200) Subject: cores/gpio: remove Blinker X-Git-Tag: 24jan2021_ls180~1129 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f6bd266d979b6eda73fb3221ac38add407ccea1;p=litex.git cores/gpio: remove Blinker --- diff --git a/litex/soc/cores/gpio.py b/litex/soc/cores/gpio.py index 37f7353b..b4ec50a3 100644 --- a/litex/soc/cores/gpio.py +++ b/litex/soc/cores/gpio.py @@ -26,10 +26,3 @@ class GPIOInOut(Module): def get_csrs(self): return self.gpio_in.get_csrs() + self.gpio_out.get_csrs() - - -class Blinker(Module): - def __init__(self, signal, divbits=26): - counter = Signal(divbits) - self.comb += signal.eq(counter[divbits-1]) - self.sync += counter.eq(counter + 1)