123456789101112131415161718192021222324252627282930313233 |
- /*
- * PE43711.h
- *
- * Created on: 2019. 6. 28.
- * Author: parkyj
- */
- #ifndef PE43711_H_
- #define PE43711_H_
- #include "main.h"
- typedef struct{
- uint16_t ATT_EN_1_8G_DL1_PIN;
- GPIO_TypeDef *ATT_EN_1_8G_DL1_PORT;
- uint16_t ATT_EN_1_8G_DL2_PIN;
- GPIO_TypeDef *ATT_EN_1_8G_DL2_PORT;
- uint16_t ATT_EN_1_8G_UL1_PIN;
- GPIO_TypeDef *ATT_EN_1_8G_UL1_PORT;
- uint16_t ATT_EN_1_8G_UL2_PIN;
- GPIO_TypeDef *ATT_EN_1_8G_UL2_PORT;
- uint16_t ATT_EN_1_8G_UL3_PIN;
- GPIO_TypeDef *ATT_EN_1_8G_UL3_PORT;
- uint16_t ATT_EN_1_8G_UL4_PIN;
- GPIO_TypeDef *ATT_EN_1_8G_UL4_PORT;
- }PE43711_st;
- #endif /* PE43711_H_ */
|