-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup to
grapefruit-seq
in preparation for Cosmo (#1990)
Three relatively standalone commits: - Add a helper function `AuxFlash::get_compressed_blob_streaming` to do streaming decompression of a blob in auxflash. We'll use this for both FPGAs on Cosmo. - Move Spartan7 initialization to a separate crate, since we need to do it on both Grapefruit and Cosmo. This is mostly modeled after `drv-ice40-spi-program`. - Remove `fmc` peripheral from the `fmc_demo` task, because it's now initialized pre-Hubris.
- Loading branch information
Showing
8 changed files
with
294 additions
and
113 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "drv-spartan7-spi-program" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
drv-spi-api = { path = "../spi-api" } | ||
drv-stm32xx-sys-api = { path = "../stm32xx-sys-api" } | ||
counters = { path = "../../lib/counters" } | ||
userlib = { path = "../../sys/userlib" } | ||
|
||
[lib] | ||
test = false | ||
doctest = false | ||
bench = false | ||
|
||
[lints] | ||
workspace = true |
Oops, something went wrong.