00001
00002
00003
00004
00005
00006
00007
00019 #ifndef __HAPREGS_H__
00020 #define __HAPREGS_H__
00021
00022 #ifdef __cplusplus
00023 extern "C" {
00024 #endif
00025
00026 #include <stdint.h>
00027
00039 extern int ReadReg32(void *board, unsigned long address, uint32_t *value);
00040
00052 extern int WriteReg32(void *board, unsigned long address, uint32_t value);
00053
00070 extern int CloseReg32(void *board);
00071
00090 extern void *OpenReg32(void);
00091
00092 #ifdef __cplusplus
00093 }
00094 #endif
00095
00096 #endif