aboutsummaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2020-12-13Now handling SysTick as wellEmil Fresk
2020-12-12CleanupEmil Fresk
2020-12-10More workEmil Fresk
2020-12-08TQ handlers being generatedEmil Fresk
2020-12-03Save, init generation fixedEmil Fresk
2020-11-15Move entry-point main into a separate moduleHenrik Tjäder
Prevents conflict with user provided tasks named main
2020-11-14Added multilock to CIEmil Fresk
2020-11-14Multilock supportEmil Fresk
2020-11-12resourcesPer Lindgren
2020-10-29extern taskPer Lindgren
2020-10-23Merge #400bors[bot]
400: codegen and examples r=AfoHT a=perlindgren just a test Co-authored-by: Per Lindgren <per.lindgren@ltu.se>
2020-10-23move dispatchers to app argumentPer Lindgren
2020-10-23Now all locks are symmetricEmil Fresk
Test fixes Fix test Fix comment
2020-10-22Add the cfgs on a task to the module for that taskHenrik Tjäder
2020-10-22Fix UI testsEmil Fresk
Fix
2020-10-21Namespace cleanupEmil Fresk
2020-10-21Updated examplesEmil Fresk
More work
2020-10-15Merge branch 'master' into spawn_experimentEmil Fresk
2020-10-15Fix comments in examplesEmil Fresk
2020-10-15Merge #371bors[bot]
371: task_local and lock_free r=korken89 a=AfoHT Getting this going to test with GHA For further discussion see https://github.com/rtic-rs/rfcs/issues/30 Co-authored-by: Per <Per Lindgren> Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2020-10-15Updated examples and rtic-nameHenrik Tjäder
2020-10-15Add example with features on all resources combined with lock_free and ↵Henrik Tjäder
task_local
2020-10-15task_local and lock_free analysis (take 1)Per
2020-10-15Merge branch 'master' into spawn_experimentEmil Fresk
2020-10-11Fixing examples and tests, modules now import user imports correctlyEmil Fresk
Fmt Correct syntax crate UI test fix Fix build script Cleanup More cleanup
2020-10-11Now with spawn/schedule from anywhereEmil Fresk
2020-10-08Merge branch 'master' into spawn_experimentEmil Fresk
2020-10-07Now core contains the same `Peripherals` type based on monotonicEmil Fresk
2020-10-05spawn examples updatedPer Lindgren
2020-10-05spawn POC works, likely unsoundPer Lindgren
2020-10-05Merge branch 'master' into always_late_resourcesEmil Fresk
2020-10-05Merge #368bors[bot]
368: Mod over const r=korken89 a=AfoHT Related [RFC](https://github.com/rtic-rs/rfcs/pull/34) Dependent on [rtic-syntax-PR30](https://github.com/rtic-rs/rtic-syntax/pull/30) ~~Currently using my own dev-branch~~ Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
2020-10-03Updated documentation to include the critical section token in initEmil Fresk
2020-10-01Now late resources are always usedEmil Fresk
2020-09-29Annotate the resource structHenrik Tjäder
2020-09-29Pool example need to import things into the modHenrik Tjäder
2020-09-29Workaround lint for nowHenrik Tjäder
2020-09-29Keep user code as-is within the module, add exampleHenrik Tjäder
2020-09-29All examples use #[resources] attributeHenrik Tjäder
2020-09-25Name collision with RTIC-mainHenrik Tjäder
With modules the scoping is different and task names collide with main generated by RTIC
2020-09-25Update new example to use mod {}Henrik Tjäder
2020-09-25Examples need to import the resourcesHenrik Tjäder
2020-09-25Modules using lower-case in examplesHenrik Tjäder
2020-09-25Examples using mod instead of constHenrik Tjäder
2020-09-25Fixed example and v7 flagEmil Fresk
2020-09-24Regression in master on double scheduleEmil Fresk
2020-09-14Fixed so examples do not crash in release modeEmil Fresk
2020-06-30Merge #337bors[bot]
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. ![image](https://user-images.githubusercontent.com/105168/85903840-9ad2a780-b807-11ea-943d-3f37b814c23f.png) 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>
2020-06-30Fixes an issue where one could double take the cortex_m PeripheralEmil Fresk
Added qemu test Added comment Typo Add cfg for homogeneous More cfg Now multicore working Add .run file
2020-06-26Examples: Clarify extern sectionDanilo Bargen
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.