actually I am using a esp8266 with esp link firmware on it with 115200 serial baud rate , and an arduino mega 2560
the same hardware was working well with the 0.92 version
I noticed something maybe it is helpful:
I used platform io with microsoft visual studio code software to compile the firmware instead of arduino ide and that gives me some detailed warnings and here they are
C:\Users\Ash.platformio\packages\framework-arduinoavr\cores\arduino/HardwareSerial.h:147:25: warning: type of 'Serial1' does not match original declarat
ion
extern HardwareSerial Serial1;
^
C:\Users\Ash.platformio\packages\framework-arduinoavr\cores\arduino\HardwareSerial1.cpp:61:16: note: previously declared here
HardwareSerial Serial1(&UBRR1H, &UBRR1L, &UCSR1A, &UCSR1B, &UCSR1C, &UDR1);
^
C:\Users\Ash.platformio\packages\framework-arduinoavr\cores\arduino/HardwareSerial.h:143:25: warning: type of 'Serial' does not match original declarati
on
extern HardwareSerial Serial;
^
C:\Users\Ash.platformio\packages\framework-arduinoavr\cores\arduino/HardwareSerial.h:143:25: warning: type of 'Serial' does not match original declarati
on
C:\Users\Ash.platformio\packages\framework-arduinoavr\cores\arduino\HardwareSerial0.cpp:70:18: note: previously declared here
HardwareSerial Serial(&UBRR0H, &UBRR0L, &UCSR0A, &UCSR0B, &UCSR0C, &UDR0);
^
and again these warnings didn't showed up with the 0.92 version