| 785 | */ |
| 786 | |
| 787 | std::pair<int, R2Response> executeCmdWithR2Response(SynchronousSdMmcCardLowLevel& sdCard, const uint8_t command, |
| 788 | const uint32_t argument, const SdMmcCardLowLevel::Transfer transfer) |
| 789 | { |
| 790 | const auto ret = executeCmdWithLongResponse(sdCard, command, argument, transfer); |
| 791 | return {resultToErrorCode(ret.first), R2Response{ret.second}}; |
| 792 | } |
| 793 | |
| 794 | /** |
| 795 | * \brief Executes transaction with command that has R3 response. |
no test coverage detected