| Age | Commit message (Collapse) | Author |
|
337: Examples: Clarify extern section r=korken89 a=dbrgn
Some beginners are confused about the "extern" section, so I added an explanation comment to all examples.

Furthermore, using the UARTx interrupts when UART is actually being used in the same example may be confusing, so I changed them all to SSI0/QEI0.
Co-authored-by: Danilo Bargen <mail@dbrgn.ch>
|
|
338: Fixes an issue where one could double take the cortex_m Peripheral r=japaric a=korken89
Closes #321
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
|
|
Added qemu test
Added comment
Typo
Add cfg for homogeneous
More cfg
Now multicore working
Add .run file
|
|
Some beginners are confused about the "extern" section, so I added an
explanation comment to all examples. Furthermore, using the UARTx
interrupts when UART is actually being used in the same example may be
confusing, so I changed them all to SSI0/QEI0.
|
|
330: Combine publish, docs and build into one workflow, do not test on nightly r=korken89 a=AfoHT
Streamline the Github Actions workflow a bit, currently it does not play well with multiple workflows since dependencies needs to be within the same workflow.
This combines the previous docs and publish workflows into one larger build workflow.
If pushing to master branch, and all jobs succeed, then the deploy is also done.
No testing on nightly except for multi-core which requires nightly.
Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
|
|
|
|
|
|
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>
|