34 lines
596 B
C
34 lines
596 B
C
/**
|
|
* @file EV1527.h
|
|
* @author cyWu (1917507415@qq.com)
|
|
* @brief EV1527解码框架
|
|
* @version 0.1
|
|
* @date 2024-03-28
|
|
* @copyright Copyright (c) 2024
|
|
*
|
|
*/
|
|
|
|
#ifndef __EV1527_H
|
|
#define __EV1527_H
|
|
|
|
#include "main.h"
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
|
|
/*********433 DATA GPIO**********/
|
|
|
|
// 433数据输入
|
|
#if 0
|
|
#define DATA_433_PIN GPIO_PIN_7
|
|
#define DATA_433_GPIO_PORT GPIOA
|
|
#define DATA_433_GPIO_CLK_ENABLE() __HAL_RCC_GPIOA_CLK_ENABLE();
|
|
#endif
|
|
/*******************************/
|
|
|
|
void EV1527_Init(void);
|
|
void RF_Signal_Decode(void);
|
|
|
|
#endif
|