-
```
stm32wb-hal = { version = "0.1.2", default-features = false, features = ["xG-package", "rt"]}
```
compiles, but
```
stm32wb-hal = { version = "0.1.2", default-features = false, features =…
-
We could combine the two GPIO sections into a single section and describe
- typical features of a GPIO pin (input, output, open drain, pull-up, pull-down, etc.)
- how these features are handled with…
-
The HAL currently expects the user to manually select a suitable clock configuration. Usually, this is done using, for example, STM32CubeMX.
I would argue that this is not what most users want - th…
-
Im trying to learn to use the rpi pico with rust (already know rust, have done the embedded discovery book, so have some, minimal level of knoledge), but, in trying to follow the given example, im tru…
-
This is mentioned in https://github.com/rust-embedded/book/issues/246: what is the recommended way to share a `Delay`?
Currently all the `Delay` methods take a mutable self reference, e.g. `Delay::…
-
I have an odd case where the entity (hal resource) has a property name that is also (sometimes) the name of a link and embedded object. Basically a message can be sent by a user (which a link and embe…
-
Embedding an entity that defines a toHal method on it inside another method with a toHal method on it works perfectly well, iff the embedding is done by use of configuration. If it is done using code …
-
Currently, the expectations are checked that they are all used upon destruction of the mocked object. However, pytest will ignore any exception thrown by a destructor. This leaves a traceback in the p…
-
### Request description
In this issue,
https://github.com/nod-ai/SHARK-Platform/issues/264
I encountered an error message that looked like
```
ValueError: :0: NOT_FOUND; HAL device `__device_0` no…
-
It would be great to be able to store analog pins in the array and process them sequentially.
If one needs to have multiple analog pins in the array it's not possible -- types are different and Chann…