Skip to content

Commit

Permalink
Enable all tested commands
Browse files Browse the repository at this point in the history
  • Loading branch information
qpernil committed May 24, 2023
1 parent a1b13aa commit 8407bdb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/logs.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ int main(void) {

option[0] = YHC_SET_OPTION;
option[1] = 0x01;
option_len = 2;
option[2] = YHC_SET_LOG_INDEX;
option[3] = 0x01;
option[4] = YHC_GET_OBJECT_INFO;
option[5] = 0x01;
option_len = 2 * 3;
yrc =
yh_util_set_option(session, YH_OPTION_COMMAND_AUDIT, option_len, option);
assert(yrc == YHR_SUCCESS);
Expand Down

0 comments on commit 8407bdb

Please sign in to comment.