blob: 564b98d808a12b7c171440d248019f9607a92218 [file] [log] [blame]
/*
* Copyright (c) 2022 Rodrigo Peixoto <rodrigopex@gmail.com>
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _MESSAGES_H_
#define _MESSAGES_H_
#include <stdbool.h>
#include <stdint.h>
struct version_msg {
uint8_t major;
uint8_t minor;
uint16_t build;
};
struct sensor_data_msg {
int a;
int b;
};
struct net_pkt_msg {
char x;
bool y;
};
struct action_msg {
bool status;
};
#endif /* _MESSAGES_H_ */