한국어 Select Language

수업 / 강의

번호
제목
글쓴이
12 Touch screen 실습 예제
mpark
63402   2015-05-27
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> /* for ioctl */ #include <sys/types.h> #include <linux/fb.h> /* for fb_var_screeninfo, FBIOGET_VSCREENI...  
11 fbpixel.c
mpark
54355   2015-05-06
#include <stdio.h> #include <stdlib.h>/* for exit */ #include <unistd.h> /* for open/close.. */ #include <fcntl.h> /* for O_RDONLY */ #include <sys/ioctl.h> /* for ioctl*/ #include <sys/types.h> /* for lsee...  
10 dslinux 용 Makefile file
mpark
54212   2013-05-17
CC=ucfront-gcc arm-linux-elf-gcc CFLAGS=-O2 -g -fomit-frame-pointer -fno-common -fno-builtin -Wall -mswp-byte-writes -DCONFIG_NDS_ROM8BIT -mcpu=arm946e-s -mfpu=fpe3 -DEMBED -D__PIC__ -fpic -msingle-pic-base -Dlinux...  
9 test
mpark
53480   2015-07-02
//------------------------------------------------------------------------------------------------------------ // // ODROID-C GPIO(LED) / ADC Test Application. // // Defined port number is wiringPi port number. // // Compile : gcc -o <creat...  
8 clcd 예제
mpark
50824   2013-05-02
#include <stdlib.h> #include <unistd.h> #include <sys/mman.h> #include <asm/fcntl.h> #include <stdio.h> #define ADDRLCD 0x12380000 #define ADDRLCD_CMD 0x12300000 void setcommand(unsigned short); void init_clc...  
7 fnd & key device driver file
mpark
48721   2013-04-02
Device drivers of fnd & key  
6 Toolchain & Kernel source codes
ssllab
47600   2013-03-11
[Download]- Toolchain - Kernel source codes  
5 lcddot.c file
mpark
46509   2013-05-23
lcddot.c  
4 fbinfo.c file
mpark
45610   2013-05-23
fbinfo.c  
3 ds_power.c file
mpark
45292   2013-05-30
ds_power.c  
2 NDSL LCD 점찍기 예제
mpark
43419   2015-05-12
#include <stdio.h> #include <stdlib.h> /* for exit */ #include <unistd.h> /* for open/close .. */ #include <fcntl.h> /* for O_RDWR */ #include <sys/ioctl.h> /* for ioctl */ #include <sys/mman.h> /* for mmap...  
1 네모그리기 예제 소스
mpark
43052   2015-05-12
/* * fbrandrect.c : Frame buffer draw random rectangular example * * */ #include <stdio.h> #include <stdlib.h> /* for exit */ #include <unistd.h> /* for open/close .. */ #include <fcntl.h> /* for O_RDON...