Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
11 years, 11 months ago.
Udp Send Issue
Hi I'm trying to send data with udp using this library.But not send to data.So Udp "sendTo" function returns to -1. Udp sender code is below.How to resolve this problem.? Thanks for answer...
#include "mbed.h" #include "EthernetInterface.h" const char* ECHO_SERVER_ADDRESS = "192.168.2.67"; const int ECHO_SERVER_PORT = 8999; DigitalOut myled(LED1); int main() { EthernetInterface eth; eth.init("192.168.2.253","255.255.255.0","192.168.2.1"); eth.connect(); UDPSocket sock; sock.init(); Endpoint echo_server; echo_server.set_address(ECHO_SERVER_ADDRESS, ECHO_SERVER_PORT); char out_buffer[] = "Hello World"; while(1) { int len=sock.sendTo(echo_server, out_buffer, sizeof(out_buffer)); if(len<0) myled=!myled; wait(0.1); } }
Question relating to:
2 Answers
11 years, 9 months ago.
Thank you for reporting this problem. This should be fixed in Revision 26 of the EthernetInterface library.
Cheers, Emilio
I don't like to bother you, but there is a simple question regarding the Version/Release of the libraries: Is there any Revision-Index in the library/code (a list) everybody can check? I failed to find any advice in the MBED-articles. Probably I used wrong search-terms. Thank you and best regards. Georg
posted by 16 Feb 2013Is there any Revision-Index in the library/code (a list) everybody can check?
Yes, every library has an "History" tab with a list of all the revisions. For example: http://mbed.org/users/mbed_official/code/EthernetInterface/shortlog
To update a library in an existing program, simply select the library folder and click on the “Update” button in the right “Library Details” panel.
HTH, Emilio
posted by 18 Feb 2013Dear Emilio, thank you for your support. I appreciate your help. You are doing a great job. The HardIP is working now.
In addition to our previous communication, I would like to get your opinion about the mbed UDP-Speed.
I have to get a 16bit word via SPI following by sending this value via UDP (16bit value every 6microseconds and faster).. Is it possible to manage this task using mbed? I've already deactivated the Checksum and set "set_blocking=false". Due to the above mentioned changes I've got a better performance but the mbed is freezing for timeouts below 5ms (SPI routine is fast enough and working; checked w/o ETH). There are some comments can be found on "mbed.org", but no one really describing the "diameter":) of the "bottleneck" (not to mention the solution).
Please find attached below the source I'm using . Best regards, Georg
- include "mbed.h"
- include "EthernetInterface.h"
const char* ECHO_SERVER_ADDRESS = "192.168.1.90"; const int ECHO_SERVER_PORT = 60000;
int main() {
char u_buff[2]; u_buff[0]=0x41; u_buff[1]=0x42; EthernetInterface eth; eth.init("192.168.1.100", "255.255.255.0", ""); Use hard IP
eth.connect(); UDPSocket sock; sock.init(); sock.set_blocking(false);
Endpoint echo_server; echo_server.set_address(ECHO_SERVER_ADDRESS, ECHO_SERVER_PORT);
while(1) { sock.sendTo(echo_server, u_buff, sizeof(u_buff)); wait_ms(1); } }
posted by 19 Apr 201311 years, 10 months ago.
Hi Gencer, I faced the same problem with 'sendTo' function. It always returns -1. I solved this problem by adding a DHCP. It seems like 'sendTo' function only works if you add DHCP in your system which is really surprising. I actually need to build my system without any DHCP. I hope Emilio Monti con help us with that.
Regards, Mahmud