<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rtic/rtic-monotonics/src/nrf, branch main</title>
<subtitle>Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers
</subtitle>
<id>https://git.mciantyre.dev/rtic/atom?h=main</id>
<link rel='self' href='https://git.mciantyre.dev/rtic/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/'/>
<updated>2025-06-15T12:52:16+00:00</updated>
<entry>
<title>Add details for all the other monotonic implementations.</title>
<updated>2025-06-15T12:52:16+00:00</updated>
<author>
<name>Jonathan 'theJPster' Pallant</name>
<email>github@thejpster.org.uk</email>
</author>
<published>2025-06-15T12:24:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=6a45bdefba2f8417410715c593f72a5fe95cfe2b'/>
<id>urn:sha1:6a45bdefba2f8417410715c593f72a5fe95cfe2b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Breaking change: portable-atomic (#922)</title>
<updated>2024-06-23T06:45:49+00:00</updated>
<author>
<name>Henrik Tjäder</name>
<email>henrik@tjaders.com</email>
</author>
<published>2024-06-23T06:45:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=918f9c3f13a75d6d01f283702353ebc31bf36c69'/>
<id>urn:sha1:918f9c3f13a75d6d01f283702353ebc31bf36c69</id>
<content type='text'>
* Atomics: Replace polyfill with portable-atomic

* Update Cargo.lock for examples

* RTIC: portable-atomic: Update changelog

* rtic-monotonics: portable-atomic: Update changelog

* lm3s6965: enable critical-section when testing

* xtask: Enable portable-atomic/critical-section

When dealing with rtic-monotonics

* rtic-monotonics: portable-atomics: Do not disable the ability to fallback

---------

Co-authored-by: Emil Fresk &lt;emil.fresk@gmail.com&gt;</content>
</entry>
<entry>
<title>Make rtic-monotonic macros create a public type</title>
<updated>2024-06-02T10:34:43+00:00</updated>
<author>
<name>Emil Fresk</name>
<email>emil.fresk@gmail.com</email>
</author>
<published>2024-06-02T08:15:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=689c4a068eddfe32956c1975cdc241b26d1751da'/>
<id>urn:sha1:689c4a068eddfe32956c1975cdc241b26d1751da</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add support for nrf52805 (#941)</title>
<updated>2024-05-27T11:26:09+00:00</updated>
<author>
<name>Foo</name>
<email>34515228+fooooooooooooooo@users.noreply.github.com</email>
</author>
<published>2024-05-27T11:26:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=6865b696161d32cd47e1ccbfac942c38385d6dfd'/>
<id>urn:sha1:6865b696161d32cd47e1ccbfac942c38385d6dfd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Monotonic rewrite (#874)</title>
<updated>2024-04-10T22:00:38+00:00</updated>
<author>
<name>Finomnis</name>
<email>Finomnis@users.noreply.github.com</email>
</author>
<published>2024-04-10T22:00:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=8c23e178f3838bcdd13662a2ffefd39ec144e869'/>
<id>urn:sha1:8c23e178f3838bcdd13662a2ffefd39ec144e869</id>
<content type='text'>
* Rework timer_queue and monotonic architecture

Goals:
 * make Monotonic purely internal
 * make Monotonic purely tick passed, no fugit involved
 * create a wrapper struct in the user's code via a macro that then
   converts the "now" from the tick based monotonic to a fugit based
   timestamp

We need to proxy the delay functions of the timer queue anyway,
so we could simply perform the conversion in those proxy functions.

* Update cargo.lock

* Update readme of rtic-time

* CI: ESP32: Redact esp_image: Too volatile

* Fixup: Changelog double entry rebase mistake

---------

Co-authored-by: Henrik Tjäder &lt;henrik@tjaders.com&gt;</content>
</entry>
<entry>
<title>Fix race condition in `calculate_now` (#860)</title>
<updated>2023-12-06T18:36:09+00:00</updated>
<author>
<name>Finomnis</name>
<email>Finomnis@users.noreply.github.com</email>
</author>
<published>2023-12-06T18:36:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=bbed94528528fbfe53ed7baf9cc38ca012785d13'/>
<id>urn:sha1:bbed94528528fbfe53ed7baf9cc38ca012785d13</id>
<content type='text'>
* Fix race condition in calculate_now

* Add changelog

* Update changelog

* Refine comment

* More comment fixes</content>
</entry>
<entry>
<title>Fix `nrf::rtc` errata workaround (#858)</title>
<updated>2023-12-06T18:36:06+00:00</updated>
<author>
<name>Finomnis</name>
<email>Finomnis@users.noreply.github.com</email>
</author>
<published>2023-12-06T18:36:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=f377471e440d8be0b2f9e9c8877ed015f62dc19e'/>
<id>urn:sha1:f377471e440d8be0b2f9e9c8877ed015f62dc19e</id>
<content type='text'>
* Deprecate `should_dequeue_check`

* Fix errata by delaying the wakeup point

* Add changelog

* Fix changelog typos</content>
</entry>
<entry>
<title>Fix nrf monotonics (#852)</title>
<updated>2023-12-06T07:49:38+00:00</updated>
<author>
<name>Finomnis</name>
<email>Finomnis@users.noreply.github.com</email>
</author>
<published>2023-12-06T07:49:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=89160b7cb9b3623e0a50f6745296d470fa7ea79d'/>
<id>urn:sha1:89160b7cb9b3623e0a50f6745296d470fa7ea79d</id>
<content type='text'>
* Fix nrf::timer

* Bootstrap nrf52840-blinky example

* More work on nrf blinky example

* Fix README

* Add asserts for correct timer functionality

* Add correctness check to other monotonics as well

* Update Changelog

* Fix potential timing issues

* Fix race condition in nrf::rtc

* Add changelog

* Add rtc blinky example

* Change rtc example to RC lf clock source

* Add changelog to rtic-time

* Add changelog

* Attempt to fix CI

* Update teensy4-blinky Cargo.lock</content>
</entry>
<entry>
<title>Fix mono delay (#843)</title>
<updated>2023-12-01T07:59:22+00:00</updated>
<author>
<name>Finomnis</name>
<email>Finomnis@users.noreply.github.com</email>
</author>
<published>2023-12-01T07:59:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=612a47ef4d09da3553145d77bf1750314bbb7b16'/>
<id>urn:sha1:612a47ef4d09da3553145d77bf1750314bbb7b16</id>
<content type='text'>
* rtic-time: Compenstate for timer uncertainty

* Update changelog and incorrect cargo.lock in an example

* Fix Monotonic impls

* Fix tests

* Fix other monotonics, again

* Update changelog

* Fix example

* Fix DelayUs and DelayMs impls

* Minor coding style fix in u64 conversions

* Fix all changelogs

* Fix changelog

* Fix blocking DelayUs

* Minor monotonic rework

* Add delay precision test

* Add more tests

* Add rust-version tags to Cargo.toml

* Fix imxrt, rp2040 and systick timer

* Fix more monotonics

* Fix systick monotonic

* Some reverts

* Fix imxrt

* Fix nrf

* Fix rp2040

* Fix stm32

* Fix systick

* Fix rtic-time tests

* Bump to e-h.rc2

* Apply e-h.rc2 fixes to rtic-time

* Apply fixes from arbiter

* Fix clippy warning

* Minor beautification

* Revert previous changes

* Fix variable name

* Add blocking tests, but disable them by default</content>
</entry>
<entry>
<title>Add documentation for imxrt; other doc fixes</title>
<updated>2023-11-10T20:49:12+00:00</updated>
<author>
<name>Finomnis</name>
<email>finomnis@gmail.com</email>
</author>
<published>2023-11-08T23:35:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.mciantyre.dev/rtic/commit/?id=af550483f50b3106a9be0990bd4b579e2da26e6e'/>
<id>urn:sha1:af550483f50b3106a9be0990bd4b579e2da26e6e</id>
<content type='text'>
</content>
</entry>
</feed>
