Oliver
Oliver
- MCU/other hardware in use: STM32h7 - Display resolution and interface: I2C, [128x64] ## Nonblocking I2C support Hello, I'm attempting to build an application that utilizes this library in conjunction...
Following from issue: https://github.com/stm32-rs/stm32h7xx-hal/issues/382 The following code in certain circumstances yields a `BankError::PROGRAMMING_SEQUENCE`: ```rust let mut buffer: [u8; 256] = [0xFF; 256]; // ... fill buffer with data flash.erase_sector(Bank::UserBank2, 7).unwrap();...
I've noticed that in certain circumstances the flash controller returns `BankError::PROGRAMMING_SEQUENCE`. It doesn't seem to happen in all circumstances, but the following doesn't work for me within my application: ```rust...
In an attempt to save power within my application, I've been reducing the `HCLK` value. I've noticed that when the `HCLK` is set to 100MHz or lower the ADC initialization...
I think it would be useful for people attempting to get various examples working to have description of the board that the example was originally written for at the top...
I'm wondering if the current SDMMC implementation supports non-blocking interrupts? In my application I'm streaming (both writing and reading back) CSV data to a high speed SDCard. I've based my...
I'm trying to determine if the SPI implementation can support I2S? If not, any plans in the future to add this? I assume that its related to SPI, as the...
Hello, I'm wondering if its possible to run I2S over SPI? For example, I have the `SPI2` peripheral with pins `PA9` for SCK and `PC1` for MOSI. Within the Cube...
When writing to uninitialized RAM and then rebooting the device, upon reading the memory back sometimes various bytes can be deformed. Apparently this is due to how ECC RAM for...
Hello, Im wondering if you plan to add no-std support to this library? I would like to evaluate if it could be suitable for an embedded environment. Kind regards, Oliver