한국어 Select Language

수업 / 강의

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