1 /*
2  * Copyright (c) 2022 Rodrigo Peixoto <rodrigopex@gmail.com>
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #ifndef _MESSAGES_H_
6 #define _MESSAGES_H_
7 #include <stddef.h>
8 #include <stdint.h>
9 
10 struct bm_msg {
11 	uint8_t bytes[CONFIG_BM_MESSAGE_SIZE];
12 };
13 
14 #endif /* _MESSAGES_H_ */
15