diff --git a/firmware/target/arm/as3525/sd-as3525v2.c b/firmware/target/arm/as3525/sd-as3525v2.c index 7d1c2bfb18..945d6e5302 100644 --- a/firmware/target/arm/as3525/sd-as3525v2.c +++ b/firmware/target/arm/as3525/sd-as3525v2.c @@ -420,11 +420,13 @@ static bool send_cmd(const int drive, const int cmd, const int arg, const int fl if(flags & MCI_LONG_RESP) { - response[3] = MCI_RESP3; - response[2] = MCI_RESP2; - response[1] = MCI_RESP1; + response[0] = MCI_RESP3; + response[1] = MCI_RESP2; + response[2] = MCI_RESP1; + response[3] = MCI_RESP0; } - response[0] = MCI_RESP0; + else + response[0] = MCI_RESP0; } return true; }