Lines Matching refs:pstcConfig
871 stc_uart_config_t* pstcConfig) in Uart_Init() argument
881 if(NULL == pstcConfig) in Uart_Init()
885 enRet = Uart_SetMode(u8Idx,pstcConfig->enRunMode); in Uart_Init()
886 enRet = Uart_SetStopBit(u8Idx,pstcConfig->enStopBit); in Uart_Init()
887 if(NULL != pstcConfig->pstcMultiMode) in Uart_Init()
889 enRet = Uart_SetMultiMode(u8Idx,pstcConfig->pstcMultiMode); in Uart_Init()
891 if(NULL != pstcConfig->pstcIrqCb) in Uart_Init()
893 pstcData->stcUartInternIrqCb.pfnRxFEIrqCb = pstcConfig->pstcIrqCb->pfnRxFEIrqCb; in Uart_Init()
894 pstcData->stcUartInternIrqCb.pfnRxIrqCb = pstcConfig->pstcIrqCb->pfnRxIrqCb; in Uart_Init()
895 pstcData->stcUartInternIrqCb.pfnTxIrqCb = pstcConfig->pstcIrqCb->pfnTxIrqCb; in Uart_Init()
896 pstcData->stcUartInternIrqCb.pfnCtsIrqCb = pstcConfig->pstcIrqCb->pfnCtsIrqCb; in Uart_Init()
897 pstcData->stcUartInternIrqCb.pfnPEIrqCb = pstcConfig->pstcIrqCb->pfnPEIrqCb; in Uart_Init()
899 if(pstcConfig->bTouchNvic == TRUE) in Uart_Init()