diff --git a/src/lib/spinel/radio_spinel_impl.hpp b/src/lib/spinel/radio_spinel_impl.hpp index c97130564..908b02b9b 100644 --- a/src/lib/spinel/radio_spinel_impl.hpp +++ b/src/lib/spinel/radio_spinel_impl.hpp @@ -259,7 +259,11 @@ template void RadioSpinel::ResetRcp(bool } hardwareReset = (mSpinelInterface.HardwareReset() == OT_ERROR_NONE); - SuccessOrExit(WaitResponse(false)); + + if (hardwareReset) + { + SuccessOrExit(WaitResponse(false)); + } resetDone = true; diff --git a/src/posix/platform/hdlc_interface.hpp b/src/posix/platform/hdlc_interface.hpp index 04266a667..bc2b899ac 100644 --- a/src/posix/platform/hdlc_interface.hpp +++ b/src/posix/platform/hdlc_interface.hpp @@ -235,7 +235,7 @@ private: { kMaxWaitTime = 2000, ///< Maximum wait time in Milliseconds for socket to become writable (see `SendFrame`). kResetTimeout = 5000, ///< Maximum wait time in Milliseconds for file to become ready (see `ResetConnection`). - kOpenFileDelay = 500, ///< Delay between open file calls, in Milliseconds (see `ResetConnection`). + kOpenFileDelay = 50, ///< Delay between open file calls, in Milliseconds (see `ResetConnection`). kRemoveRcpDelay = 2000, ///< Delay for removing RCP device from host OS after hard reset (see `ResetConnection`). };