This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Cannot change device URN cc3200

hi all,

I wanted to change the device name from "simplelink-xyz" to "myname-xyz" so that i can access the webpage by accessing "myname.net".

In the network guide there is a section for changing device URN. I tried that but its not working.

  • Hi Vinu,

    I think what you want to change here is the domain name of the device. The default domain name of the device is "mysimplelink.net". You can change the same using "sl_NetAppSet()" API.
    Please find below the code snippet to change the domain name

    sl_NetAppSet (SL_NET_APP_DEVICE_CONFIG_ID, NETAPP_SET_GET_DEV_CONF_OPT_DOMAIN_NAME,
    strlen((const char *)<domain_name>), (_u8 *) <domain_name>);

    Regards,
    Ankur