From 0e9fbf19e188f49bb391f0c9c364c22e6f0395c9 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Thu, 12 Sep 2024 07:58:01 +0100 Subject: [PATCH] get_recording or get_download --- spinn_pdp2/threshold_vertex.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spinn_pdp2/threshold_vertex.py b/spinn_pdp2/threshold_vertex.py index e290738..2932203 100644 --- a/spinn_pdp2/threshold_vertex.py +++ b/spinn_pdp2/threshold_vertex.py @@ -366,9 +366,8 @@ def read(self, placement, buffer_manager, channel): :param channel: recording channel to be read :return: recorded data as packed bytes """ - raw_data, missing_data = buffer_manager.get_data_by_placement( - placement, channel - ) + raw_data, missing_data = buffer_manager.get_recording( + placement, channel) if missing_data: raise ValueError("missing data!")