Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SD.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_HAL_STM32F767_SD_H
4#define IMT_BASE_HAL_STM32F767_SD_H
5
10
11#include "SDMMC.h"
12
13namespace imt {
14namespace base {
15namespace hal {
16namespace stm32f767 {
17namespace peripherals {
18
23class SD : public SDMMC {
24public:
25
33
34 // Class operators
35 SD() = delete;
36 ~SD() = delete;
37 SD(const SD& other) = delete;
38 SD(const SD&& other) = delete;
39 SD& operator=(const SD& other) = delete;
40 SD& operator=(const SD&& other) = delete;
41
42private:
43
51 static SDMMCTypes::Status initPeripheral(Handle& hsd);
52
59 static SDMMCTypes::Error powerOn(Handle& hsd);
60
66 static SDMMCTypes::Error initCard(Handle& hsd);
67
75 static SDMMCTypes::Status getCardCSD(Handle& hsd, CardCSD& pCSD);
76};
77
78} // namespace peripherals
79} // namespace stm32f767
80} // namespace hal
81} // namespace base
82} // namespace imt
83
84#endif // IMT_BASE_HAL_STM32F767_SD_H
SD/SDIO/MMC card host interface (SDMMC) Reference: ST_CortexM7_STM32F769_TRM_Rev4....
Definition SD.h:23
SD & operator=(const SD &other)=delete
SD & operator=(const SD &&other)=delete
static SDMMCTypes::Status init(Handle &hsd)
Initializes the SDMMC peripheral according to the specified parameters in the Handle and initiate the...
SD/SDIO/MMC card host interface (SDMMC) Reference: ST_CortexM7_STM32F769_TRM_Rev4....
Definition SDMMC.h:21
Status
HAL Status structures definition TODO: move to a generic file?
Definition SDMMCTypes.h:110
This is a application specific file which is used to configure Imt.Base.Core.Math.
Card Specific Data: CSD Register.
Definition SDMMC.h:150
SD Error status enumeration Structure definition.
Definition SDMMCTypes.h:25