no-OS
no_os_axi_io.h
Go to the documentation of this file.
1 /***************************************************************************/
40 #ifndef _NO_OS_AXI_IO_H_
41 #define _NO_OS_AXI_IO_H_
42 
43 /******************************************************************************/
44 /***************************** Include Files **********************************/
45 /******************************************************************************/
46 
47 #include <stdint.h>
48 
49 /******************************************************************************/
50 /************************ Functions Declarations ******************************/
51 /******************************************************************************/
52 
53 /* AXI IO Read data */
54 int32_t no_os_axi_io_read(uint32_t base, uint32_t offset, uint32_t *data);
55 
56 /* AXI IO Write data */
57 int32_t no_os_axi_io_write(uint32_t base, uint32_t offset, uint32_t data);
58 
59 #endif // _NO_OS_AXI_IO_H_
no_os_axi_io_read
int32_t no_os_axi_io_read(uint32_t base, uint32_t offset, uint32_t *data)
AXI IO Altera specific read function.
Definition: altera_axi_io.c:59
no_os_axi_io_write
int32_t no_os_axi_io_write(uint32_t base, uint32_t offset, uint32_t data)
AXI IO Altera specific write function.
Definition: altera_axi_io.c:73