From 43f8c230a7971b87e9f0a3a2a4acd434a986db63 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 12 Apr 2018 17:23:46 +0200 Subject: [PATCH] soc_core: uncomment uart interrupt deletion --- litex/soc/integration/soc_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 5198e5c9a..5ef85397e 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -146,8 +146,8 @@ class SoCCore(Module): else: self.submodules.uart_phy = uart.RS232PHY(platform.request(uart_name), clk_freq, uart_baudrate) self.submodules.uart = uart.UART(self.uart_phy) - #else: - # del self.soc_interrupt_map["uart"] + else: + del self.soc_interrupt_map["uart"] if ident: if ident_version: