blob: e25654d63efd3fe9d59d3ea4b3ab747b364db753 [file] [log] [blame]
/*
* Copyright (c) 2022 Rodrigo Peixoto <rodrigopex@gmail.com>
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _MESSAGES_H_
#define _MESSAGES_H_
#include <stddef.h>
#include <stdint.h>
struct external_data_msg {
void *reference;
size_t size;
};
struct bm_msg {
uint8_t bytes[CONFIG_BM_MESSAGE_SIZE];
};
#endif /* _MESSAGES_H_ */