<feed xmlns='http://www.w3.org/2005/Atom'>
<title>embassy/examples/nrf/src/bin/multiprio.rs, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/'/>
<entry>
<title>Rename examples/nrf to examples/nrf52840</title>
<updated>2023-01-09T21:30:02+00:00</updated>
<author>
<name>Dominik Boehi</name>
<email>dominik.boehi@gmail.com</email>
</author>
<published>2023-01-09T21:29:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=0a27b6cedb52453123190671f294bbd34918e09a'/>
<id>0a27b6cedb52453123190671f294bbd34918e09a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Forever, switch to static_cell.</title>
<updated>2022-08-22T14:11:40+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-08-22T13:51:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=478f4727846f6a43c28fff3b09cb639c0b800465'/>
<id>478f4727846f6a43c28fff3b09cb639c0b800465</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Split embassy-time from embassy-executor.</title>
<updated>2022-08-17T23:22:30+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-08-17T21:40:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=5daa173ce4b153a532b4daa9e94c7a248231f25b'/>
<id>5daa173ce4b153a532b4daa9e94c7a248231f25b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Split embassy crate into embassy-executor, embassy-util.</title>
<updated>2022-07-29T21:40:36+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-07-29T19:58:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=a0f1b0ee01d461607660d2d56b5b1bdc57e0d3fb'/>
<id>a0f1b0ee01d461607660d2d56b5b1bdc57e0d3fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run rustfmt.</title>
<updated>2022-06-12T20:22:31+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-06-12T20:15:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=a8703b75988e1e700af701116464025679d2feb8'/>
<id>a8703b75988e1e700af701116464025679d2feb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add embassy-cortex-m crate.</title>
<updated>2022-06-12T19:45:38+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-06-11T03:08:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=5085100df2845745f13715669c18a785a374a879'/>
<id>5085100df2845745f13715669c18a785a374a879</id>
<content type='text'>
- Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`.
- Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore)
- Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`.
- Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore)
- Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`.
</pre>
</div>
</content>
</entry>
<entry>
<title>executor: fix unsoundness in InterruptExecutor::start.</title>
<updated>2022-04-25T20:09:04+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-04-25T20:09:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=b27feb061936d191f456edc22b2f89d4fc172520'/>
<id>b27feb061936d191f456edc22b2f89d4fc172520</id>
<content type='text'>
The initial closure is not actually called in the interrupt, so this is
illegally sending non-Send futures to the interrupt.

Remove the closure, and return a SendSpawner instead.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The initial closure is not actually called in the interrupt, so this is
illegally sending non-Send futures to the interrupt.

Remove the closure, and return a SendSpawner instead.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use embassy/defmt-timestamp-uptime in all examples.</title>
<updated>2022-04-02T02:35:06+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2022-04-02T02:35:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=82803bffdab0842bf6c3e4bce21131d437b06669'/>
<id>82803bffdab0842bf6c3e4bce21131d437b06669</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix interrupt_take macro by specifying path to panic macro.</title>
<updated>2021-11-23T10:00:37+00:00</updated>
<author>
<name>Matous Hybl</name>
<email>hyblmatous@gmail.com</email>
</author>
<published>2021-11-16T11:13:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=0ca6060bfdc3807567e3a22dd356c238745f6cdd'/>
<id>0ca6060bfdc3807567e3a22dd356c238745f6cdd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove trait_alias, allow(incomplete_features).</title>
<updated>2021-09-03T15:00:58+00:00</updated>
<author>
<name>Dario Nieuwenhuis</name>
<email>dirbaio@dirbaio.net</email>
</author>
<published>2021-09-03T15:00:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.d464.sh/rust/embassy/commit/?id=de016e845655fe7a8637c9a545e4074e7bd6dbfc'/>
<id>de016e845655fe7a8637c9a545e4074e7bd6dbfc</id>
<content type='text'>
trait_alias seems unused. no idea why it's there.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
trait_alias seems unused. no idea why it's there.
</pre>
</div>
</content>
</entry>
</feed>
