한국어 Select Language

수업 / 강의

번호
제목
글쓴이
12 네모그리기 예제 소스
mpark
43031   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...  
11 NDSL LCD 점찍기 예제
mpark
43392   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...  
10 ds_power.c file
mpark
45266   2013-05-30
ds_power.c  
9 fbinfo.c file
mpark
45577   2013-05-23
fbinfo.c  
8 lcddot.c file
mpark
46489   2013-05-23
lcddot.c  
7 Toolchain & Kernel source codes
ssllab
47572   2013-03-11
[Download]- Toolchain - Kernel source codes  
6 fnd & key device driver file
mpark
48698   2013-04-02
Device drivers of fnd & key  
5 clcd 예제
mpark
50795   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...  
4 test
mpark
53459   2015-07-02
//------------------------------------------------------------------------------------------------------------ // // ODROID-C GPIO(LED) / ADC Test Application. // // Defined port number is wiringPi port number. // // Compile : gcc -o <creat...  
3 dslinux 용 Makefile file
mpark
54191   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...  
2 fbpixel.c
mpark
54327   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...  
1 Touch screen 실습 예제
mpark
63378   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...