Home | History | Annotate | Download | only in hl

Lines Matching defs:mps

209 UINT8 bta_hl_set_tx_win_size(UINT16 mtu, UINT16 mps)
213 if (mtu <= mps)
219 if (mps > 0)
221 tx_win_size = (mtu/mps)+1;
225 APPL_TRACE_ERROR("The MPS is zero");
231 APPL_TRACE_DEBUG("bta_hl_set_tx_win_size win_size=%d mtu=%d mps=%d",
232 tx_win_size, mtu, mps);
241 ** Description This function sets the MPS
243 ** Returns UINT16 MPS
248 UINT16 mps;
251 mps = BTA_HL_L2C_MPS;
255 mps = mtu;
258 APPL_TRACE_DEBUG("bta_hl_set_mps mps=%d mtu=%d",
259 mps, mtu);
261 return mps;
2620 p_dcb->chnl_cfg.fcr_opt.mps = bta_hl_set_mps(p_dcb->max_rx_apdu_size);
2622 p_dcb->chnl_cfg.fcr_opt.mps);
2651 APPL_TRACE_DEBUG("tx_win_sz=%d, max_transmit=%d, rtrans_tout=%d, mon_tout=%d, mps=%d",
2656 p_dcb->chnl_cfg.fcr_opt.mps);