parent
418743cf6a
commit
7d0efb452a
@ -19,6 +19,8 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#include "../platforms.h"
|
||||||
|
|
||||||
#if defined(HAL_STM32) && !defined(STM32H7xx)
|
#if defined(HAL_STM32) && !defined(STM32H7xx)
|
||||||
|
|
||||||
#include "MarlinSPI.h"
|
#include "MarlinSPI.h"
|
||||||
|
@ -19,7 +19,9 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#ifdef STM32F1
|
#include "../platforms.h"
|
||||||
|
|
||||||
|
#ifdef HAL_STM32
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PersistentStore for Arduino-style EEPROM interface
|
* PersistentStore for Arduino-style EEPROM interface
|
||||||
@ -79,4 +81,4 @@ bool PersistentStore::read_data(int &pos, uint8_t *value, size_t size, uint16_t
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // IIC_BL24CXX_EEPROM
|
#endif // IIC_BL24CXX_EEPROM
|
||||||
#endif // STM32F1
|
#endif // HAL_STM32
|
||||||
|
@ -19,14 +19,15 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#include "../platforms.h"
|
||||||
|
|
||||||
|
#ifdef HAL_STM32
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Platform-independent Arduino functions for I2C EEPROM.
|
* Platform-independent Arduino functions for I2C EEPROM.
|
||||||
* Enable USE_SHARED_EEPROM if not supplied by the framework.
|
* Enable USE_SHARED_EEPROM if not supplied by the framework.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef STM32F1
|
|
||||||
|
|
||||||
#include "../../inc/MarlinConfig.h"
|
#include "../../inc/MarlinConfig.h"
|
||||||
|
|
||||||
#if ENABLED(IIC_BL24CXX_EEPROM)
|
#if ENABLED(IIC_BL24CXX_EEPROM)
|
||||||
@ -51,4 +52,4 @@ uint8_t eeprom_read_byte(uint8_t *pos) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif // IIC_BL24CXX_EEPROM
|
#endif // IIC_BL24CXX_EEPROM
|
||||||
#endif // STM32F1
|
#endif // HAL_STM32
|
||||||
|
Loading…
Reference in New Issue
Block a user