Ethernet_STM
Ethernet_STM copied to clipboard
Local IP problem
hello, i have STM32f103c8 blue pill board and w5100. I connected it just like it's specified in readme but when i try Web server example i got "server at 0.0.0.0" in serial monitor. In w5100.h, I specified the w5100.
It seems that PA4 was not initialized properly. Try to re-initialize it in setup function
void setup() {
pinMode(PA4, OUTPUT); // <<<<------ HERE --------
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}