31 lines
738 B
C
31 lines
738 B
C
#ifndef API_DRIVER_STRICTS_ENABLE_H
|
|
#define API_DRIVER_STRICTS_ENABLE_H
|
|
|
|
|
|
#if defined(MODEM_IS_SCPC)
|
|
#define API_OBJECT_DEBUG_METRICS_ENABLE
|
|
#endif
|
|
|
|
#if defined(MODEM_IS_SCPC) || defined(MODEM_IS_SHPS)
|
|
#define API_STRUCT_ACM_ENABLE
|
|
#endif
|
|
|
|
#if defined(MODEM_IS_SCPC) || defined(MODEM_IS_TDMA) || defined(MODEM_IS_SHPS)
|
|
#define API_OBJECT_NETWORK_SETTINGS_ENABLE
|
|
#endif
|
|
|
|
#if defined(MODEM_IS_SCPC) || defined(MODEM_IS_TDMA)
|
|
#define API_OBJECT_QOS_SETTINGS_ENABLE
|
|
#endif
|
|
|
|
#if defined(MODEM_IS_SCPC) || defined(MODEM_IS_TDMA)
|
|
#define API_OBJECT_DPDI_SETTINGS_ENABLE
|
|
#endif
|
|
|
|
#if defined(MODEM_IS_SCPC) || defined(MODEM_IS_TDMA) || defined(MODEM_IS_SHPS)
|
|
#define API_OBJECT_BUCLNB_SETTINGS_ENABLE
|
|
#endif
|
|
|
|
|
|
#endif //API_DRIVER_STRICTS_ENABLE_H
|