NidhiSayanja
Newbie
0
I want to send a GET request to a server, so I connected the microcontroller (STM32) with an Ethernet module, as the microcontroller does not have a built-in Ethernet feature. I am using these two libraries:
My GET string is:
However, I face an issue when debugging the program:
Could anyone help me resolve this error?
I want to send a GET request to a server, so I connected the microcontroller (STM32) with an Ethernet module, as the microcontroller does not have a built-in Ethernet feature. I am using these two libraries:
#include "stm32f4xx_hal_uart.h" and
#include "stm32f4xx_hal.h"
My GET string is:
Code:
char http_get_request[] = "GET /testX HTTP/1.1\r\nHost: IP addressort\r\n\r\nUser-Agent: Mozilla/4.0\r\nAccept: /\r\nAccept-Encoding: gzip, deflate, br\r\nConnection: keep-alive\r\n";
However, I face an issue when debugging the program:
The number '0xe' changes repeatedly when I try to debug the program again and again (0x0, 0x10, 0xfceaf000)."Break at address '0xe' with no debug information available, or outside of program code."
Could anyone help me resolve this error?