From e87436fc03ea915e4460c307a4da6f41d09ca302 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 21 Dec 2015 11:15:58 +0800 Subject: [PATCH] coredevice/analyzer: remove zero-timestamp msg filtering (now unnecessary) --- artiq/coredevice/analyzer.py | 1 - 1 file changed, 1 deletion(-) diff --git a/artiq/coredevice/analyzer.py b/artiq/coredevice/analyzer.py index 89ae0192f..b3b187d69 100644 --- a/artiq/coredevice/analyzer.py +++ b/artiq/coredevice/analyzer.py @@ -185,7 +185,6 @@ def messages_to_vcd(filename, devices, messages): channel_handlers = create_channel_handlers(vcd_manager, devices) vcd_manager.set_time(0) - messages = [m for m in messages if get_message_time(m)] # TODO: remove this hack messages = sorted(messages, key=get_message_time) if messages: start_time = get_message_time(messages[0])