Target: NUCLEO_F103RB
net driver config to use : features\cellular\framework\targets\QUECTEL\M26
When compile the follow example code, I got an link error:
cannot move location counter backwards (from 20004cf0 to 20004c00)
code:
EthernetInterface eth;
eth.connect();
// Create a socket
TCPSocket sock;
sock.open(ð);
// Connect
sock.connect("arm.com", 80);
// Send data
sock.send("GET / HTTP/1.0\r\n\r\n", 18);
// Receive data
char buf[100];
sock.recv(buf, 100);
// Close the socket
sock.close();
Issue request type
[ ] Question
[ ] Enhancement
[ ] Bug