작업 환경
-메인 OS : Windows 8.1K(Intel Core i5-4590)
-작업 OS : Ubuntu 14.04.5 LTS 64bit(VirtualBox)
-장 비 명 : Hybus-Smart4412
dot.c
#include<stdio.h>
#include<stdlib.h>
#include<fcntl.h>
#define dot "/dev/dot"
int main()
{
int dot_d;
unsigned char c[8] = {0x80 , 0x80 , 0x00 , 0x00,
0x00 , 0x00 , 0x00 , 0x00};
dot_d = open(dot , O_RDWR);
if(dot_d<0)
{
printf("Error\n");
return 0;
}
write(dot_d , &c, sizeof(c));
sleep(2);
return 0;
}
1. 초기설정
sudo apt-get install gcc-4.4 g++-4.4 g++-4.4-multilib gcc-4.4-multilib lib32z1
2. 컴파일
/opt/gnueabi/opt/ext-toolchain/bin/arm-linux-gnueabihf-gcc dot.c -o dot
3. Test
- 윈도우(메인 OS)로 실행파일 복사
- Tera Term에서 포트 설정 후 설정 -> 시리얼 포트 -> 속도를 115200으로 설정
- Hybus-Smart4412 장비 부팅
- 메뉴 -> 전송 -> ZMODEM -> 보내기 에서 실행파일 선택
- chmod 777 [실행파일명] (실행파일 권한 설정)
- ./[실행파일명] (실행 후 테스트)
(★중요 : 만약 소스파일을 수정 했다면 Tera Term 에서 먼저 rm [실행파일명] 을 한 뒤 다시 ZMODEM -> 보내기 에서 실행파일 선택 후 chmod 777 [실행파일명] 와 ./[실행파일명] 다시 실행)
'Embedded > Kernel Porting' 카테고리의 다른 글
[Kernel Porting] Dot matrix A~Z 찍어보기 (0) | 2016.12.19 |
---|---|
[Kernel Porting] Dot matrix 1~9 찍어보기 (0) | 2016.12.19 |
[Kernel Porting] 0~9 , A~Z 디폴트값 확인하기 (0) | 2016.12.19 |
[Kernel Porting] Dip스위치를 이용한 LED 점멸 (0) | 2016.12.18 |
[Kernel Porting] Dip스위치 Test (0) | 2016.12.18 |