Skip to content

Instantly share code, notes, and snippets.

@vodik
Created July 17, 2010 00:42
Show Gist options
  • Save vodik/479119 to your computer and use it in GitHub Desktop.
Save vodik/479119 to your computer and use it in GitHub Desktop.
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
int main(int argc, char *argv[])
{
int fd = open("/dev/spi_driver", O_RDONLY);
if (fd < 0)
strerror(errno);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment