1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef _DMX_SLAVE_H_
- #define _DMX_SLAVE_H_
- void DMXSlaveInit();
- void DMXSlaveService();
- void DMXSlaveISR();
- unsigned char DMXSlaveGet(unsigned int channel);
- unsigned int DMXSlaveGetMaxReceivedChannel(void);
- #ifndef DMX_SLAVE_NBCHAN
- #define DMX_SLAVE_NBCHAN 128
- #endif
- #endif
|