Home | History | Annotate | Download | only in src

Lines Matching defs:Mac

424 static S32 CuCmd_Str2MACAddr(PS8 str, PU8 mac)
430 mac[i] = (U8) os_strtoul(str, &str, 16);
614 os_error_printf(CU_MSG_INFO2, (PS8)" MAC Privacy Rssi Mode Channel SSID\n");
994 TMacAddr Mac;
1007 if(OK != CuCommon_GetBuffer(pCuCmd->hCuCommon, CTRL_DATA_MAC_ADDRESS, Mac, sizeof(TMacAddr))) return;
1020 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]);
1971 TMacAddr Mac;
1993 Mac, sizeof(TMacAddr))) return;
2035 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]);
2152 os_error_printf(CU_MSG_INFO2, (PS8)" MAC Delay us (average/sum) : %d / %d\n\n", AverageMacDelay, txCounters.txCounters[TxQid].SumMacDelayUs);
4715 os_error_printf(CU_MSG_INFO2, (PS8)"Param 14 - Source MAC Address\n");
4717 os_error_printf(CU_MSG_INFO2, (PS8)"Param 14 - Destination MAC Address\n");
4740 os_error_printf(CU_MSG_INFO2, (PS8)"Continuous Tx start has failed to read source MAC Address \n");
4749 os_error_printf(CU_MSG_INFO2, (PS8)"Continuous Tx start has failed to read destination MAC Address \n");
4957 TMacAddr Mac;
4970 /* register for MAC Address*/
4980 /* read mac address */
4981 if(OK != CuCommon_GetBuffer(pCuCmd->hCuCommon, CTRL_DATA_MAC_ADDRESS, Mac, sizeof(TMacAddr)))
4983 os_error_printf(CU_MSG_INFO2, (PS8)"Unable to get Mac address, aborting\n");
4986 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[0]=%02x\n", Mac[0]);
4987 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[1]=%02x\n", Mac[1]);
4988 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[2]=%02x\n", Mac[2]);
4989 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[3]=%02x\n", Mac[3]);
4990 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[4]=%02x\n", Mac[4]);
4991 os_error_printf(CU_MSG_INFO2, (PS8)"Mac[5]=%02x\n", Mac[5]);
4993 /* write the lower MAC address starting from the LSB
4995 os_fwrite(&Mac[5], sizeof(U8), 1, nvsBinFile);
4996 os_fwrite(&Mac[4], sizeof(U8), 1, nvsBinFile);
4997 os_fwrite(&Mac[3], sizeof(U8), 1, nvsBinFile);
4998 os_fwrite(&Mac[2], sizeof(U8), 1, nvsBinFile);
5011 /* Write the higher MAC address starting from the LSB
5013 os_fwrite(&Mac[1], sizeof(U8), 1, nvsBinFile);
5014 os_fwrite(&Mac[0], sizeof(U8), 1, nvsBinFile);
5370 /* fill MAC Address */