'프로그래밍/임베디드'에 해당되는 글 10건

  1. 2013.07.24 VI editor 사용하기
  2. 2013.06.29 FlightGear Embedded board 1
  3. 2013.05.23 text lcd
  4. 2013.05.23 linux root filesystem
  5. 2013.05.23 7segment
  6. 2013.05.23 Led
  7. 2013.05.23 linux kernel build
  8. 2013.05.23 bootloader
  9. 2013.05.23 임베디드 시스템 구성 리눅스 소프트웨어
  10. 2013.05.23 HBE-SM5-S4210 M3(FPGA) Module
프로그래밍/임베디드 2013. 7. 24. 20:05

vi edit의 모드

Command mode

Text의 위치나 편집 가능하게 함

Input mode

사용자가 text를 작성할 수 있는 모드


:q <enter>

to exit, if you have not made any changes to the file

:q! <enter>

the forced quit, it will discard the changes and quit

:wq <enter>

for save and Exit

:x <enter>

same as above command


To enter the text in vi you should first switch to input mode

•To switch to input mode there are several different commands

•a - Append mode places the insertion point after the current character

•i - Insert mode places the insertion point before the current character

•I - places the insertion point at the beginning of current line

•o - is for open mode and places the insertion point after the current line

•O - places the insertion point before the current line

•R - starts the replace(overwrite) mode


x - deletes the current character

d - is the delete command but pressing only d will not delete anything you need to press a second key

•dw - deletes to end of word

•dd - deletes the current line

•d0 - deletes to beginning of line


There are many more keys to be used with delete command

u - undo the changes made by editing commands

. - repeats the last edit command



Copy, cut and paste in vi

v - visual mode

yy - (yank) copy current line to buffer

nyy - where n is number of lines

p - paste the yanked lines from buffer to the line below

P - paste the yanked lines from buffer to the line above

(the paste commands will also work after yank)

gg - jump the first line of file

G - jump the end of file

nG - jump to the line (where n is line number)



'프로그래밍 > 임베디드' 카테고리의 다른 글

FlightGear Embedded board  (1) 2013.06.29
text lcd  (0) 2013.05.23
linux root filesystem  (0) 2013.05.23
7segment  (0) 2013.05.23
Led  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 6. 29. 20:47




'프로그래밍 > 임베디드' 카테고리의 다른 글

VI editor 사용하기  (0) 2013.07.24
text lcd  (0) 2013.05.23
linux root filesystem  (0) 2013.05.23
7segment  (0) 2013.05.23
Led  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:15


'프로그래밍 > 임베디드' 카테고리의 다른 글

VI editor 사용하기  (0) 2013.07.24
FlightGear Embedded board  (1) 2013.06.29
linux root filesystem  (0) 2013.05.23
7segment  (0) 2013.05.23
Led  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:15


'프로그래밍 > 임베디드' 카테고리의 다른 글

FlightGear Embedded board  (1) 2013.06.29
text lcd  (0) 2013.05.23
7segment  (0) 2013.05.23
Led  (0) 2013.05.23
linux kernel build  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:14


'프로그래밍 > 임베디드' 카테고리의 다른 글

text lcd  (0) 2013.05.23
linux root filesystem  (0) 2013.05.23
Led  (0) 2013.05.23
linux kernel build  (0) 2013.05.23
bootloader  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:14

Led


'프로그래밍 > 임베디드' 카테고리의 다른 글

linux root filesystem  (0) 2013.05.23
7segment  (0) 2013.05.23
linux kernel build  (0) 2013.05.23
bootloader  (0) 2013.05.23
임베디드 시스템 구성 리눅스 소프트웨어  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:14


'프로그래밍 > 임베디드' 카테고리의 다른 글

7segment  (0) 2013.05.23
Led  (0) 2013.05.23
bootloader  (0) 2013.05.23
임베디드 시스템 구성 리눅스 소프트웨어  (0) 2013.05.23
HBE-SM5-S4210 M3(FPGA) Module  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:13


'프로그래밍 > 임베디드' 카테고리의 다른 글

7segment  (0) 2013.05.23
Led  (0) 2013.05.23
linux kernel build  (0) 2013.05.23
임베디드 시스템 구성 리눅스 소프트웨어  (0) 2013.05.23
HBE-SM5-S4210 M3(FPGA) Module  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:12

리눅스 시스템 소프트웨어

•부트로더 : uboot-s4210

•리눅스 커널 : linux-2.6.35-s4210

•루트파일 시스템 : glibc-2.10.1, BusyBox v1.9.1 등

•크로스 컴파일러 : gcc 4.4.1

•Application module의 peripheral device 드라이버 모듈

-LED Device Driver Module

-7-Segment Device Driver Module

-TextLCD Device Driver Module

-DotLED Device Driver Module

-Keypad Device Driver Module

-Dip Switch Device Driver Module

-Base LED Device Driver Module

-Piezo Device Driver Module

-Base 7-Segment Device Driver Module

-OLED Device Driver Module

'프로그래밍 > 임베디드' 카테고리의 다른 글

7segment  (0) 2013.05.23
Led  (0) 2013.05.23
linux kernel build  (0) 2013.05.23
bootloader  (0) 2013.05.23
HBE-SM5-S4210 M3(FPGA) Module  (0) 2013.05.23
//
프로그래밍/임베디드 2013. 5. 23. 10:10

HBE-SM5-S4210 M3(FPGA) Module

•Character LCD(16 * 2)

•OLED

•6Digit 7-Segment

•18,752 Logic Elements FPGA EP2C20

•7 * 5 Dot Matrix 2ea

•4 * 4 Keypad

•8point DIP Switch 2ea

•LED 8ea

•Piezo

•Tact Switch 4ea

•Full Color LED

•Motor driver

'프로그래밍 > 임베디드' 카테고리의 다른 글

7segment  (0) 2013.05.23
Led  (0) 2013.05.23
linux kernel build  (0) 2013.05.23
bootloader  (0) 2013.05.23
임베디드 시스템 구성 리눅스 소프트웨어  (0) 2013.05.23
//