Embedded

pchero on April 10th, 2008

 우분투 7.10 을 사용하는 도중 usb to serial 을 사용하게 되었다.  하지만 /dev/ttyUSB* 파일이 어디에도 없었던것.  한참을 헤맨 뒤에 방법을 찾았다.  brltty 패키지와 충돌이 있어서 그런것.  해당 패키지를 삭제하니 문제가 해결되었다.

Continue reading about 우분투에서 usb to serial 변환기 사용하기.

pchero on March 30th, 2008

1. Unpack Qtopia… tar xfz qtopia-free-1.7.x.tar.gz cd qtopia-1.7.x export QPEDIR=$PWD cd .. 2. Install Qt/Embedded… tar xfz qt-embedded-2.3.x.tar.gz cd qt-2.3.x export QTDIR=$PWD export QTEDIR=$QTDIR export PATH=$QTDIR/bin:$PATH export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH cp $QPEDIR/src/qt/qconfig-qpe.h src/tools/ ./configure -qconfig qpe -qvfb -depths 4,8,16,32 make sub-src cd .. You may also want to use the configure options-system-jpeg and -gif for jpeg and […]

Continue reading about install qtopia….

pchero on March 24th, 2008

 출처 : http://blog.naver.com/kingseft?Redirect=Log&logNo=140004281000

Continue reading about register_chrdev

pchero on March 17th, 2008

 bootp란 호스트 PC에서 타겟 보드에 IP를 유동적으로 할당할 수 있는 프로토콜이다.  네트워킹에 기본이 되는 IP를 먼저 할당함으로써 tftp, nfs, 웹 서버 포팅 등이 가능하게 된다.  설치는 해당 rpm파일을 다운받은 후, 다음과 같이 입력하면 된다. rpm -Uvh bootp-2.4.3-7.i386.rpm  rpm이 성공적으로 설치가 완료되면 다음과 같은 설정파일을 생성해준다.  /etc/bootptab empos:    ht=1:    ha=0x000BA8000011:    ip=192.168.10.165:    sm=255.255.255.0 […]

Continue reading about bootp 설정법