Part Number:CC3200
Tool/software: TI-RTOS
Thank you for your reply I use the same code but i won't get mac id it shows only 000000
_u8 macAddressVal[SL_MAC_ADDR_LEN];
_u8 macAddressLen = SL_MAC_ADDR_LEN;
sl_NetCfgGet(SL_MAC_ADDRESS_GET,NULL,&macAddressLen,(_u8 *)macAddressVal);
UART_PRINT("\n\rMAC Address: %02x:%02x:%02x:%02x:%02x:%02x\n\r\n\r",
macAddressVal[0], macAddressVal[1], macAddressVal[2], macAddressVal[3], macAddressVal[4], macAddressVal[5]);
but I'm unable to extract the mac id. I use IAR Emdedded Workbench IDE - Arm 8.32.1
can you please help me out how I fix the problem.