일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- london
- 익뮤
- 어플
- 프라하성
- BMW 박물관
- i-sms
- 노키아
- 타워브릿지
- 통신이론
- GMF2011
- Interlaken
- BMW Museum
- 파리
- 루브르
- Zaanse Schans
- N5800
- Narita
- 프랑스
- Paris
- Amsterdam
- 5800
- Nell
- free i-sms
- 나리타 공항
- 베르사유 궁전
- 프라하
- 카를교
- 바티칸
- Jekyll & Hyde
- 융프라우
- Today
- Total
목록공부 (12)
기억
user home dir(~/)에 .vimrc 생성 set nu set ts=4 set shiftwidth=4 set autoindent set cindent set smartindent syntax on 내용 입력
1. 목적 : 통합적인 관리(PnP, Power)2. 내부 구조 : 객체 (kobject), sysfs(객체의 view)3. 구현 방법 : bus/device/driver/classplatform_bus ------ platform_device [platform_driver] -- platform_device [platform_driver] -- platform_device [platform_driver] LDM 구현 방법1. platform_bus 객체의 등록 : 부팅시 커널이 등록해줌
http://blog.naver.com/yiyunju?Redirect=Log&logNo=150126414174 http://blog.naver.com/sikyungelove/10091786688 16MB 램디스크를 8MB 램디스크에 복사하기 mkdir ram_org gzip -d ramdisk.gz mount -o loop ramdisk ram_org rm ram_org/bin/busybox2 cp -a ram_org/. ram_tmp umount ram_org gzip ramdisk MTD 1. app ----------- File System --> JFFS2, YAFFS2, RFS, UBIFS | MTD core | NAND driver | NAND Flash 2. app --> FUSE PC --..
3. Member function ex1) struct point{ double x,y; void print(){cout
1. structure 기본. struct point{ double x, y; } point PT; struct 는 keyword이며, point는 structure의 tagname이다. 변수 x,y는 structure의 member이다. PT는 point와 동일 ex) point.x == PT.x struct{ int a, b, c; } triples[2] = { {3, 3, 6}, {4, 5, 5} }; triple이라는 structure의 member 변수 a, b, c에 3 3 6과 4 5 5 를 바로 입력한다. 2. Structure pointer operator pointer_to_structure -> member_name (*pointer_to_structure).member_name po..
Visual studio 2010에서 콘솔창에 "Press Any Key to Continue..." 가 안뜨기 때문에 콘솔창이 깜박이고 꺼지는것을 방지하기 위해 code 맨 마지막 줄에 system("pause") 이나 cin.get(); 을 추가 시키면 F5로 실행했을 때도 콘솔창이 바로 꺼지지 않는다. 2. project의 properties에 configuration Properties -> Linker -> System -> SubSystem에 Console (/SUBSYSTEM:CONSOLE) 로 설정하면 된다.