mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-03-13 13:29:11 +02:00
23 lines
365 B
C
Executable File
23 lines
365 B
C
Executable File
/*
|
|
* JZ47xx GPIO lines
|
|
*
|
|
* Written 2010 by Andres Calderon andres.calderon@emqbit.com
|
|
*/
|
|
|
|
#ifndef __jz47xx_mmap_h__
|
|
#define __jz47xx_mmap_h__
|
|
|
|
#include <sys/mman.h>
|
|
#include <stdio.h>
|
|
#include <sys/mman.h>
|
|
#include <fcntl.h>
|
|
#include <stdlib.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
|
|
#include "jz47xx_gpio.h"
|
|
|
|
unsigned int * jz_mmap (off_t address);
|
|
|
|
#endif
|