Home | History | Annotate | Download | only in src

Lines Matching refs:p_cfg

191 int userial_vendor_open(tUSERIAL_CFG *p_cfg)
200 if (!userial_to_tcio_baud(p_cfg->baud, &baud))
205 if(p_cfg->fmt & USERIAL_DATABITS_8)
207 else if(p_cfg->fmt & USERIAL_DATABITS_7)
209 else if(p_cfg->fmt & USERIAL_DATABITS_6)
211 else if(p_cfg->fmt & USERIAL_DATABITS_5)
219 if(p_cfg->fmt & USERIAL_PARITY_NONE)
221 else if(p_cfg->fmt & USERIAL_PARITY_EVEN)
223 else if(p_cfg->fmt & USERIAL_PARITY_ODD)
231 if(p_cfg->fmt & USERIAL_STOPBITS_1)
233 else if(p_cfg->fmt & USERIAL_STOPBITS_2)