Merge #53
53: build(deps): bump cortex-m-rtfm from v0.5.0-beta.1 to v0.5.0 r=jordens a=dependabot-preview[bot] Bumps [cortex-m-rtfm](https://github.com/rtfm-rs/cortex-m-rtfm) from v0.5.0-beta.1 to v0.5.0. <details> <summary>Changelog</summary> *Sourced from [cortex-m-rtfm's changelog](https://github.com/rtfm-rs/cortex-m-rtfm/blob/master/CHANGELOG.md).* > ## v0.5.0 - 2019-11-14 > > ### Added > > - Experimental support for homogeneous and heterogeneous multi-core > microcontrollers has been added. Support is gated behind the `homogeneous` and > `heterogeneous` Cargo features. > > ### Changed > > - [breaking-change][] [RFC 155] "explicit `Context` parameter" has been > implemented. > > [RFC 155]: [rtfm-rs/cortex-m-rtfm#155](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/155) > > - [breaking-change][] [RFC 147] "all functions must be safe" has been > implemented. > > [RFC 147]: [rtfm-rs/cortex-m-rtfm#147](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/147) > > - All the queues internally used by the framework now use `AtomicU8` indices > instead of `AtomicUsize`; this reduces the static memory used by the > framework. > > - [breaking-change][] when the `capacity` argument is omitted, the capacity of > the task is assumed to be `1`. Before, a reasonable (but hard to predict) > capacity was computed based on the number of `spawn` references the task had. > > - [breaking-change][] resources that are appear as exclusive references > (`&mut-`) no longer appear behind the `Exclusive` newtype. > > - [breaking-change][] the `timer-queue` Cargo feature has been removed. The > `schedule` API can be used without enabling any Cargo feature. > > - [breaking-change][] when the `schedule` API is used the type of > `init::Context.core` changes from `cortex_m::Peripherals` to > `rtfm::Peripherals`. The fields of `rtfm::Peripherals` do not change when > Cargo features are enabled. > > - [breaking-change][] the monotonic timer used to implement the `schedule` API > is now user configurable via the `#[app(monotonic = ..)]` argument. IMPORTANT: > it is now the responsibility of the application author to configure and > initialize the chosen `monotonic` timer during the `#[init]` phase. > > - [breaking-change][] the `peripherals` field is not include in `init::Context` > by default. One must opt-in using the `#[app(peripherals = ..)]` argument. > > - [breaking-change][] the `#[exception]` and `#[interrupt]` attributes have been > removed. Hardware tasks are now declared using the `#[task(binds = ..)]` > attribute. ></tr></table> ... (truncated) </details> <details> <summary>Commits</summary> - [`6b0a2df`](6b0a2df41c
) Merge [#272](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/272) - [`4fcb6ab`](4fcb6ab7cc
) v0.5.0 final release - [`e28294b`](e28294b220
) Merge [#271](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/271) - [`2441b7e`](2441b7e389
) Minor docs update to monotonic - [`85463ed`](85463ed6c3
) Merge [#268](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/268) [#270](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/270) - [`76e2345`](76e234599f
) Added struct de-structure-ing example in tips & tricks - [`e9a8394`](e9a83947bc
) fix bash comparison - [`da9c6a7`](da9c6a714e
) run cfail tests only when rustc --version == $MSRV - [`31b392f`](31b392fe3a
) CI: replace compiletest-rs with trybuild - [`72e84cb`](72e84cb297
) Merge [#266](https://github-redirect.dependabot.com/rtfm-rs/cortex-m-rtfm/issues/266) - Additional commits viewable in [compare view](1fe9767eba...6b0a2df41c
) </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
This commit is contained in:
commit
53352d1281
|
@ -87,24 +87,24 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "cortex-m-rtfm"
|
||||
version = "0.5.0-beta.1"
|
||||
source = "git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0-beta.1#1fe9767ebac37a6f220d5e84505e16691b370002"
|
||||
version = "0.5.0"
|
||||
source = "git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0#6b0a2df41c024fa8e7da07f3b42a80f19840432e"
|
||||
dependencies = [
|
||||
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cortex-m-rtfm-macros 0.5.0-beta.1 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0-beta.1)",
|
||||
"cortex-m-rtfm-macros 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)",
|
||||
"heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rtfm-core 0.3.0-beta.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rtfm-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "cortex-m-rtfm-macros"
|
||||
version = "0.5.0-beta.1"
|
||||
source = "git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0-beta.1#1fe9767ebac37a6f220d5e84505e16691b370002"
|
||||
version = "0.5.0"
|
||||
source = "git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0#6b0a2df41c024fa8e7da07f3b42a80f19840432e"
|
||||
dependencies = [
|
||||
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rtfm-syntax 0.4.0-beta.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rtfm-syntax 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
@ -245,12 +245,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
|
||||
[[package]]
|
||||
name = "rtfm-core"
|
||||
version = "0.3.0-beta.2"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
name = "rtfm-syntax"
|
||||
version = "0.4.0-beta.2"
|
||||
version = "0.4.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -323,7 +323,7 @@ dependencies = [
|
|||
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cortex-m-log 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"cortex-m-rtfm 0.5.0-beta.1 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0-beta.1)",
|
||||
"cortex-m-rtfm 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)",
|
||||
"heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"panic-halt 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -410,8 +410,8 @@ dependencies = [
|
|||
"checksum cortex-m-log 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "978caafe65d1023d38b00c76b83564788fc351d954a5005fb72cf992c0d61458"
|
||||
"checksum cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "17805910e3ecf029bdbfcc42b7384d9e3d9e5626153fa810002c1ef9839338ac"
|
||||
"checksum cortex-m-rt-macros 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d7ae692573e0acccb1579fef1abf5a5bf1d2f3f0149a22b16870ec9309aee25f"
|
||||
"checksum cortex-m-rtfm 0.5.0-beta.1 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0-beta.1)" = "<none>"
|
||||
"checksum cortex-m-rtfm-macros 0.5.0-beta.1 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0-beta.1)" = "<none>"
|
||||
"checksum cortex-m-rtfm 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)" = "<none>"
|
||||
"checksum cortex-m-rtfm-macros 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)" = "<none>"
|
||||
"checksum cortex-m-semihosting 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "113ef0ecffee2b62b58f9380f4469099b30e9f9cbee2804771b4203ba1762cfa"
|
||||
"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
|
||||
"checksum generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0ed1e761351b56f54eb9dcd0cfaca9fd0daecf93918e1cfc01c8a3d26ee7adcd"
|
||||
|
@ -430,8 +430,8 @@ dependencies = [
|
|||
"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
|
||||
"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
||||
"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
||||
"checksum rtfm-core 0.3.0-beta.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bbda0ee6a856c2412aa733bf4afcaaf09f9fe00dd121baf35fd24d152b71fa4"
|
||||
"checksum rtfm-syntax 0.4.0-beta.2 (registry+https://github.com/rust-lang/crates.io-index)" = "95f6784b8b1937cf106609e36f5784f2fa0df6fa1b11f24a8d3b59d6c7c3ddf4"
|
||||
"checksum rtfm-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9ec893edb2aa5b70320b94896ffea22a7ebb1cf3f942bb67cd5b60a865a63493"
|
||||
"checksum rtfm-syntax 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4455e23c34df3d66454e7e218a4d76a7f83321d04a806be614463341cec4116e"
|
||||
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
||||
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
||||
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
||||
|
|
|
@ -53,7 +53,7 @@ default-features = false
|
|||
|
||||
[dependencies.cortex-m-rtfm]
|
||||
git = "https://github.com/rtfm-rs/cortex-m-rtfm"
|
||||
rev = "v0.5.0-beta.1"
|
||||
rev = "v0.5.0"
|
||||
|
||||
[features]
|
||||
semihosting = ["panic-semihosting", "cortex-m-log/semihosting"]
|
||||
|
|
Loading…
Reference in New Issue