Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
en:log_management_api [2020/09/10 15:59]
yjjung [Log Management API]
en:log_management_api [2020/09/10 16:01]
yjjung [OnLogReceived]
Line 17: Line 17:
 ===== Callback Function ===== ===== Callback Function =====
 ==== OnLogReceived ==== ==== OnLogReceived ====
-장치로부터 새로운 로그를 수신했을 때 호출되는 콜백 함수입니다 \\ \\ +Callback function that is called when receiving a new log from the device. \\ \\ 
 <code cpp> <code cpp>
 typedef void (*OnLogReceived)(uint32_t deviceId, BS2Event* log); typedef void (*OnLogReceived)(uint32_t deviceId, BS2Event* log);
Line 23: Line 23:
 \\ \\
 1. //​deviceId//​ \\  1. //​deviceId//​ \\ 
-새로운 로그를 보내준 장치 ​ID입니다. ​ \\ \\ +Device ​ID  \\ \\ 
 2. //log// \\  2. //log// \\ 
-새로운 로그 정보 구조체입니다. ​ \\ \\ +New log information structure ​ \\ \\ 
  
 ==== OnLogReceivedEx ==== ==== OnLogReceivedEx ====