Added ADAT_TX define

This commit is contained in:
Ross Owen
2015-01-30 16:05:26 +00:00
parent 6816278557
commit 9877618786

View File

@@ -231,11 +231,20 @@
#undef SPDIF #undef SPDIF
#endif #endif
/**
* @brief Defines which output channels (stereo) should be output on S/PDIF. Note, Output channels indexed from 0.
*
* Default: 0 (i.e. channels 0 & 1)
* */
#ifndef SPDIF_TX_INDEX
#define SPDIF_TX_INDEX (0)
#endif
/** /**
* @brief Enables ADAT Tx. Default: 0 (Disabled) * @brief Enables ADAT Tx. Default: 0 (Disabled)
*/ */
#ifndef ADAT_TX #ifndef ADAT_TX
#define ADAT_TX (0) #define ADAT_TX (0)
#endif #endif
/* Tidy up old SPDIF usage */ /* Tidy up old SPDIF usage */
@@ -243,16 +252,13 @@
#undef ADAT_TX #undef ADAT_TX
#endif #endif
/** /**
* @brief Defines which output channels (stereo) should be output on S/PDIF. Note, Output channels indexed from 0. * @brief Defines which output channels (8) should be output on ADAT. Note, Output channels indexed from 0.
* *
* Default: 0 (i.e. channels 0 & 1) * Default: 0 (i.e. channels [0:7])
* */ * */
#ifndef SPDIF_TX_INDEX #ifndef ADAT_TX_INDEX
#define SPDIF_TX_INDEX (0) #define ADAT_TX_INDEX (0)
#endif #endif
/** /**