14 lines
216 B
C
14 lines
216 B
C
|
#ifndef _IR_Tx__H__
|
||
|
#define _IR_Tx__H__
|
||
|
|
||
|
#include "ARMCM0.h"
|
||
|
#include "syd_type.h"
|
||
|
|
||
|
#define IR_CARR_FREQ 37910UL
|
||
|
|
||
|
extern void IR_Tx_Init(void);
|
||
|
extern void IR_Tx_SendData(uint16_t usrCode, uint8_t data);
|
||
|
|
||
|
#endif
|
||
|
|