From 3d97c9e431d7fcb20b1b30bc15c34ccffee03c79 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Sat, 22 Apr 2023 21:27:26 +0200 Subject: Move deprecated migration guides to deprecated folder --- book/en/src/migration/migration_v2/monotonics.md | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 book/en/src/migration/migration_v2/monotonics.md (limited to 'book/en/src/migration/migration_v2/monotonics.md') diff --git a/book/en/src/migration/migration_v2/monotonics.md b/book/en/src/migration/migration_v2/monotonics.md deleted file mode 100644 index a8b0dba..0000000 --- a/book/en/src/migration/migration_v2/monotonics.md +++ /dev/null @@ -1,13 +0,0 @@ -# Migrating to `rtic-monotonics` - -In previous versions of `rtic`, monotonics were an integral, tightly coupled part of the `#[rtic::app]`. In this new version, [`rtic-monotonics`] provides them in a more decoupled way. - -The `#[monotonic]` attribute is no longer used. Instead, you use a `create_X_token` from [`rtic-monotonics`]. An invocation of this macro returns an interrupt registration token, which can be used to construct an instance of your desired monotonic. - -`spawn_after` and `spawn_at` are no longer available. Instead, you use the async functions `delay` and `delay_until` provided by ipmlementations of the `rtic_time::Monotonic` trait, available through [`rtic-monotonics`]. - -Check out the [code example](./complete_example.md) for an overview of the required changes. - -For more information on current monotonic implementations, see [the `rtic-monotonics` documentation](https://docs.rs/rtic-monotonics), and [the examples](https://github.com/rtic-rs/rtic/tree/master/examples). - -[`rtic-monotonics`]: ghttps://github.com/rtic/rtic-monotonics \ No newline at end of file -- cgit v1.2.3