헬로보드를 Arduino로 사용하기 위해서는 Arduino IDE에 헬로보드 프로파일을 추가 해야 합니다.
Arduino IDE에 헬로보드 프로파일 추가하기
1. arduino-0017/hardware/boards.txt 파일 열기
2. boards.txt 맨 아래에 줄에 아래 내용 추가하기.
########################################
helloboard.name=Arduino Helloboard
helloboard.upload.protocol=stk500
helloboard.upload.maximum_size=14336
helloboard.upload.speed=19200
helloboard.bootloader.low_fuses=0xfd
helloboard.bootloader.high_fuses=0xdf
helloboard.bootloader.extended_fuses=0x00
helloboard.bootloader.path=atmega
helloboard.bootloader.file=ATmegaBOOT_168_helloboard.hex
helloboard.bootloader.unlock_bits=0x3F
helloboard.bootloader.lock_bits=0x0F
helloboard.build.mcu=atmega168
helloboard.build.f_cpu=7372800L
helloboard.build.core=arduino
3. boards.txt 저장하고 Arduino IDE를 재시작 합니다.
4. Arduino IDE의 Tools 메뉴의 Boards 에서 Arduino Helloboard 를 선택합니다.
5. 헬로보드 프로파일 추가가 완료되었습니다.