Browse Source

Prevent 'I2C_EEPROM' on LPC176x

vanilla_fb_2.0.x
Scott Lahteine 5 years ago
parent
commit
d666ef00e0
  1. 26
      Marlin/src/HAL/LPC1768/eeprom_api.h
  2. 2
      Marlin/src/HAL/LPC1768/eeprom_flash.cpp
  3. 2
      Marlin/src/HAL/LPC1768/eeprom_sdcard.cpp
  4. 4
      Marlin/src/HAL/LPC1768/inc/Conditionals_post.h

26
Marlin/src/HAL/LPC1768/eeprom_api.h

@ -1,26 +0,0 @@
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#pragma once
#include "../shared/eeprom_api.h"
#define FLASH_EEPROM_EMULATION

2
Marlin/src/HAL/LPC1768/eeprom_flash.cpp

@ -40,7 +40,7 @@
#if ENABLED(FLASH_EEPROM_EMULATION)
#include "eeprom_api.h"
#include "../shared/eeprom_api.h"
extern "C" {
#include <lpc17xx_iap.h>

2
Marlin/src/HAL/LPC1768/eeprom_sdcard.cpp

@ -26,7 +26,7 @@
#if ENABLED(SDCARD_EEPROM_EMULATION)
#include "eeprom_api.h"
#include "../shared/eeprom_api.h"
#include <chanfs/diskio.h>
#include <chanfs/ff.h>

4
Marlin/src/HAL/LPC1768/inc/Conditionals_post.h

@ -21,6 +21,8 @@
*/
#pragma once
#if USE_FALLBACK_EEPROM && NONE(SDCARD_EEPROM_EMULATION, SRAM_EEPROM_EMULATION)
#undef I2C_EEPROM // Arduino framework provides code for I2C
#if USE_FALLBACK_EEPROM
#define FLASH_EEPROM_EMULATION
#endif

Loading…
Cancel
Save