버그내용.
nRF5 SDK 에서 배포된 파일중 retarget.c 의 아래 함수 중 붉은 색 부분.
int __putchar(int ch, FILE * p_file) UNUSED_VARIABLE(app_uart_put((uint8_t)ch)); |
해결책.
함수인자를 아래 파랑색 부분처럼 변경.
int __putchar(int ch, __printf_tag_ptr p_file) { UNUSED_PARAMETER(p_file); UNUSED_VARIABLE(app_uart_put((uint8_t)ch)); } |
본 글 포함된 상위 정리글 https://igotit.tistory.com/244 의 nRF5 |
첫등록 : 2018년 6월 7일
최종수정 :
본 글 단축주소 : https://igotit.tistory.com/1691
'임베디드.일렉트로닉스 > nRF52' 카테고리의 다른 글
nRF5 SDK. SES. 응용소스들 몰아두기. main.c, sdk_config.h 파일이전. (0) | 2018.06.10 |
---|---|
nRF5. BLE NUS Server Client Test. (0) | 2018.06.08 |
nRF5. 새프로젝트 만들기. nRF5 SDK 기반. (0) | 2018.06.07 |
nRF5. 블루투스 5.0 BLE Maximum Throughput Test. (0) | 2018.06.06 |
nRF5 SDK. example blinky open by SEGGER Embedded Studio (0) | 2018.06.04 |
댓글