Home | History | Annotate | Download | only in adaptation

Lines Matching refs:p_cfg

574 UDRV_API void    USERIAL_Init(void * p_cfg)
944 UDRV_API void USERIAL_Open(tUSERIAL_PORT port, tUSERIAL_OPEN_CFG *p_cfg, tUSERIAL_CBACK *p_cback)
1016 if (!userial_to_tcio_baud(p_cfg->baud, &baud))
1019 if (p_cfg->fmt & USERIAL_DATABITS_8)
1021 else if (p_cfg->fmt & USERIAL_DATABITS_7)
1023 else if (p_cfg->fmt & USERIAL_DATABITS_6)
1025 else if (p_cfg->fmt & USERIAL_DATABITS_5)
1030 if (p_cfg->fmt & USERIAL_PARITY_NONE)
1032 else if (p_cfg->fmt & USERIAL_PARITY_EVEN)
1034 else if (p_cfg->fmt & USERIAL_PARITY_ODD)
1039 if (p_cfg->fmt & USERIAL_STOPBITS_1)
1041 else if (p_cfg->fmt & USERIAL_STOPBITS_2)
1108 memcpy(&linux_cb.open_cfg, p_cfg, sizeof(tUSERIAL_OPEN_CFG));