no-OS
no_os_axi_io.h
Go to the documentation of this file.
1 /***************************************************************************/
34 #ifndef _NO_OS_AXI_IO_H_
35 #define _NO_OS_AXI_IO_H_
36 
37 /******************************************************************************/
38 /***************************** Include Files **********************************/
39 /******************************************************************************/
40 
41 #include <stdint.h>
42 
43 /******************************************************************************/
44 /************************ Functions Declarations ******************************/
45 /******************************************************************************/
46 
47 /* AXI IO Read data */
48 int32_t no_os_axi_io_read(uint32_t base, uint32_t offset, uint32_t *data);
49 
50 /* AXI IO Write data */
51 int32_t no_os_axi_io_write(uint32_t base, uint32_t offset, uint32_t data);
52 
53 #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:53
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:67