TMS320F280049C: 是否有类似【EPWM_setSyncInPulseSource】功能的接口

Part Number: TMS320F280049C

280039C的驱动库中有【EPWM_setSyncInPulseSource】接口

280049C的驱动库中没有看到【EPWM_setSyncInPulseSource】接口

请问49C是否有类似【EPWM_setSyncInPulseSource】的接口?

【epwm.h】

//*****************************************************************************
//
//! Set up the source for sync-in pulse.
//!
//! \param base is the base address of the EPWM module.
//! \param source is the sync-in pulse source.
//!
//! This function set the sync out pulse mode.
//! Valid values for mode are:
//! - EPWM_SYNC_IN_PULSE_SRC_SYNCOUT_EPWM1-16 - sync-in pulse source can be
//! any of the EPWM1-16 sync-out
//! signal
//! - EPWM_SYNC_IN_PULSE_SRC_SYNCOUT_ECAP1-7 - sync-in pulse source can be
//! selected as any of the ECAP1-16
//! sync-out signal
//! - EPWM_SYNC_IN_PULSE_SRC_INPUTXBAR_OUT5-6 - sync-in pulse source can be
//! selected as any of the Input
//! xbar out5-6 signal
//! - EPWM_SYNC_IN_PULSE_SRC_ETHERCAT_SYNC0-1 - sync-in pulse source can be
//! selected as any of the Ethercat
//! sync0-1 signal
//! - EPWM_SYNC_IN_PULSE_SRC_DISABLE - sync-in pulse is disabled for the
//! EPWM module
//!
//! \return None.
//
//*****************************************************************************
static inline void
EPWM_setSyncInPulseSource(uint32_t base, EPWM_SyncInPulseSource source)
{
    //
    // Check the arguments
    //
    ASSERT(EPWM_isBaseValid(base));

    //
    // Set EPWM Sync-In Source Mode.
    //
    HWREGH(base + EPWM_O_SYNCINSEL) =
        (HWREGH(base + EPWM_O_SYNCINSEL) & (~EPWM_SYNCINSEL_SEL_M)) |
        ((uint16_t)source & EPWM_SYNCINSEL_SEL_M);
}