Hi i'd like to make cmsis_rtos lwip echo server/client

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
User19089
Level 1
Level 1
my code is here

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

#include

int main(void)
{
DAVE_STATUS_t status;

status = DAVE_Init();

if(status != DAVE_STATUS_SUCCESS)
{
XMC_DEBUG("DAVE APPs initialization failed\n");
while(1U)
{

}
}
osKernelStart();
while(1U)
{
}
}

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
I checked ping test successful the inip address 192.168.0.10, gate 192.168.0.10, subnet 255.255.255.0
But I want to know how to receive data and send data,

where is payload?? and what is transmit buffer in my code?? I cant find it..
0 Likes
0 Replies