Skip to content

Commit

Permalink
Remove built in SD Fat implementation to use a consistent implementat…
Browse files Browse the repository at this point in the history
…ion between CPUs.
  • Loading branch information
MartinMueller2003 committed May 29, 2024
1 parent f2d6a65 commit 211540e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .scripts/deleteSD.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,17 @@
PACKAGES_DIR = env['PROJECT_PACKAGES_DIR']
FRAMEWORK_DIR = os.path.join(PACKAGES_DIR, "framework-arduinoespressif8266/libraries")
SD_DIR = os.path.join(FRAMEWORK_DIR, "SD")
SDFAT_DIR = os.path.join(FRAMEWORK_DIR, "ESP8266SdFat")
# print("PACKAGES_DIR " + PACKAGES_DIR)
# print("FRAMEWORK_DIR " + FRAMEWORK_DIR)
# print("SD_DIR " + SD_DIR)

if os.path.exists(SD_DIR):
shutil.rmtree(SD_DIR)

if os.path.exists(SDFAT_DIR):
shutil.rmtree(SDFAT_DIR)

def before_build(target, source, env):
print("BeforeBuild")

Expand Down

0 comments on commit 211540e

Please sign in to comment.