aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-03v0.4.0Jorge Aparicio
closes #32 closes #33
2018-08-27v0.3.4Jorge Aparicio
2018-08-27enable builds on masterJorge Aparicio
2018-08-27publish docs on gh pagesJorge Aparicio
2018-08-24v0.3.3Jorge Aparicio
2018-08-24Merge #85bors[bot]
85: fix master r=japaric a=japaric closes #80 Co-authored-by: Ferdia McKeogh <chocol4te@users.noreply.github.com> Co-authored-by: Jorge Aparicio <jorge@japaric.io>
2018-08-24install newer gccJorge Aparicio
2018-08-24more fixesJorge Aparicio
2018-06-07Fix mistakes in dependenciesFerdia McKeogh
2018-06-07Fix "Could not find `Op` in `proc_macro`"Ferdia McKeogh
2018-04-16v0.3.2Jorge Aparicio
2018-04-16Merge #72bors[bot]
72: switch to a crates.io release of rtfm-syntax r=japaric a=japaric Co-authored-by: Jorge Aparicio <jorge@japaric.io>
2018-04-16drop the cargo cacheJorge Aparicio
2018-04-16switch to a crates.io release of rtfm-syntaxJorge Aparicio
2018-04-16Merge #71bors[bot]
71: update parser r=japaric a=japaric closes #69 this doesn't change functionality per se but improves diagnostics in some cases. Some hard errors have becomes warnings, for example: when `resources` is empty, or when `idle.path` is set to the default `idle` path. Co-authored-by: Jorge Aparicio <jorge@japaric.io>
2018-04-16install rust-std componentJorge Aparicio
2018-04-16fix ci/install.shJorge Aparicio
2018-04-16don't cache the Xargo directoryJorge Aparicio
2018-04-16cargo fmtJorge Aparicio
2018-04-16update parserJorge Aparicio
closes #69 this doesn't change functionality per se but improves diagnostics in some cases. Some hard errors have becomes warnings, for example: when `resources` is empty, or when `idle.path` is set to the default `idle` path.
2018-04-16bors-ng integrationJorge Aparicio
2018-01-16v0.3.1Jorge Aparicio
2018-01-15Auto merge of #66 - japaric:path-and-version, r=japarichomunkulus
specify both the path and version of the cortex-m-rtfm-macros dependency this seems to be required for cargo publish to Just Work cc @jonas-schievink
2018-01-16specify both the path and version of the cortex-m-rtfm-macros dependencyJorge Aparicio
2018-01-15Auto merge of #65 - japaric:fix-doc-link, r=japarichomunkulus
fix documentation link None
2018-01-15fix documentation linkJorge Aparicio
2018-01-15Auto merge of #64 - japaric:v3, r=japarichomunkulus
v0.3.0 None
2018-01-15v0.3.0Jorge Aparicio
2018-01-11Auto merge of #63 - japaric:cortex-m-up, r=japarichomunkulus
adapt to changes in the cortex-m crate None
2018-01-11adapt to changes in the cortex-m crateJorge Aparicio
2018-01-11Auto merge of #61 - japaric:cm7-r0p1, r=japarichomunkulus
add a Cargo feature, cm7-r0p1, to fix a Cortex-M7 BASEPRI erratum closes #53 alternative solution to #54 depends on japaric/cortex-m#72
2018-01-11fix the compiletest_rs versionJorge Aparicio
2018-01-11switch to a stable release of compiletest_rsJorge Aparicio
2018-01-11use master branch of cortex-mJorge Aparicio
2017-12-23add a Cargo feature, cm7-r0p1, to fix a Cortex-M7 BASEPRI erratumJorge Aparicio
2017-12-23Auto merge of #58 - japaric:init-resources, r=japarichomunkulus
safe `&'static mut` references via init.resources see RFC #59 for details
2017-12-23switch to a compiletest version that works with the latest nightlyJorge Aparicio
2017-12-23switch to master branchesJorge Aparicio
2017-12-17add missing commaJorge Aparicio
2017-12-09safe `&'static mut` references via init.resourcesJorge Aparicio
2017-12-09implement the Resource trait for owned resourcesJorge Aparicio
this unbreaks the "generics" example
2017-12-09drop the Static wrapperJorge Aparicio
2017-12-09Auto merge of #57 - japaric:not-sync, r=japarichomunkulus
make resource proxies not Sync None
2017-12-09make resource proxies not SyncJorge Aparicio
2017-12-09Auto merge of #56 - japaric:not-send, r=japarichomunkulus
make resource proxies !Send None
2017-12-09also cache the Xargo directoryJorge Aparicio
2017-12-09deny warnings and unsafe code in tests and examplesJorge Aparicio
2017-12-09make resource proxies !SendJorge Aparicio
2017-12-09Auto merge of #55 - japaric:late-resources, r=japarichomunkulus
[RFC] rename LateResourceValues to LateResources After writing `LateResourceValues` several times I now think it's too long to type. I'd like that struct to be renamed to `LateResources`. I don't think there would be a loss in readability with the rename because you can think of "late resources" as resources that "don't exist" until `init` ends instead of as resources that are not initialized after `init` ends -- the second meaning maps better to `LateResourceValues`. This would be a breaking-change but we are moving to v0.3.0 due to #50 in any case. cc jonas-schievink
2017-12-09fix the "generics" exampleJorge Aparicio