W5500 에서 TCP/IP 접속 을 DDNS로 하는 방법을 알고싶습니다

W5500 에서 TCP/IP 접속 을 DDNS로 하는 방법을 알고싶습니다

uint8_t destip[4] = {10,230,9,109 };
uint16_t destport = 5000;

connect(sn, destip, port);

이아니라
uint8_t *site =“allmot.iptime.org”;

connect(sn, site , port);

이런 방시으로 할수 있는 방법을 알고 싶습니다.

WIZnet에서 제공하는 ioLibrary_Driver에 보시면, DNS 소스가 있습니다.
ioLibrary를 포팅하시고, 해당 소스를 이용하시면 될 것 같습니다.

ioLibrary: GitHub - Wiznet/ioLibrary_Driver: ioLibrary_Driver can be used for the application design of WIZnet TCP/IP chips as W5500, W5300, W5200, W5100 W5100S.
소스 경로: ioLibrary_Driver/internet/DNS