Nol.A SDK Library
24.11.0
For IoT System Software Development
|
표준 출력, 오류출력 지원 More...
#include <StandardPrintable.hpp>
Public Member Functions | |
StandardPrintable (Print *out, Print *err) | |
StandardPrintable (Print *common) | |
Public Attributes | |
Print * | out = nullptr |
표준 출력 장치 More... | |
Print * | err = nullptr |
표준 오류 출력 장치 More... | |
표준 출력, 오류출력 지원
모든 Boards 는 이 클래스를 상속받아 표준 출력, 표준 오류출력을 지원합니다.
Print* StandardPrintable::err = nullptr |
표준 오류 출력 장치
표준 오류 출력 장치를 변경하고 싶으면 해당 값을 다른 장치의 포인터로 할당합니다.
표준 fprintf(stderr, ...)
및 시스템 로그는 모두 이 변수가 가리키는 인터페이스를 통해 출력됩니다.
Print* StandardPrintable::out = nullptr |
표준 출력 장치
표준 출력 장치를 변경하고 싶으면 해당 값을 다른 장치의 포인터로 할당합니다.
표준 printf(...)
, fprintf(stdout, ...)
는 모두 이 변수가 가리키는 인터페이스를 통해 출력됩니다.