[nRF52] radio_test 프로젝트에 button 기능 넣기
: radio_test 프로젝트에 bsp 프로젝트안에 있는 button 관련 기능을 추가해 넣어 테스트 해봤습니다. 목차 1> 진행순서를 정리해 봤습니다. ▶ bsp 프로젝트안의 다음코드 복사해 옵니다. void bsp_evt_handler(bsp_event_t evt) { ~~ 중략 ~~ } void bsp_configuration() { uint32_t err_code; err_code = bsp_init(BSP_INIT_BUTTONS, bsp_evt_handler); APP_ERROR_CHECK(err_code); } ▶ radio_test 프로젝트의 sdk_config.h 파일을 열고 다음을 추가해 줍니다. // app_button - buttons handling module //========..