updated core controller

This commit is contained in:
2021-07-08 12:07:39 +02:00
parent 9eacccb86a
commit 1f179bfd3a
4 changed files with 51 additions and 9 deletions

View File

@ -42,8 +42,20 @@ public:
sd::SdCard getPreferredSdCard() const;
/**
* Switch on the specified SD card
* @param sdCard
* @return - RETURN_OK on success, ALREADY_ON if it is already on,
* SYSTEM_CALL_ERROR on system error
*/
ReturnValue_t switchOnSdCard(sd::SdCard sdCard);
/**
* Switch off the specified SD card
* @param sdCard
* @return - RETURN_OK on success, ALREADY_ON if it is already on,
* SYSTEM_CALL_ERROR on system error
*/
ReturnValue_t switchOffSdCard(sd::SdCard sdCard);
/**