From 2cf895332ffd54ea1a43b090859943665709e420 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 14 Jun 2024 11:48:51 +0200 Subject: decide on pbdrv serialization architecture --- test/pbdrv/cmd.h | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 test/pbdrv/cmd.h (limited to 'test/pbdrv/cmd.h') diff --git a/test/pbdrv/cmd.h b/test/pbdrv/cmd.h deleted file mode 100644 index 52bee37..0000000 --- a/test/pbdrv/cmd.h +++ /dev/null @@ -1,32 +0,0 @@ -#pragma once - -#include "pb-types.h" - -static const pb_cmd_req_read_t expected_req_read = { - .propid = 0, -}; - -static const pb_cmd_res_read_t expected_res_read = { - .propid = 0, - .value = (uint8_t[]) { 0x00, }, - ._value_size = 1, -}; - -static const pb_cmd_req_write_t expected_req_write = { - .propid = 0, - .value = (uint8_t[]) { 0x00, }, - ._value_size = 1, -}; - -static const pb_cmd_req_state_t expected_req_state = { - .state = PB_GS_PLAYING, -}; - -static const pb_cmd_res_state_t expected_res_state = { - .state = PB_GS_IDLE, -}; - -static const pb_cmd_req_set_state_t expected_req_set_state ={ - .state = PB_GS_PLAYING, -}; - -- cgit v1.2.3