From 3f6bd266d979b6eda73fb3221ac38add407ccea1 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 5 Jul 2019 13:09:21 +0200 Subject: [PATCH] cores/gpio: remove Blinker --- litex/soc/cores/gpio.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/litex/soc/cores/gpio.py b/litex/soc/cores/gpio.py index 37f7353bc..b4ec50a39 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)