aboutsummaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
AgeCommit message (Collapse)Author
2023-03-01Add rtic-timer (timerqueue + monotonic) and rtic-monotonics (systick-monotonic)Emil Fresk
2023-03-01RTIC v2: Initial commitEmil Fresk
rtic-syntax is now part of RTIC repository
2023-02-26Release: v1.1.4Henrik Tjäder
2022-06-23Bump rtic-syntax to v1.0.2 and fix ChangelogHenrik Tjäder
2022-05-24Fix macros to Rust 2021Emil Fresk
2022-05-24Fix clash with defmtEmil Fresk
2022-05-10Fixed warning from Rust AnalyzerEmil Fresk
2022-05-09Prepare v1.1.2Emil Fresk
2022-04-13Release RTIC v1.1Henrik Tjäder
Bump versions, including using using latest rtic-syntax
2022-01-28RTIC macro expansion: Try to find target-dirHenrik Tjäder
2021-12-25Bump version to 1.0.0Henrik Tjäder
2021-11-09Update versions and changelogEmil Fresk
2021-11-08Bump version to 0.6.0-rc.3Henrik Tjäder
2021-09-28Prepare rc.2 releaseEmil Fresk
2021-09-27Preparing 0.6.0-rc.1Emil Fresk
2021-09-27Updated codegen for the updated syntax (default monotonic priority)Emil Fresk
2021-07-09Update changelog and versionEmil Fresk
2021-07-08Final versionsEmil Fresk
2021-07-08Cleanup from review (needs releases to compile)Emil Fresk
2021-07-07Use git depsEmil Fresk
2021-07-05Started workEmil Fresk
2021-05-27Prepare release alpha.4Emil Fresk
2021-05-23Minor cleanupEmil Fresk
2021-05-06Flattened the _ out of itEmil Fresk
2021-04-080.6.0-alpha.2 releaseEmil Fresk
2021-04-08Fixed UB in `spawn_at`Emil Fresk
2021-04-08Type aliases now work in the app moduleEmil Fresk
2021-03-04Preparing release 0.6.0-alpha.1Emil Fresk
2020-12-03Save, init generation fixedEmil Fresk
2020-11-14Bump version numbers to v0.6.0-alpha.0Henrik Tjäder
2020-10-15Changed branch for rtic-syntaxHenrik Tjäder
2020-10-15Updated examples and rtic-nameHenrik Tjäder
2020-10-15task_local and lock_free analysis (take 1)Per
2020-09-04Use rtic-rs masterHenrik Tjäder
2020-09-01Brutally yank out multicoreHenrik Tjäder
2020-08-27Preparing v0.5.5 releaseEmil Fresk
2020-08-26Preparing for 0.5.4 releaseEmil Fresk
2020-06-11Rename RTFM to RTICHenrik Tjäder
2019-11-14v0.5.0 final releaseJorge Aparicio
2019-10-15v0.5.0 beta releaseJorge Aparicio
2019-09-15turn git deps into crates.io depsJorge Aparicio
2019-09-15fix gh-pages buildJorge Aparicio
2019-08-20adapt to changes in rtfm-syntaxJorge Aparicio
2019-06-18add homogeneous multi-core supportJorge Aparicio
2019-06-13rtfm-syntax refactor + heterogeneous multi-core supportJorge Aparicio
2019-05-21bump heapless dependency to v0.5.0; remove "nightly" featureJorge Aparicio
with the upcoming version of heapless we are able to initialize all internal queues in const context removing the need for late initialization this commit also removes the "nightly" feature because all the optimization provided by it are now enabled by default
2019-05-01implement RFCs 147 and 155, etc.Jorge Aparicio
This commit: - Implements RFC 147: "all functions must be safe" - Implements RFC 155: "explicit Context parameter" - Implements the pending breaking change #141: reject assign syntax in `init` (which was used to initialize late resources) - Refactors code generation to make it more readable -- there are no more random identifiers in the output -- and align it with the book description of RTFM internals. - Makes the framework hard depend on `core::mem::MaybeUninit` and thus will require nightly until that API is stabilized. - Fixes a ceiling analysis bug where the priority of the system timer was not considered in the analysis. - Shrinks the size of all the internal queues by turning `AtomicUsize` indices into `AtomicU8`s. - Removes the integration with `owned_singleton`.
2019-04-21v0.4.3Jorge Aparicio
2019-02-27v0.4.2Jorge Aparicio
2019-02-19add "nightly" featureJorge Aparicio