|
|
@ -28,63 +28,66 @@ SOFTWARE.
|
|
|
|
#include "protocol/triple_buffered_object.h"
|
|
|
|
#include "protocol/triple_buffered_object.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define NUM_SLAVES 8
|
|
|
|
#define NUM_SLAVES 8
|
|
|
|
|
|
|
|
#define LOCAL_OBJECT_EXTRA 16
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
// master -> slave = 1 local(target all), 1 remote object
|
|
|
|
uint16_t element_size;
|
|
|
|
// slave -> master = 1 local(target 0), multiple remote objects
|
|
|
|
uint16_t buffer_size;
|
|
|
|
// master -> single slave (multiple local, target id), 1 remote object
|
|
|
|
uint8_t is_master;
|
|
|
|
typedef enum {
|
|
|
|
uint8_t buffer[] __attribute__((aligned(4)));
|
|
|
|
MASTER_TO_ALL_SLAVES,
|
|
|
|
} remote_object_t;
|
|
|
|
MASTER_TO_SINGLE_SLAVE,
|
|
|
|
|
|
|
|
SLAVE_TO_MASTER,
|
|
|
|
|
|
|
|
} remote_object_type;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
|
uint16_t element_size;
|
|
|
|
remote_object_type object_type;
|
|
|
|
uint8_t destination;
|
|
|
|
uint16_t object_size;
|
|
|
|
uint8_t buffer[] __attribute__((aligned(4)));
|
|
|
|
uint8_t buffer[] __attribute__((aligned(4)));
|
|
|
|
} local_object_t;
|
|
|
|
} remote_object_t;
|
|
|
|
|
|
|
|
|
|
|
|
#define REMOTE_OBJECT_BUFFER(id, type) \
|
|
|
|
#define REMOTE_OBJECT_SIZE(objectsize) \
|
|
|
|
typedef struct { \
|
|
|
|
(sizeof(triple_buffer_object_t) + objectsize * 3)
|
|
|
|
triple_buffer_object_t object; \
|
|
|
|
#define LOCAL_OBJECT_SIZE(objectsize) \
|
|
|
|
type buffer[3]; \
|
|
|
|
(sizeof(triple_buffer_object_t) + (objectsize + LOCAL_OBJECT_EXTRA) * 3)
|
|
|
|
} remote_object_buffer_##id##_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define MASTER_REMOTE_OBJECT(id, type) \
|
|
|
|
#define REMOTE_OBJECT_HELPER(name, type, num_local, num_remote) \
|
|
|
|
REMOTE_OBJECT_BUFFER(id, type) \
|
|
|
|
|
|
|
|
typedef struct { \
|
|
|
|
typedef struct { \
|
|
|
|
remote_object_t object; \
|
|
|
|
remote_object_t object; \
|
|
|
|
remote_object_buffer_##id##_t buffer; \
|
|
|
|
uint8_t buffer[ \
|
|
|
|
} master_remote_object_##id##_t; \
|
|
|
|
num_remote * REMOTE_OBJECT_SIZE(sizeof(type)) + \
|
|
|
|
master_remote_object_##id##_t remote_object_##id = { \
|
|
|
|
num_local * LOCAL_OBJECT_SIZE(sizeof(type))]; \
|
|
|
|
|
|
|
|
} remote_object_##name##_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define MASTER_TO_ALL_SLAVES_OBJECT(name, type) \
|
|
|
|
|
|
|
|
REMOTE_OBJECT_HELPER(name, type, 1, 1) \
|
|
|
|
|
|
|
|
remote_object_##name##_t remote_object_##name = { \
|
|
|
|
.object = { \
|
|
|
|
.object = { \
|
|
|
|
.element_size = sizeof(type), \
|
|
|
|
.object_type = MASTER_TO_ALL_SLAVES, \
|
|
|
|
.buffer_size = sizeof(remote_object_buffer_##id##_t), \
|
|
|
|
.object_size = sizeof(type), \
|
|
|
|
.is_master = true \
|
|
|
|
} \
|
|
|
|
}};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define SLAVE_REMOTE_OBJECT(id, type) \
|
|
|
|
#define MASTER_TO_SINGLE_SLAVE_OBJECT(name, type) \
|
|
|
|
REMOTE_OBJECT_BUFFER(id, type) \
|
|
|
|
REMOTE_OBJECT_HELPER(name, type, NUM_SLAVES, 1) \
|
|
|
|
typedef struct { \
|
|
|
|
remote_object_##name##_t remote_object_##name = { \
|
|
|
|
remote_object_t object; \
|
|
|
|
|
|
|
|
remote_object_buffer_##id##_t buffer[NUM_SLAVES];\
|
|
|
|
|
|
|
|
} slave_remote_object_##id##_t; \
|
|
|
|
|
|
|
|
slave_remote_object_##id##_t remote_object_##id = { \
|
|
|
|
|
|
|
|
.object = { \
|
|
|
|
.object = { \
|
|
|
|
.element_size = sizeof(type), \
|
|
|
|
.object_type = MASTER_TO_SINGLE_SLAVE, \
|
|
|
|
.buffer_size = sizeof(remote_object_buffer_##id##_t), \
|
|
|
|
.object_size = sizeof(type), \
|
|
|
|
.is_master = true \
|
|
|
|
} \
|
|
|
|
}};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define LOCAL_OBJECT(id, type) \
|
|
|
|
#define SLAVE_TO_MASTER_OBJECT(name, type) \
|
|
|
|
typedef struct { \
|
|
|
|
REMOTE_OBJECT_HELPER(name, type, 1, NUM_SLAVES) \
|
|
|
|
uint32_t element_size; \
|
|
|
|
remote_object_##name##_t remote_object_##name = { \
|
|
|
|
uint8_t buffer[NUM_SLAVES][sizeof(type) + 16][3]; \
|
|
|
|
.object = { \
|
|
|
|
} remote_object_##id##_t; \
|
|
|
|
.object_type = SLAVE_TO_MASTER, \
|
|
|
|
remote_object_##id##_t remote_object_##id = {.element_size = sizeof(type) + 16};
|
|
|
|
.object_size = sizeof(type), \
|
|
|
|
|
|
|
|
} \
|
|
|
|
#define REMOTE_OBJECT(id) (remote_object_t*)&remote_object_##id
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define REMOTE_OBJECT(name) (remote_object_t*)&remote_object_##name
|
|
|
|
|
|
|
|
|
|
|
|
void init_transport(void);
|
|
|
|
void init_transport(remote_object_t* remote_objects, uint32_t num_remote_objects);
|
|
|
|
void transport_recv_frame(uint8_t from, uint8_t* data, uint16_t size);
|
|
|
|
void transport_recv_frame(uint8_t from, uint8_t* data, uint16_t size);
|
|
|
|
uint32_t transport_send_frame(uint8_t to, uint8_t* data, uint16_t size);
|
|
|
|
uint32_t transport_send_frame(uint8_t to, uint8_t* data, uint16_t size);
|
|
|
|
|
|
|
|
|
|
|
|