diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-12-22 20:07:17 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-12-22 20:07:17 +0000 |
| commit | bb8ad9148a2fbbe56b3dc2293cd852a444a14203 (patch) | |
| tree | 129bff555ec2fee297a932243de03151ec38712c /embassy-time-queue-utils/src/lib.rs | |
| parent | 8b3cbf80a4d69bc61b300b0e8da9030d2a56f40b (diff) | |
| parent | ab8ca3f126447edb3a9eb06aa6fd6cd394219c17 (diff) | |
Merge pull request #3664 from bugadani/executor
Rename ETQD and prepare new embassy-time-*driver, embassy-executor, embassy-time
Diffstat (limited to 'embassy-time-queue-utils/src/lib.rs')
| -rw-r--r-- | embassy-time-queue-utils/src/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/embassy-time-queue-utils/src/lib.rs b/embassy-time-queue-utils/src/lib.rs new file mode 100644 index 000000000..a6f66913f --- /dev/null +++ b/embassy-time-queue-utils/src/lib.rs | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #![no_std] | ||
| 2 | #![doc = include_str!("../README.md")] | ||
| 3 | #![warn(missing_docs)] | ||
| 4 | |||
| 5 | #[cfg(feature = "_generic-queue")] | ||
| 6 | pub mod queue_generic; | ||
| 7 | #[cfg(not(feature = "_generic-queue"))] | ||
| 8 | pub mod queue_integrated; | ||
| 9 | |||
| 10 | #[cfg(feature = "_generic-queue")] | ||
| 11 | pub use queue_generic::Queue; | ||
| 12 | #[cfg(not(feature = "_generic-queue"))] | ||
| 13 | pub use queue_integrated::Queue; | ||
