从datasheet中查到
IO口寄存器基地址Base Address:0x01C20800
PE口的寄存器PE Data Register 偏移offset: 0xA0,那么PE_DAT地址就是0x01C208A0
现在要访问PE4的值,PE4就是0x01C208A4
程序如下:
-
#include <stdio.h>
-
#include <stdlib.h>
-
#include <unistd.h>
-
#include <sys/types.h>
-
#include <sys/stat.h>
-
#include <fcntl.h>
-
#include <sys/mman.h>
-
-
int main ()
-
{
-
int mem_fd = open( "/dev/mem", O_RDONLY|O_SYNC );
-
if (mem_fd == -1)
-
{
-
perror("open /dev/mem");
-
return -1;
-
}
-
int size = 0x800 + 0xa4;
-
-
int *addr = (int*)mmap( 0, size, PROT_READ, MAP_SHARED, mem_fd, 0x01C20000); //最后参数必须与页大小对齐,所以没有直接指定gpio地址,而是先映射后再通过偏移访问
-
close(mem_fd);
-
if (addr == MAP_FAILED)
-
{
-
perror("mmap");
-
return -1;
-
}
-
printf( "0x%x\n", *(addr+ (size-4)/4) );
-
munmap(addr, size);
-
return 0;
-
}
作者:帅得不敢出门 程序员群:31843264
阅读(7130) | 评论(0) | 转发(0) |