Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
Exclusive still not resolved
|
|
|
|
|
|
Preparing for v0.5.3
|
|
|
|
|
|
|
|
328: Link to GitHub from book r=korken89 a=nickray
Co-authored-by: Nicolas Stalder <n@stalder.io>
|
|
|
|
327: Small renaming fixes r=korken89 a=AfoHT
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
|
|
|
|
|
|
|
|
|
|
Rename RTFM to RTIC
|
|
|
|
Prepare for v0.5.2 release
|
|
|
|
|
|
Moved bors to GHA
|
|
Update example to use better initial value
|
|
314: do not optimize build deps r=korken89 a=japaric
this may make CI faster
Co-authored-by: Jorge Aparicio <jorge@japaric.io>
|
|
315: allow handlers to be named 'main' r=korken89 a=japaric
`#[init]`, `#[idle]` and `#[task]` handlers can now be named `main`
fixes #311
Co-authored-by: Jorge Aparicio <jorge.aparicio@ferrous-systems.com>
|
|
Use cargo feature instead of conditional compilation hacks
|
|
320: No build opt on msrv r=korken89 a=AfoHT
#314 is failing the tests since 1.36.0 is not capable of 'build-override' profiles.
This extends current CI setup for both Travis and GHA to remove any `build-override` before running in case toolchain is 1.36.0.
322: Update resources.md r=korken89 a=lonesometraveler
This fixes some typos.
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
Co-authored-by: KENTARO OKUDA <lonesometraveler@mac.com>
|
|
|
|
|
|
|
|
|
|
|
|
310: Update app.md r=korken89 a=lonesometraveler
- Fix typos
- Improve readability
Co-authored-by: KENTARO OKUDA <lonesometraveler@mac.com>
|
|
318: Run cargo fmt r=korken89 a=AfoHT
Fix style issues reported by cargo fmt
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
|
|
316: Testing GHA v0.1 r=korken89 a=AfoHT
Implementing previous Travis CI setup on Github Actions
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
|
|
|
|
317: Use statically compiled mdbook r=perlindgren a=AfoHT
Instead of building mdbook, get a precompiled version
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
|
|
|
|
|
|
Implementing previous Travis CI setup on Github Actions
|
|
`#[init]`, `#[idle]` and `#[task]` handlers can now be named `main`
fixes #311
|
|
|
|
|
|
|
|
|
|
The example above this in the documentation states
```
// semantically, the monotonic timer is frozen at time "zero" during `init`
// NOTE do *not* call `Instant::now` in this context; it will return a nonsense value
let now = cx.start; // the start time of the system
```
It results in weird scheduling issues, but still eventually works. `cx.start` is much more reliable.
Relates to https://github.com/rtfm-rs/cortex-m-rtfm/issues/196
|
|
|
|
306: Retain cfg-attributes on resources r=korken89 a=AfoHT
When rust 1.43 lands as stable this will resolve #301 and allow for the kind of conditional compilation exemplified in the issue.
Tested on beta and nightly.
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
|