The [SoftwareSerial implementation for Arduino UNO R4](https://github.com/arduino/ArduinoCore-renesas/tree/main/libraries/SoftwareSerial) is missing the `end()` method. Sometimes it is necessary to stop the Serial and start manually controlling the pins. `end()` is implemented for all other platforms that I have worked with :frowning:. For example: - https://github.com/arduino/ArduinoCore-avr/blob/1.8.6/libraries/SoftwareSerial/src/SoftwareSerial.h#L96 - https://github.com/arduino/ArduinoCore-megaavr/blob/1.8.8/libraries/SoftwareSerial/src/SoftwareSerial.h#L96 ### Additional context #### Additional requests - https://github.com/arduino/ArduinoCore-renesas/issues/463#issuecomment-2832629852 - https://github.com/arduino/ArduinoCore-renesas/issues/463#issuecomment-2832930786
The SoftwareSerial implementation for Arduino UNO R4 is missing the
end()method.Sometimes it is necessary to stop the Serial and start manually controlling the pins.
end()is implemented for all other platforms that I have worked with 😦. For example:Additional context
Additional requests