Lines Matching defs:pJoinBssParams

1713 int whalCtrl_JoinBss (TI_HANDLE hWhalCtrl, whalCtrl_joinBss_t* pJoinBssParams)
1724 if (pJoinBssParams->ssidLength > 32)
1725 pJoinBssParams->ssidLength = 32;
1728 os_memoryCopy(pWhalCtrl->hOs, (void *)dbgSsidStr, (void *)pJoinBssParams->pSSID, pJoinBssParams->ssidLength);
1729 dbgSsidStr[pJoinBssParams->ssidLength] = '\0';
1732 if ((pJoinBssParams->radioBand == RADIO_BAND_2_4_GHZ) &&
1733 (pJoinBssParams->hwGenCtrlTxRate > DRV_RATE_11M))
1735 pJoinBssParams->hwGenCtrlTxRate = DRV_RATE_2M; /* default value, if no CCK rate is in the basic rates */
1736 if(pJoinBssParams->basicRateSet & DRV_RATE_MASK_1_BARKER) pJoinBssParams->hwGenCtrlTxRate = DRV_RATE_1M;
1737 if(pJoinBssParams->basicRateSet & DRV_RATE_MASK_2_BARKER) pJoinBssParams->hwGenCtrlTxRate = DRV_RATE_2M;
1738 if(pJoinBssParams->basicRateSet & DRV_RATE_MASK_5_5_CCK) pJoinBssParams->hwGenCtrlTxRate = DRV_RATE_5_5M;
1739 if(pJoinBssParams->basicRateSet & DRV_RATE_MASK_11_CCK) pJoinBssParams->hwGenCtrlTxRate = DRV_RATE_11M;
1742 ("%s hwGenCtrlTxRate > 11 !!! changed to %d (rate_e)\n",__FUNCTION__,pJoinBssParams->hwGenCtrlTxRate));
1757 pJoinBssParams->bssType,
1758 pJoinBssParams->beaconInterval,
1759 pJoinBssParams->dtimInterval,
1760 pJoinBssParams->channel,
1761 pJoinBssParams->pBSSID[0],
1762 pJoinBssParams->pBSSID[1],
1763 pJoinBssParams->pBSSID[2],
1764 pJoinBssParams->pBSSID[3],
1765 pJoinBssParams->pBSSID[4],
1766 pJoinBssParams->pBSSID[5],
1768 pJoinBssParams->ssidLength,
1769 pJoinBssParams->basicRateSet,
1770 pJoinBssParams->supportedRateSet));
1778 pJoinBssParams->radioBand,
1780 pJoinBssParams->hwGenCtrlTxRate,
1781 pJoinBssParams->hwGenMgmtTxRate,
1782 pJoinBssParams->preamble));
1787 whal_ParamsSetReqBssType(pWhalCtrl->pWhalParams, pJoinBssParams->bssType);
1788 whal_ParamsSetBssId(pWhalCtrl->pWhalParams, (char *)pJoinBssParams->pBSSID);
1789 whal_ParamsSetSsid(pWhalCtrl->pWhalParams, (char *)pJoinBssParams->pSSID, pJoinBssParams->ssidLength);
1790 whal_ParamsSetBeaconInterval(pWhalCtrl->pWhalParams, (UINT16)pJoinBssParams->beaconInterval);
1791 whal_ParamsSetDtimCount(pWhalCtrl->pWhalParams, (UINT8)pJoinBssParams->dtimInterval);
1792 whal_ParamsSetRadioChannel(pWhalCtrl->pWhalParams, pJoinBssParams->channel);
1793 whal_ParamsSetRadioBand(pWhalCtrl->pWhalParams, pJoinBssParams->radioBand);
1794 whal_ParamsSetBasicRatesSet(pWhalCtrl->pWhalParams, pJoinBssParams->basicRateSet);
1795 whal_ParamsSetSupportedRatesSet(pWhalCtrl->pWhalParams, pJoinBssParams->supportedRateSet);
1802 whal_ParamsSetHwGenTxParams(pWhalCtrl->pWhalParams, pJoinBssParams->hwGenCtrlTxRate, TRUE);
1804 whal_ParamsSetHwGenTxParams(pWhalCtrl->pWhalParams, pJoinBssParams->hwGenMgmtTxRate, FALSE);
1816 return whal_hwCtrl_StartJoin(pWhalCtrl->pHwCtrl, pJoinBssParams->bssType, NULL, NULL);