aboutsummaryrefslogtreecommitdiffstats
path: root/drivers_nrf/twis_slave/nrf_drv_twis_inst.def
blob: be40002a677051ba97419c34feabee1c22d14f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file
 * @brief Xmacro file with contains enumeration of TWIS instances to implement
 *
 * Use this file everywhere where anything has to be generated for all active TWIS instances.
 * Xmacro format:
 *
 * @code
   X(n)
 * @endcode
 *
 * Where @em n is number of the instance itself (0 for NRF_TWIS0).
 */
#if (TWIS0_ENABLED == 1)
    X(0)
#endif
#if (TWIS1_ENABLED == 1)
    X(1)
#endif
#undef X