You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/this-month/2021-04/index.md
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ date = 0000-01-01
6
6
month = "April 2021"
7
7
authors = [
8
8
"phil-opp",
9
+
"IsaacWoods",
9
10
# add yourself here
10
11
]
11
12
+++
@@ -78,7 +79,12 @@ This crate is still under depelopment. Some types or field accessors may be miss
78
79
79
80
### [`acpi`](https://github.com/rust-osdev/acpi)
80
81
81
-
The `acpi` repository contains crates for parsing the ACPI tables – data structures that the firmware of modern computers use to relay information about the hardware to the OS. In April, ... TODO
82
+
The `acpi` repository contains crates for parsing the ACPI tables – data structures that the firmware of modern computers use to relay information about the hardware to the OS.
83
+
This month, we improved diagnostics by recording the original and target AML types in the `AmlError::IncompatibleValueConversion` error. This error is emitted when AML tries to convert a value
84
+
to a data type that it can't be interpreted as - AML's rules on possible type conversions and where they can occur are very elaborate, so it helps to know the conversion that was actually attempted.
85
+
<spanclass="gray">(published as `v0.12.0`)</span>
86
+
87
+
Thanks to [@Knapsac](https://github.com/KnapSac) and [@toothbrush7777777](https://github.com/toothbrush7777777) for their contributions!
0 commit comments