├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── githubci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Adafruit_FRAM_SPI.cpp ├── Adafruit_FRAM_SPI.h ├── LICENSE ├── README.md ├── assets └── board.jpg ├── examples ├── FRAMInfo │ └── FRAMInfo.ino └── MB85RS64V │ └── MB85RS64V.ino └── library.properties /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Adafruit_FRAM_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/Adafruit_FRAM_SPI.cpp -------------------------------------------------------------------------------- /Adafruit_FRAM_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/Adafruit_FRAM_SPI.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/README.md -------------------------------------------------------------------------------- /assets/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/assets/board.jpg -------------------------------------------------------------------------------- /examples/FRAMInfo/FRAMInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/examples/FRAMInfo/FRAMInfo.ino -------------------------------------------------------------------------------- /examples/MB85RS64V/MB85RS64V.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/examples/MB85RS64V/MB85RS64V.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_FRAM_SPI/HEAD/library.properties --------------------------------------------------------------------------------