Skip to content

Commit 52dde70

Browse files
author
James Munns
committed
Prep for Newsletter 22 release
1 parent 7e62449 commit 52dde70

File tree

2 files changed

+89
-20
lines changed

2 files changed

+89
-20
lines changed

content/2019-12-26-newsletter-22.md renamed to content/2020-01-01-newsletter-22.md

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
+++
22
title = "The Embedded Working Group Newsletter - 22"
3-
date = 2019-12-26
4-
draft = true
5-
in_search_index = false
3+
date = 2020-01-01
4+
draft = false
5+
in_search_index = true
66
template = "page.html"
77
+++
88

9-
<!-- TODO before release set `draft` to `false` and `in_search_index` to `true` -->
10-
119
This is the 22nd newsletter of the [Embedded WG] where we highlight new progress, celebrate cool projects, thank the community, and advertise projects that need help!
1210

1311
[Embedded WG]: https://github.com/rust-embedded/wg
@@ -25,18 +23,21 @@ This is the 22nd newsletter of the [Embedded WG] where we highlight new progress
2523

2624
If you want to mention something in [the next newsletter], send us a pull request!
2725

28-
<!-- TODO before release add the next template! -->
29-
30-
[the next newsletter]: https://github.com/rust-embedded/blog/edit/master/content/${TODO}.md
26+
[the next newsletter]: https://github.com/rust-embedded/blog/edit/master/content/2020-01-30-newsletter-23.md
3127

3228
## Highlights
3329

34-
<!-- TODO Add news related to embedded Rust that are not about new crates releases here -->
3530

