rtic/stable/api/rtic_monotonics/trait.TimerQueueBackend.html
2024-10-24 05:57:30 +00:00

33 lines
No EOL
28 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="A backend definition for a monotonic clock/counter."><title>TimerQueueBackend in rtic_monotonics - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../static.files/rustdoc-492a78a4a87dcc01.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="rtic_monotonics" data-themes="" data-resource-suffix="" data-rustdoc-version="1.82.0 (f6e511eec 2024-10-15)" data-channel="1.82.0" data-search-js="search-a99f1315e7cc5121.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../static.files/storage-118b08c4c78b968e.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-921df33f47b8780c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-3b12f09e550e0385.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../rtic_monotonics/index.html">rtic_<wbr>monotonics</a><span class="version">2.0.3</span></h2></div><h2 class="location"><a href="#">Timer<wbr>Queue<wbr>Backend</a></h2><div class="sidebar-elems"><section><h3><a href="#required-associated-types">Required Associated Types</a></h3><ul class="block"><li><a href="#associatedtype.Ticks">Ticks</a></li></ul><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.clear_compare_flag">clear_compare_flag</a></li><li><a href="#tymethod.now">now</a></li><li><a href="#tymethod.pend_interrupt">pend_interrupt</a></li><li><a href="#tymethod.set_compare">set_compare</a></li><li><a href="#tymethod.timer_queue">timer_queue</a></li></ul><h3><a href="#provided-methods">Provided Methods</a></h3><ul class="block"><li><a href="#method.disable_timer">disable_timer</a></li><li><a href="#method.enable_timer">enable_timer</a></li><li><a href="#method.on_interrupt">on_interrupt</a></li></ul><h3><a href="#object-safety">Object Safety</a></h3><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In crate rtic_<wbr>monotonics</a></h2></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><h1>Trait <a href="index.html">rtic_monotonics</a>::<wbr><a class="trait" href="#">TimerQueueBackend</a><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><span class="out-of-band"><a class="src" href="../src/rtic_time/timer_queue/backend.rs.html#4">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><pre class="rust item-decl"><code>pub trait TimerQueueBackend: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + 'static {
type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a>: <a class="trait" href="../rtic_time/timer_queue/tick_type/trait.TimerQueueTicks.html" title="trait rtic_time::timer_queue::tick_type::TimerQueueTicks">TimerQueueTicks</a>;
// Required methods
fn <a href="#tymethod.now" class="fn">now</a>() -&gt; Self::<a class="associatedtype" href="trait.TimerQueueBackend.html#associatedtype.Ticks" title="type rtic_monotonics::TimerQueueBackend::Ticks">Ticks</a>;
<span class="item-spacer"></span> fn <a href="#tymethod.set_compare" class="fn">set_compare</a>(instant: Self::<a class="associatedtype" href="trait.TimerQueueBackend.html#associatedtype.Ticks" title="type rtic_monotonics::TimerQueueBackend::Ticks">Ticks</a>);
<span class="item-spacer"></span> fn <a href="#tymethod.clear_compare_flag" class="fn">clear_compare_flag</a>();
<span class="item-spacer"></span> fn <a href="#tymethod.pend_interrupt" class="fn">pend_interrupt</a>();
<span class="item-spacer"></span> fn <a href="#tymethod.timer_queue" class="fn">timer_queue</a>() -&gt; &amp;'static <a class="struct" href="../rtic_time/timer_queue/struct.TimerQueue.html" title="struct rtic_time::timer_queue::TimerQueue">TimerQueue</a>&lt;Self&gt;;
// Provided methods
fn <a href="#method.on_interrupt" class="fn">on_interrupt</a>() { ... }
<span class="item-spacer"></span> fn <a href="#method.enable_timer" class="fn">enable_timer</a>() { ... }
<span class="item-spacer"></span> fn <a href="#method.disable_timer" class="fn">disable_timer</a>() { ... }
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A backend definition for a monotonic clock/counter.</p>
</div></details><h2 id="required-associated-types" class="section-header">Required Associated Types<a href="#required-associated-types" class="anchor">§</a></h2><div class="methods"><details class="toggle" open><summary><section id="associatedtype.Ticks" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#6">source</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a>: <a class="trait" href="../rtic_time/timer_queue/tick_type/trait.TimerQueueTicks.html" title="trait rtic_time::timer_queue::tick_type::TimerQueueTicks">TimerQueueTicks</a></h4></section></summary><div class="docblock"><p>The type for ticks.</p>
</div></details></div><h2 id="required-methods" class="section-header">Required Methods<a href="#required-methods" class="anchor">§</a></h2><div class="methods"><details class="toggle method-toggle" open><summary><section id="tymethod.now" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#9">source</a><h4 class="code-header">fn <a href="#tymethod.now" class="fn">now</a>() -&gt; Self::<a class="associatedtype" href="trait.TimerQueueBackend.html#associatedtype.Ticks" title="type rtic_monotonics::TimerQueueBackend::Ticks">Ticks</a></h4></section></summary><div class="docblock"><p>Get the current time.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="tymethod.set_compare" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#15">source</a><h4 class="code-header">fn <a href="#tymethod.set_compare" class="fn">set_compare</a>(instant: Self::<a class="associatedtype" href="trait.TimerQueueBackend.html#associatedtype.Ticks" title="type rtic_monotonics::TimerQueueBackend::Ticks">Ticks</a>)</h4></section></summary><div class="docblock"><p>Set the compare value of the timer interrupt.</p>
<p><strong>Note:</strong> This method does not need to handle race conditions of the monotonic, the timer
queue in RTIC checks this.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="tymethod.clear_compare_flag" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#18">source</a><h4 class="code-header">fn <a href="#tymethod.clear_compare_flag" class="fn">clear_compare_flag</a>()</h4></section></summary><div class="docblock"><p>Clear the compare interrupt flag.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="tymethod.pend_interrupt" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#21">source</a><h4 class="code-header">fn <a href="#tymethod.pend_interrupt" class="fn">pend_interrupt</a>()</h4></section></summary><div class="docblock"><p>Pend the timers interrupt.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="tymethod.timer_queue" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#43">source</a><h4 class="code-header">fn <a href="#tymethod.timer_queue" class="fn">timer_queue</a>() -&gt; &amp;'static <a class="struct" href="../rtic_time/timer_queue/struct.TimerQueue.html" title="struct rtic_time::timer_queue::TimerQueue">TimerQueue</a>&lt;Self&gt;</h4></section></summary><div class="docblock"><p>Returns a reference to the underlying timer queue.</p>
</div></details></div><h2 id="provided-methods" class="section-header">Provided Methods<a href="#provided-methods" class="anchor">§</a></h2><div class="methods"><details class="toggle method-toggle" open><summary><section id="method.on_interrupt" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#24">source</a><h4 class="code-header">fn <a href="#method.on_interrupt" class="fn">on_interrupt</a>()</h4></section></summary><div class="docblock"><p>Optional. Runs on interrupt before any timer queue handling.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.enable_timer" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#32">source</a><h4 class="code-header">fn <a href="#method.enable_timer" class="fn">enable_timer</a>()</h4></section></summary><div class="docblock"><p>Optional. This is used to save power, this is called when the timer queue is not empty.</p>
<p>Enabling and disabling the monotonic needs to propagate to <code>now</code> so that an instant
based of <code>now()</code> is still valid.</p>
<p>NOTE: This may be called more than once.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.disable_timer" class="method"><a class="src rightside" href="../src/rtic_time/timer_queue/backend.rs.html#40">source</a><h4 class="code-header">fn <a href="#method.disable_timer" class="fn">disable_timer</a>()</h4></section></summary><div class="docblock"><p>Optional. This is used to save power, this is called when the timer queue is empty.</p>
<p>Enabling and disabling the monotonic needs to propagate to <code>now</code> so that an instant
based of <code>now()</code> is still valid.</p>
<p>NOTE: This may be called more than once.</p>
</div></details></div><h2 id="object-safety" class="section-header">Object Safety<a href="#object-safety" class="anchor">§</a></h2><div class="object-safety-info">This trait is <b>not</b> <a href="https://doc.rust-lang.org/1.82.0/reference/items/traits.html#object-safety">object safe</a>.</div><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Gpt1Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/imxrt.rs.html#264">source</a><a href="#impl-TimerQueueBackend-for-Gpt1Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="imxrt/struct.Gpt1Backend.html" title="struct rtic_monotonics::imxrt::Gpt1Backend">Gpt1Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-1" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/imxrt.rs.html#264">source</a><a href="#associatedtype.Ticks-1" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Gpt2Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/imxrt.rs.html#267">source</a><a href="#impl-TimerQueueBackend-for-Gpt2Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="imxrt/struct.Gpt2Backend.html" title="struct rtic_monotonics::imxrt::Gpt2Backend">Gpt2Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-2" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/imxrt.rs.html#267">source</a><a href="#associatedtype.Ticks-2" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Rtc0Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/rtc.rs.html#311">source</a><a href="#impl-TimerQueueBackend-for-Rtc0Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/rtc/struct.Rtc0Backend.html" title="struct rtic_monotonics::nrf::rtc::Rtc0Backend">Rtc0Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-3" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/rtc.rs.html#311">source</a><a href="#associatedtype.Ticks-3" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Rtc1Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/rtc.rs.html#312">source</a><a href="#impl-TimerQueueBackend-for-Rtc1Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/rtc/struct.Rtc1Backend.html" title="struct rtic_monotonics::nrf::rtc::Rtc1Backend">Rtc1Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-4" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/rtc.rs.html#312">source</a><a href="#associatedtype.Ticks-4" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Rtc2Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/rtc.rs.html#314">source</a><a href="#impl-TimerQueueBackend-for-Rtc2Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/rtc/struct.Rtc2Backend.html" title="struct rtic_monotonics::nrf::rtc::Rtc2Backend">Rtc2Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-5" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/rtc.rs.html#314">source</a><a href="#associatedtype.Ticks-5" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Timer0Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#328">source</a><a href="#impl-TimerQueueBackend-for-Timer0Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/timer/struct.Timer0Backend.html" title="struct rtic_monotonics::nrf::timer::Timer0Backend">Timer0Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-6" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#328">source</a><a href="#associatedtype.Ticks-6" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Timer1Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#329">source</a><a href="#impl-TimerQueueBackend-for-Timer1Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/timer/struct.Timer1Backend.html" title="struct rtic_monotonics::nrf::timer::Timer1Backend">Timer1Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-7" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#329">source</a><a href="#associatedtype.Ticks-7" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Timer2Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#330">source</a><a href="#impl-TimerQueueBackend-for-Timer2Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/timer/struct.Timer2Backend.html" title="struct rtic_monotonics::nrf::timer::Timer2Backend">Timer2Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-8" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#330">source</a><a href="#associatedtype.Ticks-8" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Timer3Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#332">source</a><a href="#impl-TimerQueueBackend-for-Timer3Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/timer/struct.Timer3Backend.html" title="struct rtic_monotonics::nrf::timer::Timer3Backend">Timer3Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-9" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#332">source</a><a href="#associatedtype.Ticks-9" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Timer4Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#334">source</a><a href="#impl-TimerQueueBackend-for-Timer4Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="nrf/timer/struct.Timer4Backend.html" title="struct rtic_monotonics::nrf::timer::Timer4Backend">Timer4Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-10" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/nrf/timer.rs.html#334">source</a><a href="#associatedtype.Ticks-10" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-TimerBackend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/rp2040.rs.html#73-120">source</a><a href="#impl-TimerQueueBackend-for-TimerBackend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="rp2040/struct.TimerBackend.html" title="struct rtic_monotonics::rp2040::TimerBackend">TimerBackend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-11" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/rp2040.rs.html#74">source</a><a href="#associatedtype.Ticks-11" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Tim2Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#352">source</a><a href="#impl-TimerQueueBackend-for-Tim2Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="stm32/struct.Tim2Backend.html" title="struct rtic_monotonics::stm32::Tim2Backend">Tim2Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-12" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#352">source</a><a href="#associatedtype.Ticks-12" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Tim3Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#355">source</a><a href="#impl-TimerQueueBackend-for-Tim3Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="stm32/struct.Tim3Backend.html" title="struct rtic_monotonics::stm32::Tim3Backend">Tim3Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-13" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#355">source</a><a href="#associatedtype.Ticks-13" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Tim4Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#358">source</a><a href="#impl-TimerQueueBackend-for-Tim4Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="stm32/struct.Tim4Backend.html" title="struct rtic_monotonics::stm32::Tim4Backend">Tim4Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-14" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#358">source</a><a href="#associatedtype.Ticks-14" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Tim5Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#361">source</a><a href="#impl-TimerQueueBackend-for-Tim5Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="stm32/struct.Tim5Backend.html" title="struct rtic_monotonics::stm32::Tim5Backend">Tim5Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-15" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#361">source</a><a href="#associatedtype.Ticks-15" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-Tim15Backend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#364">source</a><a href="#impl-TimerQueueBackend-for-Tim15Backend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="stm32/struct.Tim15Backend.html" title="struct rtic_monotonics::stm32::Tim15Backend">Tim15Backend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-16" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/stm32.rs.html#364">source</a><a href="#associatedtype.Ticks-16" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TimerQueueBackend-for-SystickBackend" class="impl"><a class="src rightside" href="../src/rtic_monotonics/systick.rs.html#95-133">source</a><a href="#impl-TimerQueueBackend-for-SystickBackend" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.TimerQueueBackend.html" title="trait rtic_monotonics::TimerQueueBackend">TimerQueueBackend</a> for <a class="struct" href="systick/struct.SystickBackend.html" title="struct rtic_monotonics::systick::SystickBackend">SystickBackend</a></h3></section></summary><div class="impl-items"><section id="associatedtype.Ticks-17" class="associatedtype trait-impl"><a class="src rightside" href="../src/rtic_monotonics/systick.rs.html#100">source</a><a href="#associatedtype.Ticks-17" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Ticks" class="associatedtype">Ticks</a> = <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u32.html">u32</a></h4></section></div></details></div><script src="../trait.impl/rtic_time/timer_queue/backend/trait.TimerQueueBackend.js" async></script></section></div></main></body></html>