diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-14 11:48:51 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-06-14 11:48:51 +0200 |
commit | 2cf895332ffd54ea1a43b090859943665709e420 (patch) | |
tree | 04f02ec914052515182c97457532c2f970877024 /test/pbdrv/cmd.h | |
parent | 557b995f9641f7cb7a0566eefac7e576debec61a (diff) |
decide on pbdrv serialization architecture
Diffstat (limited to 'test/pbdrv/cmd.h')
-rw-r--r-- | test/pbdrv/cmd.h | 32 |
1 files changed, 0 insertions, 32 deletions
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, -}; - |