antoinevg
antoinevg
Oooh, I hadn't heard we have a new codec! I think you're right about the chip shortage, most AKM codecs have been unobtainium for a while now. So the bad...
Nice! Looking forward! :-)
It looks like `rustdoc` doesn't check what features are set in `Cargo.toml` when generating these and just grabs the first one that's defined in the origin crate. We do pull...
In theory the DMA configuration should remain unchanged as the interface should be independent of whatever Codec is attached to SAI. Something else that springs to mind is that the...
If I remember correctly, configuring the DMA direction with the appropriate `dma::MemoryToPeripheral` and `dma::PeripheralToMemory` types should do it: https://github.com/antoinevg/daisy_bsp/blob/209d938b58d2ffe0e05af96103c17aa5a0cc0391/src/audio.rs#L47-L57
`ockam_executor` is only used in `no_std` environments, for example on embedded systems or wasm. To test the build under a `no_std` environment you can do: ```shell cd implementations/rust/ockam/ockam cargo build...
Are you getting these errors with a clean checkout from the `develop` branch? Also make sure you're running `cargo build --no-default-features --features 'no_std alloc software_vault'` from the `implementations/rust/ockam/ockam` directory. There...
Weird, the qemu build should get checked during CI so it should always be working if you're using a clean checkout from the `develop` branch. Can you please paste your...
The existing code is an okay-ish placeholder for now but we do want to move progressively towards: 1. Having the executor be interrupt-safe so we can support peripheral access via...
`RTIC` is great and [`embassy`](https://github.com/embassy-rs/embassy) plays nicely with it if you want to add `async` support! The main reason we have our own mini async executor is that these projects...