File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,27 @@ This project is developed and maintained by the [HAL team][team].
13
13
14
14
[ API reference ] : https://docs.rs/embedded-hal
15
15
16
+ ## Scope
17
+
18
+ ` embedded-hal ` serves as a foundation for building an ecosystem of platform agnostic drivers.
19
+ (driver meaning library crates that let a target platform interface an external device like a digital
20
+ sensor or a wireless transceiver).
21
+
22
+ The advantage of this system is that by writing the driver as a generic library on top
23
+ of ` embedded-hal ` driver authors can support any number of target
24
+ platforms (e.g. Cortex-M microcontrollers, AVR microcontrollers, embedded Linux, etc.).
25
+
26
+ The advantage for application developers is that by adopting ` embedded-hal ` they can unlock all
27
+ these drivers for their platform.
28
+
29
+ ` embedded-hal ` is not tied to a specific execution model like blocking or non-blocking.
30
+
31
+ For functionality that goes beyond what is provided by ` embedded-hal ` , users are encouraged
32
+ to use the target platform directly. Abstractions of common functionality can be proposed to be
33
+ included into ` embedded-hal ` as described [ below] ( #how-to-add-a-new-trait ) , though.
34
+
35
+ See more about the design goals in [ this documentation section] ( https://docs.rs/embedded-hal/latest/embedded_hal/#design-goals ) .
36
+
16
37
## Releases
17
38
18
39
At the moment we are working towards a ` 1.0.0 ` release (see [ #177 ] ). During this process we will
You can’t perform that action at this time.
0 commit comments