15 lines
239 B
C
15 lines
239 B
C
#ifndef ZBUS_CHANNELS_H
|
|
#define ZBUS_CHANNELS_H
|
|
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/zbus/zbus.h>
|
|
|
|
#include "command_message.h"
|
|
|
|
|
|
ZBUS_CHAN_DECLARE(in_command_chan);
|
|
ZBUS_CHAN_DECLARE(out_command_chan);
|
|
|
|
|
|
#endif // ZBUS_CHANNELS_H
|