Commit Graph

213 Commits

Author SHA1 Message Date
ba6e0a4058 util: add wake_on_interrupt.
This is a lighter version of InterruptFuture.
2021-03-29 00:58:57 +02:00
9c4087ac5c Introduce PeripheralBorrow trait 2021-03-29 00:58:57 +02:00
6ee9e012fc add embassy::main and implement for stm32f4 2021-03-27 17:27:39 -05:00
ea650b684c its /// not //. 2021-03-24 13:31:08 -07:00
18d3c803de Add missing newlines 2021-03-24 13:21:32 -07:00
40617fea04 Document embassy::util::signal & embassy::util 2021-03-24 13:19:36 -07:00
62009150bd Document embassy::util::InterruptFuture 2021-03-24 13:19:36 -07:00
a9e099c215 Document embassy::util::Forever 2021-03-24 13:19:36 -07:00
da59112e86 Document the DropBomb 2021-03-24 13:19:35 -07:00
8fbe83ac26 Added remainder of the docs for embassy::time's public interface. 2021-03-21 18:30:03 -07:00
42be860446 Correct descriptions of Duration 2021-03-21 17:11:30 -07:00
7988b78107 remove now redundant non-doc comment 2021-03-21 17:05:36 -07:00
10f14747c3 Fix module-level docstring 2021-03-21 17:05:22 -07:00
e363607d70 Added doc to the embassy::time::Duration struct 2021-03-21 17:01:52 -07:00
f8d63279ef Re-add erroneously removed newlines 2021-03-21 17:01:13 -07:00
dcdd768e03 Add Struct/impl documentation for embassy::time::Instant 2021-03-21 16:45:53 -07:00
d453b9dd95 Add Struct/impl documentation for embassy::time::Duration 2021-03-21 16:45:48 -07:00
cf1323fb67 Add module-level documentation for embassy::time 2021-03-21 16:45:24 -07:00
d3673886b3 Run cargo fmt 2021-03-18 20:02:42 +01:00
f248bb17ad Allow unused stuff in fmt.rs 2021-03-18 01:42:28 +01:00
8c2da193b8 Add spawn/spawn_pool APIs to Task 2021-03-18 00:38:27 +01:00
5c2bf3981e Move Task into raw 2021-03-18 00:20:11 +01:00
278ce02824 Rename IrqExecutor to InterruptExecutor 2021-03-17 22:52:57 +01:00
a9076636ac Do not export fmt macros.
This was introduced by accident by me struggling with the weird intra-crate macro importing system...
2021-03-17 22:50:27 +01:00
bb68f5d0e8 Add optimized single-word WakerRegistration, add AtomicWakerRegistration. 2021-03-17 02:53:41 +01:00
ab01e0be3b Do not reexport atomic-polyfill 2021-03-17 02:52:21 +01:00
6ed1a87138 Update features for latest nightly. 2021-03-17 02:48:16 +01:00
bd3deb785a Update deps 2021-03-04 22:41:54 +01:00
18f6b8ad68 thumbv6m support with emulated atomics 2021-03-04 21:56:31 +01:00
88946840d1 Make Delay public 2021-03-02 21:16:43 +01:00
d4f2c6cf00 Remove cargo namespaced-features 2021-03-02 21:15:12 +01:00
7ef81c75e7 traits: add delay trait
delay allows downstream libraries
to use async delay without depending
on a specific delay implementation
2021-03-02 08:45:22 -06:00
9626aee7db Move traits to separate crate. 2021-03-02 00:32:23 +01:00
084b64053a Merge pull request #61 from xoviat/us-delay
add us delays
2021-03-01 19:06:57 +01:00
a7549108a8 rename methods 2021-03-01 11:59:40 -06:00
d029f651fa add us delays 2021-03-01 11:47:55 -06:00
45355f184a move most interrupt methods to InterruptExt extension trait. Fixes #35 2021-03-01 00:44:38 +01:00
7433dc1039 Port qspi to PeripheralMutex 2021-02-28 22:05:37 +01:00
da91779117 interrupt: Split set_handler context.
Since introducing the ctx pointer, the handler is now two words, so setting it can
race with the interrupt firing. On race it's possible for the new handler to be
alled with the old ctx pointer or viceversa.

Rather than documenting this, it's better to split the function in two to make it
obvious to the user that it's not atomic. The user can use a critical section, or
disable/enable the interrupt to avoid races if this is a concern.
2021-02-26 02:04:48 +01:00
17cf301d4f Remove rand(), fixes #50 2021-02-26 01:58:00 +01:00
11be9170ec Cleanup interrupt package naming. Fixes #40
The `interrupt` package previously tried to be drop-in compatible with the
`interrupt` package from PACs. THis meant that there was both a PAC-style enum
value `UARTE0` and an embassy-style owned `UARTE0Interrupt` type. This made
things VERY confusing.

This drops compatibility with the PAC, improving the names for embassy interrupts.
2021-02-26 01:55:27 +01:00
90476ef900 Fix some warnings. 2021-02-26 01:06:58 +01:00
f779ec4928 update defmt and defmt-rtt to 0.2.0 2021-02-24 08:44:23 +01:00
7321ddb0b3 Update to cortex-m 0.7 2021-02-14 23:26:50 +01:00
b69f72e055 Get rid of some warnings 2021-02-13 21:41:36 -03:00
1879703153 CriticalSectionMutex should require Send. 2021-02-03 16:29:35 +01:00
d71c4b4551 Make spawners Copy+Clone 2021-02-03 04:41:46 +01:00
4192e52629 Update embassy-std to new executor api 2021-02-03 04:30:11 +01:00
aeaa34d7a1 Executor API V2.
- It's no longer possible to call run() reentrantly from within a task (soundness issue)
- it's now possible to spawn Send tasks across threads (SendSpawner, #37)
2021-02-02 05:20:41 +01:00
e0183f4495 optimize interruptfuture
remove critical secitons, impl. Unpin
2021-01-21 10:59:14 -06:00