| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /******************************* (C) LiteMesh **********************************
- * @module bt_6701_commands
- * @file bt_6701_commands.h
- * @version 1.0.0
- * @date XX.XX.XXXX
- * $brief bt_6701_commands
- *******************************************************************************
- * @history Version Author Comment
- * XX.XX.XXXX 1.0.0 Telenkov D.A. First release.
- *******************************************************************************
- */
- /* Define to prevent recursive ----------------------------------------------*/
- #ifndef __BT_6701_COMMANDS_H
- #define __BT_6701_COMMANDS_H
- typedef struct
- {
- GPIO_TypeDef *first_port;
- uint16_t first_pin;
- uint8_t first_pin_num;
- GPIO_TypeDef *second_port;
- uint16_t second_pin;
- uint8_t second_pin_num;
- } pair_pin_t;
- typedef struct
- {
- GPIO_TypeDef *port;
- uint16_t pin;
- } single_pin_t;
- /**
- * @brief
- */
- void Test_U232(void);
- //
- void Test_Pins(void);
- #endif /* #ifndef __BT_6701_COMMANDS_H */
- /****************************** (C) LiteMesh ***************** end of file ****/
|