Page MenuHomec4science

buffers.c
No OneTemporary

File Metadata

Created
Thu, Feb 27, 15:24

buffers.c

#include "buffers.h"
#ifdef SBCP_IS_MASTER
volatile unsigned int __attribute__((space(dma))) host_rx_buffer[SBCP_RX_BUFFER_SIZE];
volatile unsigned int __attribute__((space(dma))) bus_rx_buffer[SBCP_RX_BUFFER_SIZE];
#else
volatile unsigned int __attribute__((space(dma))) bus_rx_buffer[SBCP_RX_BUFFER_SIZE];
/**
* TX buffer
* \internal
*/
unsigned int __attribute__((space(dma))) bus_tx_buffer[SBCP_PACKET_SIZE];
/**
* TX low latency buffer
* \internal
*/
unsigned int __attribute__((space(dma))) bus_ll_tx_buffer[SBCP_HEADER_SIZE + SBCP_LOW_LATENCY_OUT_SIZE];
/**
* TX Low Latency Error buffer
*/
unsigned int __attribute__((space(dma))) bus_ll_tx_error_buffer[SBCP_HEADER_SIZE + 1];
#endif

Event Timeline