3631
- [@andre-richter] added a new tutorial for the `Operating System development tutorials in Rust on the Raspberry Pi` series:
37-
- Tutorial 13: [Integrated Testing](https://github.com/rust-embedded/rust-raspi3-OS-tutorials/tree/master/13_integrated_testing) - Kernel `Unit tests`, `Integration tests` and `Console tests` using `QEMU`.
32+
- Tutorial 13: [Integrated Testing](https://github.com/rust-embedded/rust-raspi3-OS-tutorials/tree/master/13_integrated_testing) - Kernel `Unit tests`, `Integration tests` and `Console tests` using `QEMU`.
33+
- [@jamesmunns] sketched out a few introductory notes about foundational Embedded Rust Crates like `r0`, `cortex-m`, `PAC`s, and `HAL`s. See [part 1] and [part 2] on Twitter!
34+
- [Craig Bishop] wrote an overview of [Getting Started on the STM32L0], which contains an excellent breakdown of what makes up an Embedded Rust project
3835

39-
- TODO(remove, this is an example) the Rust compiler has gained cross compilation support for the Xtensa architecture!
36+
[@jamesmunns]: https://twitter.com/bitshiftmask
37+
[part 1]: https://twitter.com/bitshiftmask/status/1210714309124186112
38+
[part 2]: https://twitter.com/bitshiftmask/status/1211031300531986432
39+
[Craig Bishop]: https://github.com/craigjb
40+
[Getting Started on the STM32L0]: https://craigjb.com/2019/12/31/stm32l0-rust/
4041

4142
## Embedded Projects
4243

@@ -85,17 +86,15 @@ If you have an embedded project or blog post you would like to have featured in
8586

8687
As part of the [Weekly Driver Initiative], crates that are part of the `embedded-hal` ecosystem are now tracked in the [Awesome Embedded Rust] repository. Here is a current snapshot of what is available there:
8788

88-
<!-- TODO fill in the numbers before release -->
89-
9089
| Type | Status | Count | Diff |
9190
| :--- | :----- | :---- | :--- |
92-
| [Peripheral Access Crates] | released | ?? | +? |
93-
| [HAL Impl Crates] | released | ?? | +? |
94-
| [Board Support Crates] | released | ?? | +? |
95-
| [Driver Crates Released] | released | ?? | +? |
96-
| [Driver Crates WIP] | WIP | ?? | +? |
97-
| [no-std crates] | released | ?? | +? |
98-
| [no-std crates WIP] | WIP | ?? | +? |
91+
| [Peripheral Access Crates] | released | 39 | +7 |
92+
| [HAL Impl Crates] | released | 31 | +2 |
93+
| [Board Support Crates] | released | 19 | 0 |
94+
| [Driver Crates Released] | released | 33 | +3 |
95+
| [Driver Crates WIP] | WIP | 67 | -2 |
96+
| [no-std crates] | released | 32 | +2 |
97+
| [no-std crates WIP] | WIP | 3 | 0 |
9998

10099
[Awesome Embedded Rust]: https://github.com/rust-embedded/awesome-embedded-rust
101100
[Weekly Driver Initiative]: https://github.com/rust-embedded/wg/issues/39

content/2020-01-30-newsletter-23.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
+++
2+
title = "The Embedded Working Group Newsletter - 23"
3+
date = 2020-01-30
4+
draft = true
5+
in_search_index = false
6+
template = "page.html"
7+
+++
8+
9+
<!-- TODO before release set `draft` to `false` and `in_search_index` to `true` -->
10+
11+
This is the 23rd newsletter of the [Embedded WG] where we highlight new progress, celebrate cool projects, thank the community, and advertise projects that need help!
12+
13+
[Embedded WG]: https://github.com/rust-embedded/wg
14+
15+
<!-- TODO uncomment -->
16+
17+
<!-- Discuss on [#rust-embedded:matrix.org], [users.rust-lang.org], [on twitter], or [on reddit]! -->
18+
19+
<!-- [#rust-embedded:matrix.org]: https://matrix.to/#/#rust-embedded:matrix.org -->
20+
<!-- [users.rust-lang.org]: https://example.org/#TODO -->
21+
<!-- [on twitter]: https://example.org/#TODO -->
22+
<!-- [on reddit]: https://example.org/#TODO -->
23+
24+
<!-- more -->
25+
26+
If you want to mention something in [the next newsletter], send us a pull request!
27+
28+
<!-- TODO before release add the next template! -->
29+
30+
[the next newsletter]: https://github.com/rust-embedded/blog/edit/master/content/${TODO}.md
31+
32+
## Highlights
33+
34+
<!-- TODO Add news related to embedded Rust that are not about new crates releases here -->
35+
36+
- TODO(remove, this is an example) "const generics" has landed in nightly!
37+
38+
- TODO(remove, this is an example) the Rust compiler has gained cross compilation support for the Xtensa architecture!
39+
40+
## Embedded Projects
41+
42+
<!-- TODO Add news about embedded projects here -->
43+
44+
If you have an embedded project or blog post you would like to have featured in the Embedded WG Newsletter, make sure to add it to [the next newsletter], we would love to show it off!
45+
46+
## `embedded-hal` Ecosystem Crates
47+
48+
As part of the [Weekly Driver Initiative], crates that are part of the `embedded-hal` ecosystem are now tracked in the [Awesome Embedded Rust] repository. Here is a current snapshot of what is available there:
49+
50+
<!-- TODO fill in the numbers before release -->
51+
52+
| Type | Status | Count | Diff |
53+
| :--- | :----- | :---- | :--- |
54+
| [Peripheral Access Crates] | released | ?? | +? |
55+
| [HAL Impl Crates] | released | ?? | +? |
56+
| [Board Support Crates] | released | ?? | +? |
57+
| [Driver Crates Released] | released | ?? | +? |
58+
| [Driver Crates WIP] | WIP | ?? | +? |
59+
| [no-std crates] | released | ?? | +? |
60+
| [no-std crates WIP] | WIP | ?? | +? |
61+
62+
[Awesome Embedded Rust]: https://github.com/rust-embedded/awesome-embedded-rust
63+
[Weekly Driver Initiative]: https://github.com/rust-embedded/wg/issues/39
64+
[Peripheral Access Crates]: https://github.com/rust-embedded/awesome-embedded-rust#peripheral-access-crates
65+
[HAL Impl Crates]: https://github.com/rust-embedded/awesome-embedded-rust#hal-implementation-crates
66+
[Board Support Crates]: https://github.com/rust-embedded/awesome-embedded-rust#board-support-crates
67+
[Driver Crates Released]: https://github.com/rust-embedded/awesome-embedded-rust#driver-crates
68+
[Driver Crates WIP]: https://github.com/rust-embedded/awesome-embedded-rust#wip
69+
[no-std crates]: https://github.com/rust-embedded/awesome-embedded-rust#no-std-crates
70+
[no-std crates WIP]: https://github.com/rust-embedded/awesome-embedded-rust#wip-1

0 commit comments

Comments
 (0)