Home | History | Annotate | Download | only in src

Lines Matching defs:Mac

407 static S32 CuCmd_Str2MACAddr(PS8 str, PU8 mac)
413 mac[i] = (U8) os_strtoul(str, &str, 16);
591 os_error_printf(CU_MSG_INFO2, (PS8)" MAC Privacy Rssi Mode Channel SSID\n");
971 TMacAddr Mac;
983 if(OK != CuCommon_GetBuffer(pCuCmd->hCuCommon, CTRL_DATA_MAC_ADDRESS, Mac, sizeof(TMacAddr))) return;
994 os_error_printf(CU_MSG_INFO2, (PS8)"MAC : %02x.%02x.%02x.%02x.%02x.%02x\n",Mac[0],Mac[1],Mac[2],Mac[3],Mac[4],Mac[5]);
1944 TMacAddr Mac;
1966 Mac, sizeof(TMacAddr))) return;
2008 os_error_printf(CU_MSG_INFO2, (PS8)" currentMACAddress : %02x.%02x.%02x.%02x.%02x.%02x\n",Mac[0],Mac[1],Mac[2],Mac[3],Mac[4],Mac[5]);
2125 os_error_printf(CU_MSG_INFO2, (PS8)" MAC Delay us (average/sum) : %d / %d\n\n", AverageMacDelay, txCounters.txCounters[TxQid].SumMacDelayUs);
4621 os_error_printf(CU_MSG_INFO2, (PS8)"Param 14 - Source MAC Address\n");
4623 os_error_printf(CU_MSG_INFO2, (PS8)"Param 14 - Destination MAC Address\n");
4646 os_error_printf(CU_MSG_INFO2, (PS8)"Continuous Tx start has failed to read source MAC Address \n");
4655 os_error_printf(CU_MSG_INFO2, (PS8)"Continuous Tx start has failed to read destination MAC Address \n");
4863 TMacAddr Mac;
4876 /* register for MAC Address*/
4886 /* read mac address */
4887 if(OK != CuCommon_GetBuffer(pCuCmd->hCuCommon, CTRL_DATA_MAC_ADDRESS, Mac, sizeof(TMacAddr)))
4889 os_error_printf(CU_MSG_INFO2, (PS8)"Unable to get Mac address, aborting\n");
4892 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[0]=%02x\n", Mac[0]);
4893 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[1]=%02x\n", Mac[1]);
4894 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[2]=%02x\n", Mac[2]);
4895 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[3]=%02x\n", Mac[3]);
4896 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[4]=%02x\n", Mac[4]);
4897 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[5]=%02x\n", Mac[5]);
4899 /* write the lower MAC address starting from the LSB
4901 os_fwrite(&Mac[5], sizeof(U8), 1, nvsBinFile);
4902 os_fwrite(&Mac[4], sizeof(U8), 1, nvsBinFile);
4903 os_fwrite(&Mac[3], sizeof(U8), 1, nvsBinFile);
4904 os_fwrite(&Mac[2], sizeof(U8), 1, nvsBinFile);
4917 /* Write the higher MAC address starting from the LSB
4919 os_fwrite(&Mac[1], sizeof(U8), 1, nvsBinFile);
4920 os_fwrite(&Mac[0], sizeof(U8), 1, nvsBinFile);
5292 /* if the NVS includes just the MAC preamble (the firest 24B) don't use the Tx and RX values */