Application Firmware to W7500

We have implemented Serial to Ethernet Converter module using W7500 ARM Cortex-M0 Controller and it was tested by using Peripheral example libraries provided in Manufacturer website (http://wizwiki.net/wiki/doku.php?id=products:w7500:library).
So please provide suitable Application Firmware for Serial to Ethernet Conversion Application (if possible provide with supporting command mode & Configuration of network settings).

We have a Serial to Ethernet Converter modules made with w7500 that is WIZ75x-xxx series and you can find at wizwiki or github.

Ricky https://forum.wiznet.io/u/ricky WIZnet Team
February 14

We have a Serial to Ethernet Converter modules made with w7500 that is
WIZ75x-xxx series and you can find at wizwiki
https://wizwiki.net/wiki/doku.php?id=products:s2e_module:start or
github https://github.com/Wiznet.


Visit Topic https://forum.wiznet.io/t/topic/4225/2 or reply to this
email to respond.

To unsubscribe from these emails, click here
https://forum.wiznet.io/email/unsubscribe/12b3db14ca5d8c682bdc8a243e489685ebf3839323e112039c10941acdc75229.

Dear,

We have downloaded the Project from the above site.
We have programmed the hex file in our chip. But what is the default IP
address configured in the above code and how should I know this. Please
reply on this.

With Regards,
Supriya B

Sorry for the late reply.

I suggest repository that Wiznet/WIZ750SR. The Wiznet/W7500x-Serial-to-Ethernet-device is older.

The default settings can be found ConfigData.c file.

Thanks for your valuable response.

In Wiznet/WIZ750SR, I did not found mac address or mac address structure . How can I configure my mac address. Please reply on this.

With regards,
MURALIDHAR M

The code released to github is the wiz750sr product firmware.

We must enter the mac address when producing the product.

Take a look at the check_mac_address () function.

printf("INPUT FIRST MAC?\r\n");
for(i = 0; i < MACSTR_SIZE-1; i++)
{
	mac_str[i] = S_UartGetc();
	//S_UartPutc(mac_str[i]);
}

This is where you enter and save the mac address.

The input format is as follows.

MC00:11:22:33:44:55\r\n

Or you can modify your code to avoid receiving input.

//uint8_t mac_str[MACSTR_SIZE] = {0, };
uint8_t mac_str[MACSTR_SIZE] = {"MC11:22:33:44:55:66\r\n"};
...
/*
    for(i = 0; i < MACSTR_SIZE-1; i++)
	{
		mac_str[i] = S_UartGetc();
		//S_UartPutc(mac_str[i]);
	}
*/
...

and

Please refer to the following.

Mac_Conf(void) or Net_Conf(void) in ConfigData.c.