aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7/build.rs
Commit message (Collapse)AuthorAgeFilesLines
* remove memory.x files for other stm32 examplesJuliDi2023-07-281-39/+1
|
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-2/+1
| | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`.
* Run rustfmt.Dario Nieuwenhuis2022-06-121-1/+2
|
* Replace rustflags with build.rs extra-link-args.Dario Nieuwenhuis2021-11-071-0/+4
| | | | | | | | | | | | Rustflags apply to ALL the crates in the graph, while we only need them for the toplevel crate which is the only one getting linked. Rustflags are not equal for all crates, this caused cargo to re-build the same dependency crate multiple times uselessly. After this change, deps are reused more, making builds faster. Note that this only applies when sharing the target/ dir for multiple crates in the repo which is not the default.
* Initial support for STM32F767ZI.Matous Hybl2021-10-261-0/+39