Hello to all
using the SDK nrf52840 trying to activate tcp client server example using soft device s140
On the server side
After the function in the main
err_code = ipv6_medium_eui48_set(m_ipv6_medium.ipv6_medium_instance_id,
&ipv6_medium_eui48);
I got the server address as below
On the client side I change the remote address as follow
static const ip6_addr_t m_remote_addr =
{
.addr =
{0x82895479,
0x000000bd,
0x00000000,
HTONL(0x00000000)}
};
Running the client application I got as follows after the function tcp_connect
void tcp_request_connection(void)
{
err_t err = tcp_connect(mp_tcp_port, &m_remote_addr, TCP_SERVER_PORT, tcp_connection_callback);
APP_ERROR_CHECK(err);
APPL_LOG(">> TCP Connection Requested.");
}
after that I got a fatal error on the terminal