[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -13,6 +13,7 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "event_report_mode.h"
#include "notification_flag.h"
#ifdef __cplusplus
extern "C" {
@ -30,6 +31,7 @@ typedef struct OpenAPI_reporting_options_s {
int guard_time;
bool is_report_period;
int report_period;
OpenAPI_notification_flag_e notif_flag;
} OpenAPI_reporting_options_t;
OpenAPI_reporting_options_t *OpenAPI_reporting_options_create(
@ -42,7 +44,8 @@ OpenAPI_reporting_options_t *OpenAPI_reporting_options_create(
bool is_guard_time,
int guard_time,
bool is_report_period,
int report_period
int report_period,
OpenAPI_notification_flag_e notif_flag
);
void OpenAPI_reporting_options_free(OpenAPI_reporting_options_t *reporting_options);
OpenAPI_reporting_options_t *OpenAPI_reporting_options_parseFromJSON(cJSON *reporting_optionsJSON);