aboutsummaryrefslogtreecommitdiff
path: root/.github
AgeCommit message (Collapse)Author
2024-04-16Bump peaceiris/actions-gh-pages from 3 to 4 (#915)dependabot[bot]
Bumps [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) from 3 to 4. - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-gh-pages/compare/v3...v4) --- updated-dependencies: - dependency-name: peaceiris/actions-gh-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-16Bump peaceiris/actions-mdbook from 1 to 2 (#916)dependabot[bot]
Bumps [peaceiris/actions-mdbook](https://github.com/peaceiris/actions-mdbook) from 1 to 2. - [Release notes](https://github.com/peaceiris/actions-mdbook/releases) - [Changelog](https://github.com/peaceiris/actions-mdbook/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-mdbook/compare/v1...v2) --- updated-dependencies: - dependency-name: peaceiris/actions-mdbook dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-10Monotonic rewrite (#874)Finomnis
* 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 <henrik@tjaders.com>
2024-04-10CI: Add ESP32-C3 QEMU support (#914)Henrik Tjäder
* CI: ESP32-C3: QEMU support * CI: ESP32C3: Script for preparing and running * CI: gitignore qemu.log * ESP32-C3: Example sw_and_hw output
2024-04-05CI: docs: Use xtask doc (#901)Henrik Tjäder
* CI: docs: Use xtask doc * CI: docs: Keep cargo-config Deleting it was relevant when it defined which target to build for etc.
2024-04-04Adjust esp32c3 codegen, bump pac to 0.21.0 (#906)onsdagens
* adjust esp32c3 codegen, bump pac to 0.21.0 * add esp32c3 example * adjust workflow flags * CI: Fix esp32c3 comment * esp32c3: Remove commented out git-dep * CI: Actually check the ESP32-C3 examples * Autoformat rtic/cargo.toml --------- Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2024-03-20RISC-V support over CLINT (#815)Román Cárdenas Rodríguez
* Rebase to master * using interrupt_mod * bug fixes * fix other backends * Add changelog * forgot about rtic-macros * backend-specific configuration * core peripherals optional over macro argument * pre_init_preprocessing binding * CI for RISC-V (WIP) * separation of concerns * add targets for RISC-V examples * remove qemu feature * prepare examples folder * move examples all together * move ci out of examples * minor changes * add cortex-m * new xtask: proof of concept * fix build.yml * feature typo * clean rtic examples * reproduce weird issue * remove unsafe code in user app * update dependencies * allow builds on riscv32imc * let's fix QEMU * Update .github/workflows/build.yml Co-authored-by: Henrik Tjäder <henrik@tjaders.com> * New build.rs * removing test features * adapt ui test to new version of clippy * add more examples to RISC-V backend * proper configuration of heapless for riscv32imc * opt-out examples for riscv32imc * point to new version of riscv-slic * adapt new macro bindings * adapt examples and CI to stable * fix cortex-m CI * Review --------- Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2024-02-27Make RTIC 2 work on stable by using `main`'s stack as an allocatorEmil Fresk
2024-01-31Bump dorny/paths-filter from 2 to 3 (#887)dependabot[bot]
Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 2 to 3. - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v2...v3) --- updated-dependencies: - dependency-name: dorny/paths-filter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-17CI: Add extra step building and uploading QEMU (#883)Henrik Tjäder
Uses GHA caching to make it quick for future builds
2024-01-10Bump actions/download-artifact from 3 to 4 (#867)dependabot[bot]
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-10Bump actions/upload-artifact from 3 to 4 (#868)dependabot[bot]
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-06Fix nrf monotonics (#852)Finomnis
* 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
2023-11-09CI: Create local repo awareness of branch refHenrik Tjäder
2023-11-08Add Monotonic for i.MX RT chip familyFinomnis
2023-09-05Bump actions/checkout from 3 to 4dependabot[bot]
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2023-07-01CI: Update changelog to match repoHenrik Tjäder
2023-06-30CI: Changelog also required for GHMQHenrik Tjäder
2023-06-30CI: Remove BorsHenrik Tjäder
2023-06-07CI: CleanupHenrik Tjäder
2023-06-05CI: Fix refspec for git pushHenrik Tjäder
2023-05-31ci: Fix versionmajor typoHenrik Tjäder
2023-05-31ci: Move env to job contextHenrik Tjäder
2023-05-31ci: Use job outputsHenrik Tjäder
2023-05-31CI: Make it clearer why a branch push was omittedHenrik Tjäder
2023-05-31CI: Cargo doc for both pre and post v2Henrik Tjäder
2023-05-28Do the book trickdatdenkikniet
2023-04-16Deny on warnings in xtasksdatdenkikniet
2023-04-16Check usage examples in CIdatdenkikniet
2023-04-15Add more default membersdatdenkikniet
2023-04-15Fix fmtdatdenkikniet
2023-03-15Merge #706bors[bot]
706: ci/tuneverboselevel r=korken89 a=AfoHT - xtask: Change default loglevel - xtask: Fix cargo fmt logmsg - ci: xtask default verbosity Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2023-03-15ci: xtask default verbosityHenrik Tjäder
2023-03-15ci: Run xtask format-check verboselyHenrik Tjäder
2023-03-04ci: mdbookold needs mergetostablebranchHenrik Tjäder
2023-03-04ci: Clearer merge branch job nameHenrik Tjäder
2023-03-04ci: mdbookold needs mdbookHenrik Tjäder
2023-03-04ci: oldbooks simplifyHenrik Tjäder
2023-03-04ci: Redirect file at the rootHenrik Tjäder
2023-03-04ci: local variables goes out of scopeHenrik Tjäder
2023-03-04ci: mkbookold: Make sure paths exists for the booksHenrik Tjäder
2023-03-04ci: Do not need a copy, move is fasterHenrik Tjäder
2023-03-04ci: Building older books can't use new featuresHenrik Tjäder
2023-03-04ci: Remove reference to rtic_channelHenrik Tjäder
2023-03-04ci: Use ci-successHenrik Tjäder
2023-03-04ci: Always parse version, cleanup depsHenrik Tjäder
2023-03-04ci: Split out the actual GHA publish jobHenrik Tjäder
2023-03-04ci: Overhaul docs and deployHenrik Tjäder
2023-03-02Fixes for repo rename to rticHenrik Tjäder
2023-03-02ci: Fix so channel is checkedHenrik Tjäder