TIM SDK
TIM API C
reconfig_parameters.h File Reference

Description

Reconfig Parameters.

Object type reconfig_parameters.

Functions

ta_e_result_code_t ta_reconfig_parameters_create (ta_object_t *reconfig_parameters)
 Create object of type reconfig_parameters. More...
 
ta_e_result_code_t ta_reconfig_parameters_set_reconfig_mode (ta_object_t reconfig_parameters, ta_e_reconfig_mode_t reconfig_mode)
 Set optional reconfig mode. More...
 
ta_e_result_code_t ta_reconfig_parameters_set_acq_id (ta_object_t reconfig_parameters, ta_object_t acq_id)
 Set optional acq id. More...
 

Function Documentation

◆ ta_reconfig_parameters_create()

ta_e_result_code_t ta_reconfig_parameters_create ( ta_object_t reconfig_parameters)

Create object of type reconfig_parameters.

Parameters
[out]reconfig_parametersPointer to variable to write created object instance to. Created object instance is retained.
Return values
ta_c_rc_okObject instance has been created and written to reconfig_parameters.
ta_c_rc_invalid_argumentreconfig_parameters is null-pointer.
ta_c_rc_out_of_memoryFailed allocating memory.

◆ ta_reconfig_parameters_set_acq_id()

ta_e_result_code_t ta_reconfig_parameters_set_acq_id ( ta_object_t  reconfig_parameters,
ta_object_t  acq_id 
)

Set optional acq id.

Parameters
[in]Objectinstance of type reconfig_parameters.
[in]acq_idObject instance to set. Object instance can be ta_object_invalid to clear the value in reconfig_parameters. If object instance is not ta_object_invalid is has to be of type integer.
Return values
ta_c_rc_okObject instance assigned to reconfig_parameters.
ta_c_rc_invalid_argumentreconfig_parameters is ta_object_invalid.
ta_c_rc_invalid_argumentreconfig_parameters is not of type reconfig_parameters.
ta_c_rc_invalid_argumentacq_id is not ta_object_invalid and is not of type integer.

◆ ta_reconfig_parameters_set_reconfig_mode()

ta_e_result_code_t ta_reconfig_parameters_set_reconfig_mode ( ta_object_t  reconfig_parameters,
ta_e_reconfig_mode_t  reconfig_mode 
)

Set optional reconfig mode.

Parameters
[in]Objectinstance of typereconfig_parameters.
[in]reconfig_modeValue to set.Value can be ta_c_reconfig_mode_undefined to clear the value in reconfig_parameters.
Return values
ta_c_rc_okValue assigned to reconfig_parameters.
ta_c_rc_invalid_argumentreconfig_parameters is ta_object_invalid.
ta_c_rc_invalid_argumentreconfig_parameters is not of typereconfig_parameters.
ta_c_rc_invalid_argumentreconfig_mode is null - pointer.