Part Number: TMS320F28388D
Hi,
I am using NDK. I have already implemented a DHCP server service on the DSP. I have connected the board to my laptop and everything works fine. However, when I set the name of the network in NDK as the following code, it won't change on the laptop side. I have written the following lines where the DHCP server configuration has been implemented:
CI_CLIENT client;
static char *hostName = "tisoc";
strcpy(client.Hostname, hostName);
CfgAddEntry(hCfg, CFGTAG_CLIENT, CFGITEM_SERVICE_DHCPSERVER, 0, sizeof(client), (unsigned char *)&client, NULL);
The following image (from network settings of Windows 11) shows that the name of the network has not changed yet (It is "Network3" in the image while it should be "tisoc" as mentioned in the code above) :
Is this the correct way to change the name that I have shown in the image above? If not, I would appreciate it if you guide me on how to do that?
Best,
Alex