#ifndef INCLUDE_PRU_COMMON_PRU_ETHERNET_H_
#define INCLUDE_PRU_COMMON_PRU_ETHERNET_H_
#include <stdint.h>

typedef struct {
    uint32_t length;
    uint8_t buffer[1024];
} ethernet_message_t;

void WaitForMessage(ethernet_message_t *msg);
void ResetRxL1Fifo(void);

#endif // INCLUDE_PRU_COMMON_PRU_ETHERNET_H_
