123456789101112131415161718192021222324252627282930 |
- #ifndef __TRANSCEIVER__
- #define __TRANSCEIVER__
- /****************************************************************************************************
- * The following I/O-Pins are used in the transceiver app:
- *
- * 19 Output ENABLE
- * 18 Output TX_ENABLE
- * 17 Output TX_DATA
- * 16 Input RX_DATA
- ****************************************************************************************************/
- #define GPIO_ENABLE 19
- #define GPIO_TX_ENABLE 18
- #define GPIO_TX_DATA 17
- #define GPIO_RX_DATA 16
- extern bool disableRx;
- void initTransceiver();
- void trcvSwitch2transmit();
- void trcvSwitch2receive();
- void trcvSendHighLowPulse(uint32_t high, uint32_t low);
- #endif
|