aboutsummaryrefslogtreecommitdiff
path: root/src/sample/io_sample/IR/Learn/led/ir_led.h
blob: 87552014b2dd84055d304c796ebd0211f4227f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
*********************************************************************************************************
*               Copyright(c) 2019, Realtek Semiconductor Corporation. All rights reserved.
*********************************************************************************************************
* @file      ir_led.h
* @brief
* @details
* @author    yuan
* @date      2019-01-24
* @version   v1.0
* *********************************************************************************************************
*/

#ifndef __IR_LED_H
#define __IR_LED_H

#ifdef __cplusplus
extern "C" {
#endif

/* Includes ------------------------------------------------------------------*/
#include "board.h"

#if (IR_FUN_EN && LED_IR_FUN_EN)
#include "rtl876x_gpio.h"
#include "rtl876x_pinmux.h"
#include "rtl876x_rcc.h"

/* Defines ------------------------------------------------------------------*/
#define LED_IR_SEND_OUT_PIN      GPIO_GetPin(LED_IR_SEND_PIN)
#if (IR_FUN_LEARN_EN)
#define LED_IR_LEARN_OUT_PIN     GPIO_GetPin(LED_IR_LEARN_PIN)
#endif

/* Function declaration --------------------------------------------------------*/
void board_ir_led_init(void);
void driver_ir_led_init(void);
void led_ir_send_swap(void);
void led_ir_learn_swap(void);

#endif

#ifdef __cplusplus
}
#endif

#endif /*__IR_LED_H*/


/******************* (C) COPYRIGHT 2019 Realtek Semiconductor Corporation *****END OF FILE****/