[Kernel Porting] 0~9 , A~Z 디폴트값 확인하기
작업 환경-메인 OS : Windows 8.1K(Intel Core i5-4590)-작업 OS : Ubuntu 14.04.5 LTS 64bit(VirtualBox)-장 비 명 : Hybus-Smart4412 ieb_dot.c/* ~/Smart4412/Development/Source/Kernel/kernel_4412/drivers/Exynos4412TKU_IEB/ieb_dot.c에 디폴트로 정의 되어있음*/ {0x3C, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3C}, //0{0x08, 0x18, 0x08, 0x08, 0x08, 0x08, 0x08, 0x1C}, //1{0x1C, 0x22, 0x02, 0x02, 0x1C, 0x20, 0x20, 0x3E}, //2{0x1C, 0x..
더보기
[Kernel Porting] FND에 소수점 표현하기
작업 환경-메인 OS : Windows 8.1K(Intel Core i5-4590)-작업 OS : Ubuntu 14.04.5 LTS 64bit(VirtualBox)-장 비 명 : Hybus-Smart4412 fnd1.c#include #include #include #include #define fnd "/dev/fnd"unsigned char fnd_data[4];void PrintFnd(char c,int i);int main(){char data[6]; int num, i, flag=1;int fnd_d;// 1 2 3 4 5 6 7 8 9 0 .// 0xF9, 0xA4, 0xB0, 0x99, ~0x6D, ~0x7D, ~0x07, ~0x7F, 0x10, 0xC0, 0x80 fnd_d=open(fnd..
더보기