├── .cargo └── config ├── .gdbinit ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── RELEASE_PROCESS.md ├── dev-board ├── README.md ├── dev-board-bottom.png ├── dev-board-top.png └── pcb │ ├── .gitignore │ ├── 25.sch │ ├── bom.csv │ ├── dev-board-cache.lib │ ├── dev-board.dcm │ ├── dev-board.kicad_pcb │ ├── dev-board.lib │ ├── dev-board.pro │ ├── dev-board.sch │ ├── fp-lib-table │ ├── gerbers.zip │ └── sym-lib-table ├── examples └── dump.rs ├── memory.x └── src ├── error.rs ├── lib.rs ├── log.rs ├── prelude.rs ├── series25.rs └── utils.rs /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /dev-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/README.md -------------------------------------------------------------------------------- /dev-board/dev-board-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/dev-board-bottom.png -------------------------------------------------------------------------------- /dev-board/dev-board-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/dev-board-top.png -------------------------------------------------------------------------------- /dev-board/pcb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/.gitignore -------------------------------------------------------------------------------- /dev-board/pcb/25.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/25.sch -------------------------------------------------------------------------------- /dev-board/pcb/bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/bom.csv -------------------------------------------------------------------------------- /dev-board/pcb/dev-board-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/dev-board-cache.lib -------------------------------------------------------------------------------- /dev-board/pcb/dev-board.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/dev-board.dcm -------------------------------------------------------------------------------- /dev-board/pcb/dev-board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/dev-board.kicad_pcb -------------------------------------------------------------------------------- /dev-board/pcb/dev-board.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/dev-board.lib -------------------------------------------------------------------------------- /dev-board/pcb/dev-board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/dev-board.pro -------------------------------------------------------------------------------- /dev-board/pcb/dev-board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/dev-board.sch -------------------------------------------------------------------------------- /dev-board/pcb/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/fp-lib-table -------------------------------------------------------------------------------- /dev-board/pcb/gerbers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/gerbers.zip -------------------------------------------------------------------------------- /dev-board/pcb/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/dev-board/pcb/sym-lib-table -------------------------------------------------------------------------------- /examples/dump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/examples/dump.rs -------------------------------------------------------------------------------- /memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/memory.x -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/src/log.rs -------------------------------------------------------------------------------- /src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/src/prelude.rs -------------------------------------------------------------------------------- /src/series25.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/src/series25.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonas-schievink/spi-memory/HEAD/src/utils.rs --------------------------------------------------------------------------------