rtic-rs / rtic

Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers

Home Page:https://rtic.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rtic_monotonics 2.0 not in crates.io???

tristanguerragomez opened this issue · comments

Hi,

Please forgive me if I'm off, just started transitioning into the rtic world.

All the examples point to rtic_monotonics 2.0, but that's not available on crates.io? Tried with 1.5 but there seems to have been pretty major breaking changes on that end.

Am I missing something?

Rene

Hi!

You are correct, currently rtic-monotonics 2.0 is not yet released to crates.io
When building rtic-monotonics and friends from git master branch you can use the latest syntax, even before it is released

Alternatively, look at the examples prior to #874 : https://github.com/rtic-rs/rtic/tree/e4cc5fd17b8a2df332af0ee25c8bd7092e66afb0 and use the current non-latest-bleeding edge released RTIC :)

Thank you for pointing that out @AfoHT , I'm starting to wrap my head around the current state of affairs...

I'm guessing rtic-monotonics 2.0 hasn't yet been release due to stability/documentation concerns (trust me, I get it, ensuring stability in the embedded world is brutally difficult, and who likes writing documentation?). What I'm wondering is why not release Alpha/Beta versions? Like Linus said, "given enough eyeballs, all bugs are shallow". My thinking is that with Alpha/Beta versions 1) more "eyeballs" will be on the latest code base which is really where you want the Dev efforts to be focused on and 2) crate consumers are made aware of stability concerns.

Seems to me like a low effort effort way to get the code to be easily tested by the community (doing a PoC building rtic-monotonics and friends from git master branch is fine, but doing so with multiple Devs and CI gets very ugly very quickly... I'm sure you understand).

Food for thought

Just a +1 that I found this very confusing. Also, it seems like there exists

rtic-monotonics on crates.io: version 1.5.0.
rtic-monotonic on crates.io: version 1.0.0.
rtic-monotonics inside the rtic crate: version 2.0.0.

Furthermore, I was confused by the fact that there's
cortex-m-rtic on crates.io: This is version 1.1.4, and contains the message "IMPORTANT: This crate is published as cortex-m-rtic on crates.io but the name of the library is rtic" and has no mention of being deprecated
rtic on crates.io: This is the one we're supposed to be using, I take it?

The examples I found on the web are also mixed in terms of what version of things they point to. A Google search for "Rust RTIC examples" leads to https://github.com/rtic-rs/rtic-examples, which is outdated (though there is a note to that effect). And as a minor point, I also noticed that RTIC's documentation refers to defmt-app-template, but that has one clone a repo called "app-template" -- though that appears to be just a redirect to defmt-app-template.

Overall, it was pretty confusing trying to get set up in the RTIC ecosystem. But I think I'm almost there :) (And thanks for what appears to be a very cool project.)

EDIT: Actually, I'm realizing that much of my confusion was due to looking at RTIC examples in teensy4-bsp and imxrt-hal, which both refer to older versions of RTIC; the examples in RTIC itself are more consistent.

FYI: The stm32f411_rtc_interrupt example is also off, it references a yanked version of rtic that has an rtic-monotonics feature which I'm not seeing in the current code base.

rtic-monotonic seems to be deprecated.

I'm sorry for the confusion, we had a full rtic-monotonics rewrite just a couple of weeks ago. (as @AfoHT pointed out, #874)

The rewrite is now merged and in the progress of being tested further before being released. It will probably happen soon.


FYI: The stm32f411_rtc_interrupt example is also off, it references a yanked version of rtic that has an rtic-monotonics feature which I'm not seeing in the current code base.

Might be worth opening a separate issue for this.