From ed25e0e8932895686ffb5166966beb88ddcbd410 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 18 Oct 2019 13:21:43 +0100 Subject: IVGCVSW-4005 Add PacketFamilyId to version resolver Change-Id: Ief9373871438df4e1d353bbc545a3ee4f25c1fb0 Signed-off-by: Jim Flynn --- tests/profiling/gatordmock/GatordMockMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/profiling/gatordmock/GatordMockMain.cpp') diff --git a/tests/profiling/gatordmock/GatordMockMain.cpp b/tests/profiling/gatordmock/GatordMockMain.cpp index 2423493491..dd483631ad 100644 --- a/tests/profiling/gatordmock/GatordMockMain.cpp +++ b/tests/profiling/gatordmock/GatordMockMain.cpp @@ -29,10 +29,10 @@ int main(int argc, char* argv[]) // This functor will receive back the selection response packet. armnn::gatordmock::PeriodicCounterSelectionResponseHandler periodicCounterSelectionResponseHandler( - 0, 4, packetVersionResolver.ResolvePacketVersion(4).GetEncodedValue()); + 0, 4, packetVersionResolver.ResolvePacketVersion(0, 4).GetEncodedValue()); // This functor will receive the counter data. armnn::gatordmock::PeriodicCounterCaptureCommandHandler counterCaptureCommandHandler( - 1, 0, packetVersionResolver.ResolvePacketVersion(0).GetEncodedValue()); + 1, 0, packetVersionResolver.ResolvePacketVersion(1, 0).GetEncodedValue()); // Register different derived functors registry.RegisterFunctor(&periodicCounterSelectionResponseHandler); -- cgit v1.2.1