[ab32vg1] update file format

This commit is contained in:
ZHU Hao 2021-04-14 09:20:53 +08:00 committed by GitHub
parent ada0570b47
commit 368676a42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -51,9 +51,9 @@ typedef struct ab32_irrx_data *ab32_irrx_data_t;
static struct ab32_irrx_data _irrx = {0};
/**
* @brief A non-zero value is returned
* @brief A non-zero value is returned
* when IR key is detectedto be pressed.
*
*
* @param addr inverted address Extended NEC: 16bits address
* @param cmd inverted command
*/
@ -74,7 +74,7 @@ uint8_t ab32_get_irkey(uint16_t *addr, uint16_t *cmd)
/**
* @brief Invalid the current IR key.
*
*
*/
void ab32_clr_irkey(void)
{
@ -190,9 +190,9 @@ static void irrx_isr(int vector, void *param)
static void timer3_init(void)
{
rt_hw_interrupt_install(IRQ_IRRX_VECTOR, irrx_isr, RT_NULL, "irrx_isr");
TMR3CNT = 0;
TMR3PR = TMR3_RCLK*110 - 1; //110ms Timer overflow interrupt
TMR3CON = BIT(8) | BIT(7) | BIT(5) | BIT(2) | BIT(1) | BIT(0); //capture & overflow interrupt enable, falling edge, Capture Mode
TMR3CNT = 0;
TMR3PR = TMR3_RCLK*110 - 1; //110ms Timer overflow interrupt
TMR3CON = BIT(8) | BIT(7) | BIT(5) | BIT(2) | BIT(1) | BIT(0); //capture & overflow interrupt enable, falling edge, Capture Mode
}
static void _irrx_hw_init(void)