From ed1cd16ecc7eb69941ec1c0310326aedb9f3e3c1 Mon Sep 17 00:00:00 2001 From: Pavle Janevski Date: Wed, 26 Feb 2025 06:56:49 +0000 Subject: [PATCH] Fix UMD unit tests on 80.15 fw bundle --- device/api/umd/device/types/blackhole_telemetry.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/device/api/umd/device/types/blackhole_telemetry.h b/device/api/umd/device/types/blackhole_telemetry.h index 76d42d3b..3ec2a988 100644 --- a/device/api/umd/device/types/blackhole_telemetry.h +++ b/device/api/umd/device/types/blackhole_telemetry.h @@ -10,7 +10,10 @@ namespace tt::umd { namespace blackhole { -constexpr uint8_t NUMBER_TELEMETRY_TAGS = 38; +// TODO: this is resized to push the release of the 80.15 firmware version. +// Rewrite the Blackhole telemetry class to support any tag or if the spec for Blackhole +// becomes fixed just set this number to the proper size. +constexpr uint8_t NUMBER_TELEMETRY_TAGS = 64; constexpr uint8_t TAG_BOARD_ID_HIGH = 1; constexpr uint8_t TAG_BOARD_ID_LOW = 2;