1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
| /****************************************/
/* */
/* Pilotage des GPIO Avec SysFS */
/* */
/****************************************/
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
/*************************************/
/* */
/* Déclaration des Fonctions */
/* */
/*************************************/
int fd;
void GPIO_Out(int pin)
{
char buffer[255];
sprintf(buffer, "/sys/class/gpio/export");
if ((fd = open(buffer, O_WRONLY)) == -1)
{
perror("GPIO_Out 1 : ");
exit(1);
}
sprintf(buffer, "%d", pin);
if (write(fd, buffer, strlen(buffer)) != (ssize_t)strlen(buffer))
{
perror("GPIO_Out 2 : ");
exit(1);
}
close(fd);
sprintf(buffer, "/sys/class/gpio/gpio%d/direction", pin);
if ((fd = open(buffer, O_WRONLY)) == -1)
{
perror("GPIO_Out 3 : ");
exit(1);
}
if (write(fd, "out", 3) != 3)
{
perror("GPIO_Out 4 : ");
exit(1);
}
close(fd);
sprintf(buffer, "/sys/class/gpio/gpio%d/value", pin);
if ((fd = open(buffer, O_WRONLY)) == -1)
{
perror("GPIO_Out 5 : ");
exit(1);
}
}
int GPIO_On(int _sleep)
{
usleep(_sleep);
return write(fd, "1", 1);
}
int GPIO_Off(int _sleep)
{
usleep(_sleep);
return write(fd, "0", 1);
}
void GPIO_Finish(int pin)
{
char buffer[255];
close(fd);
sprintf(buffer, "/sys/class/gpio/unexport");
if ((fd = open(buffer, O_WRONLY)) == -1)
{
perror("GPIO_Finish 1 : ");
exit(1);
}
sprintf(buffer, "%d", pin);
if (write(fd, buffer, strlen(buffer)) != (ssize_t)strlen(buffer))
{
perror("GPIO_Finish 2 : ");
exit(1);
}
close(fd);
}
/********************************/
/* */
/* Procédure Principale */
/* */
/********************************/
int main(void)
{
GPIO_Out(18);
for (int i = 0; i < 100; i++)
{
GPIO_On(50000);
GPIO_Off(50000);
}
GPIO_Finish(18);
exit(EXIT_SUCCESS);
} |
Partager