Files
examples/android-example/decodesdk/ir_decoder/include/ir_ac_parse_parameter.h

58 lines
1.8 KiB
C
Raw Normal View History

2017-05-09 11:36:49 +08:00
/**************************************************************************************
Filename: ir_parse_ac_parameter.h
Revised: Date: 2016-10-12
Revision: Revision: 1.0
Description: This file provides algorithms for IR decode for AC functionality parameters
Revision log:
* 2016-10-12: created by strawmanbobi
**************************************************************************************/
#ifndef _IRDA_PARSE_AC_PARAMETER_H_
#define _IRDA_PARSE_AC_PARAMETER_H_
#ifdef __cplusplus
extern "C"
{
#endif
#include "ir_decode.h"
2018-04-29 13:36:03 +08:00
extern INT8 parse_common_ac_parameter(t_tag_head *tag, t_tag_comp *comp_data, UINT8 with_end, UINT8 type);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_default_code(struct tag_head *tag, t_ac_hex *default_code);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_power_1(struct tag_head *tag, t_power_1 *power1);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_temp_1(struct tag_head *tag, t_temp_1 *temp1);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_mode_1(struct tag_head *tag, t_mode_1 *mode1);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_speed_1(struct tag_head *tag, t_speed_1 *speed1);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_swing_1(struct tag_head *tag, t_swing_1 *swing1, UINT16 swing_count);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_checksum(struct tag_head *tag, t_checksum *checksum);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_function_1_tag29(struct tag_head *tag, t_function_1 *function1);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_temp_2(struct tag_head *tag, t_temp_2 *temp2);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_mode_2(struct tag_head *tag, t_mode_2 *mode2);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_speed_2(struct tag_head *tag, t_speed_2 *speed2);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_swing_2(struct tag_head *tag, t_swing_2 *swing2, UINT16 swing_count);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_function_2_tag34(struct tag_head *tag, t_function_2 *function2);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_swing_info(struct tag_head *tag, t_swing_info *si);
2017-05-09 11:36:49 +08:00
2018-04-29 13:36:03 +08:00
extern INT8 parse_solo_code(struct tag_head *tag, t_solo_code *sc);
2017-05-09 11:36:49 +08:00
#ifdef __cplusplus
}
#endif
#endif // _IRDA_PARSE_AC_PARAMETER_H_