Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 16 Next »

Running a Simple Application Example 간단한 응용 예제 실행하기


1.  Load the executable binary file on the target board.
    실행 바이너리 파일을 타겟 보드에 적재한다.

  • Wor작업 디렉토리: "<project directory>/make"
make load


2. Execute the executable binary file loaded on the target board.
    타겟 보드에 적재된 실행 바이너리 파일을 실행한다.

  • Working directory 작업 디렉토리: "<project directory>/make"
make run


If executed normally, the message "hello world" is output to the UART port.

정상적으로 실행되면 UART 포트로 메시지 "hello world"가 출력된다.

To stop the execution, enter "Control-C" to stop the make target "run", then execute the make target "reset".

실행을 중지시키려면 "Control-C"를 입력해 메이크 타겟 "run"을 중지 시킨 후, 메이크 타겟 "reset"를 수행한다.

  • No labels