'MPLABX옵션'에 해당되는 글 1건

  1. 2019.02.07 MPLAB X; Bin 파일(바이너리), S19 파일(모토로라) 생성하기


MPLAB X IDE에서 C 코드를 컴파일을 후,
Intel Hex 파일뿐만 아니라
Motorola S19 Hex file 또는 binary 파일을
생성해야 하는 경우가 있습니다.

이때에는 아래와 같이

Extra linker options에

--output=bin,mot

옵션을 추가하면
Motorola S19 Hex file과 binary를
동시에 출력할 수 있습니다.

물론 기존 Intel Hex 파일도 함께 생성됩니다.





binary만 생성 옵션

--output=bin

Motorola S19 Hex file만 생성 옵션

--output=mot

Motorola S19 Hex file과
binary 동시 생성 옵션

--output=bin,mot


끝!!




Posted by KennyShin
,