We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a905457 commit c61f68eCopy full SHA for c61f68e
src/Sd2Card.h
@@ -132,7 +132,7 @@ class Sd2Card {
132
uint8_t type(void) const;
133
134
private:
135
- SD_CardInfo _SdCardInfo;
+ BSP_SD_CardInfo _SdCardInfo;
136
137
};
138
#endif // sd2Card_h
src/bsp_sd.h
@@ -59,8 +59,9 @@ Please update the core or install previous library version."
59
60
/*SD Card information structure */
61
62
-#define SD_CardInfo HAL_SD_CardInfoTypeDef
63
-
+#define BSP_SD_CardInfo HAL_SD_CardInfoTypeDef
+/* For backward compatibility */
64
+#define SD_CardInfo BSP_SD_CardInfo
65
/*SD status structure definition */
66
#define MSD_OK ((uint8_t)0x00)
67
#define MSD_ERROR ((uint8_t)0x01)
0 commit comments