[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

@ -1,7 +1,7 @@
/*
* steering_mode.h
*
*
* Contains the steering mode value and parameters determined by the PCF.
*/
#ifndef _OpenAPI_steering_mode_H_
@ -14,7 +14,9 @@
#include "../include/binary.h"
#include "access_type.h"
#include "access_type_rm.h"
#include "steer_mode_indicator.h"
#include "steer_mode_value.h"
#include "threshold_value.h"
#ifdef __cplusplus
extern "C" {
@ -28,6 +30,8 @@ typedef struct OpenAPI_steering_mode_s {
bool is__3g_load;
int _3g_load;
OpenAPI_access_type_e prio_acc;
struct OpenAPI_threshold_value_s *thres_value;
OpenAPI_steer_mode_indicator_e steer_mode_ind;
} OpenAPI_steering_mode_t;
OpenAPI_steering_mode_t *OpenAPI_steering_mode_create(
@ -36,7 +40,9 @@ OpenAPI_steering_mode_t *OpenAPI_steering_mode_create(
OpenAPI_access_type_rm_t *standby,
bool is__3g_load,
int _3g_load,
OpenAPI_access_type_e prio_acc
OpenAPI_access_type_e prio_acc,
OpenAPI_threshold_value_t *thres_value,
OpenAPI_steer_mode_indicator_e steer_mode_ind
);
void OpenAPI_steering_mode_free(OpenAPI_steering_mode_t *steering_mode);
OpenAPI_steering_mode_t *OpenAPI_steering_mode_parseFromJSON(cJSON *steering_modeJSON);