Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

...

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

  • Working directory 작업 디렉토리: "<project directory>/make"
Code Block
languagetext
make CONFIG_DIR=../library/ubinos/app CONFIG_NAME=helloworld_mt_nrf52840dk load


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

...

Code Block
languagetext
make CONFIG_DIR=../library/ubinos/app CONFIG_NAME=helloworld_mt_nrf52840dk run


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

...