├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── auto-github-actions.yml │ ├── check-arduino.yml │ ├── report-size-deltas.yml │ └── spell-check.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Packages_Patches ├── Fab_SAM_Arduino │ └── hardware │ │ ├── hardware │ │ ├── 1.6.18-alpha2 │ │ │ └── boards.txt │ │ └── 1.7.0 │ │ │ └── boards.txt │ │ └── samd │ │ ├── 1.6.18-alpha2 │ │ └── boards.txt │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.8.0 │ │ └── boards.txt │ │ └── 1.9.0 │ │ └── boards.txt ├── Seeeduino │ └── hardware │ │ └── samd │ │ ├── 1.7.0 │ │ └── boards.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.9 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.8.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Arduino.h │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.8.3 │ │ ├── cores │ │ └── arduino │ │ │ ├── Arduino.h │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── SparkFun │ └── hardware │ │ └── samd │ │ └── 1.8.3 │ │ └── cores │ │ ├── arduino │ │ ├── Print.cpp │ │ └── Print.h │ │ └── arduino51 │ │ ├── Print.cpp │ │ └── Print.h ├── adafruit │ └── hardware │ │ └── samd │ │ ├── 1.5.14 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.6.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.0 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.1 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.10 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.11 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.2 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.3 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.4 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.5 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ ├── 1.7.8 │ │ ├── cores │ │ │ └── arduino │ │ │ │ ├── Print.cpp │ │ │ │ └── Print.h │ │ └── platform.txt │ │ └── 1.7.9 │ │ ├── cores │ │ └── arduino │ │ │ ├── Print.cpp │ │ │ └── Print.h │ │ └── platform.txt ├── arduino │ └── hardware │ │ └── samd │ │ ├── 1.8.10 │ │ └── platform.txt │ │ ├── 1.8.11 │ │ └── platform.txt │ │ ├── 1.8.12 │ │ └── platform.txt │ │ ├── 1.8.13 │ │ └── platform.txt │ │ ├── 1.8.6 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.7 │ │ ├── cores │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ ├── 1.8.8 │ │ ├── cores │ │ │ ├── Arduino.h │ │ │ └── arduino │ │ │ │ └── Arduino.h │ │ └── platform.txt │ │ └── 1.8.9 │ │ ├── cores │ │ └── arduino │ │ │ └── Arduino.h │ │ └── platform.txt └── industrialshields │ └── hardware │ └── avr │ ├── 1.1.36 │ └── cores │ │ └── industrialshields │ │ └── Udp.h │ └── 1.1.37 │ └── cores │ └── industrialshields │ └── Udp.h ├── README.md ├── changelog.md ├── examples ├── EEPROM_CRC │ └── EEPROM_CRC.ino ├── EEPROM_Clear │ └── EEPROM_Clear.ino ├── EEPROM_get │ └── EEPROM_get.ino ├── EEPROM_iteration │ └── EEPROM_iteration.ino ├── EEPROM_put │ └── EEPROM_put.ino ├── EEPROM_read │ └── EEPROM_read.ino ├── EEPROM_update │ └── EEPROM_update.ino ├── EEPROM_write │ └── EEPROM_write.ino ├── EmulateEEPROM │ └── EmulateEEPROM.ino ├── FlashStoreAndRetrieve │ └── FlashStoreAndRetrieve.ino ├── StoreNameAndSurname │ └── StoreNameAndSurname.ino └── multiFileProject │ ├── multiFileProject.cpp │ ├── multiFileProject.h │ └── multiFileProject.ino ├── keywords.txt ├── library.json ├── library.properties ├── platformio └── platformio.ini ├── src ├── FlashAsEEPROM_SAMD.h ├── FlashAsEEPROM_SAMD.hpp ├── FlashStorage_SAMD.h ├── FlashStorage_SAMD.hpp ├── FlashStorage_SAMD21.h ├── FlashStorage_SAMD51.h └── FlashStorage_SAMD_Impl.h └── utils ├── astyle_library.conf └── restyle.sh /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/report-size-deltas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/workflows/report-size-deltas.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.6.18-alpha2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/hardware/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.6.18-alpha2/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.8.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Fab_SAM_Arduino/hardware/samd/1.9.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.0/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.0/boards.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.7.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.7.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/Seeeduino/hardware/samd/1.8.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/Seeeduino/hardware/samd/1.8.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/SparkFun/hardware/samd/1.8.3/cores/arduino51/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.5.14/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.5.14/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.4/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.4/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.6.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.6.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.0/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.0/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.1/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.1/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.2/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.2/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.3/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.3/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.4/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.4/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.5/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.5/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.cpp -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/cores/arduino/Print.h -------------------------------------------------------------------------------- /Packages_Patches/adafruit/hardware/samd/1.7.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/adafruit/hardware/samd/1.7.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.10/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.10/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.11/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.11/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.12/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.12/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.13/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.13/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.6/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.6/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.6/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.6/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.7/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.7/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.7/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.7/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/cores/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/cores/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.8/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.8/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.9/cores/arduino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/cores/arduino/Arduino.h -------------------------------------------------------------------------------- /Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/arduino/hardware/samd/1.8.9/platform.txt -------------------------------------------------------------------------------- /Packages_Patches/industrialshields/hardware/avr/1.1.36/cores/industrialshields/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/industrialshields/hardware/avr/1.1.36/cores/industrialshields/Udp.h -------------------------------------------------------------------------------- /Packages_Patches/industrialshields/hardware/avr/1.1.37/cores/industrialshields/Udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/Packages_Patches/industrialshields/hardware/avr/1.1.37/cores/industrialshields/Udp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/changelog.md -------------------------------------------------------------------------------- /examples/EEPROM_CRC/EEPROM_CRC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_CRC/EEPROM_CRC.ino -------------------------------------------------------------------------------- /examples/EEPROM_Clear/EEPROM_Clear.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_Clear/EEPROM_Clear.ino -------------------------------------------------------------------------------- /examples/EEPROM_get/EEPROM_get.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_get/EEPROM_get.ino -------------------------------------------------------------------------------- /examples/EEPROM_iteration/EEPROM_iteration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_iteration/EEPROM_iteration.ino -------------------------------------------------------------------------------- /examples/EEPROM_put/EEPROM_put.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_put/EEPROM_put.ino -------------------------------------------------------------------------------- /examples/EEPROM_read/EEPROM_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_read/EEPROM_read.ino -------------------------------------------------------------------------------- /examples/EEPROM_update/EEPROM_update.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_update/EEPROM_update.ino -------------------------------------------------------------------------------- /examples/EEPROM_write/EEPROM_write.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EEPROM_write/EEPROM_write.ino -------------------------------------------------------------------------------- /examples/EmulateEEPROM/EmulateEEPROM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/EmulateEEPROM/EmulateEEPROM.ino -------------------------------------------------------------------------------- /examples/FlashStoreAndRetrieve/FlashStoreAndRetrieve.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/FlashStoreAndRetrieve/FlashStoreAndRetrieve.ino -------------------------------------------------------------------------------- /examples/StoreNameAndSurname/StoreNameAndSurname.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/StoreNameAndSurname/StoreNameAndSurname.ino -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/multiFileProject/multiFileProject.cpp -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/multiFileProject/multiFileProject.h -------------------------------------------------------------------------------- /examples/multiFileProject/multiFileProject.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/examples/multiFileProject/multiFileProject.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/library.properties -------------------------------------------------------------------------------- /platformio/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/platformio/platformio.ini -------------------------------------------------------------------------------- /src/FlashAsEEPROM_SAMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashAsEEPROM_SAMD.h -------------------------------------------------------------------------------- /src/FlashAsEEPROM_SAMD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashAsEEPROM_SAMD.hpp -------------------------------------------------------------------------------- /src/FlashStorage_SAMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashStorage_SAMD.h -------------------------------------------------------------------------------- /src/FlashStorage_SAMD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashStorage_SAMD.hpp -------------------------------------------------------------------------------- /src/FlashStorage_SAMD21.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashStorage_SAMD21.h -------------------------------------------------------------------------------- /src/FlashStorage_SAMD51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashStorage_SAMD51.h -------------------------------------------------------------------------------- /src/FlashStorage_SAMD_Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/src/FlashStorage_SAMD_Impl.h -------------------------------------------------------------------------------- /utils/astyle_library.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/utils/astyle_library.conf -------------------------------------------------------------------------------- /utils/restyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoih-prog/FlashStorage_SAMD/HEAD/utils/restyle.sh --------------------------------------------------------------------------------