Search found 14627 matches
- Fri May 16, 2025 7:45 am
- Forum: STM32 Support
- Topic: LVGL Support
- Replies: 2
- Views: 845
Re: LVGL Support
Hi, Which is the better way to give this a try? I always wanted to integrate LVGL but never had time... About the implementation, while considering LVGL I thought that a simpler approach could be to run the whole thing inside a single thread so no synchronization primitives would be required. In the...
- Thu May 15, 2025 9:40 am
- Forum: Bug Reports
- Topic: QSPI flash access management Topic is solved
- Replies: 2
- Views: 268
Re: QSPI flash access management Topic is solved
Hi, I was discussing this with Bob recently. I think there is a misunderstanding at base, the option SNOR_SHARED_BUS is about mutual exclusion at bus level (SPI, WSPI), it is useful when you have multiple devices on the same SPI with different chip selects. It is not meant to offer some intrinsic mu...
- Thu May 15, 2025 9:27 am
- Forum: Bug Reports
- Topic: STM32: ADCv2: do not set DDS bit in non-circular mode
- Replies: 2
- Views: 455
Re: STM32: ADCv2: do not set DDS bit in non-circular mode
Hi,
Can this be closed? 20.x is unsupported now.
Giovanni
Can this be closed? 20.x is unsupported now.
Giovanni
- Thu May 15, 2025 9:19 am
- Forum: Bug Reports
- Topic: STM32G0B1 Single bank flash support Topic is solved
- Replies: 3
- Views: 9650
Re: STM32G0B1 Single bank flash support Topic is solved
Hi,
Change committed, thanks.
Giovanni
Change committed, thanks.
Giovanni
- Tue May 13, 2025 4:12 pm
- Forum: Development and Feedback
- Topic: Status and Future Directions.
- Replies: 1
- Views: 181
Re: Status and Future Directions.
Hi, Currently there is a RISC-V community port, you may ask for information on our Discord server if interested. We have plans to make this port official but not immediate. BTW registering from any kind of VPN makes you "observed" because forum spam issues, you risked automatic cancellatio...
- Mon May 12, 2025 9:54 am
- Forum: ChibiOS/RT
- Topic: Best way to handle periodic tasks?
- Replies: 1
- Views: 169
Re: Best way to handle periodic tasks?
Hi, Two articles: https://www.chibios.org/dokuwiki/doku.php?id=chibios:articles:virtual_timers https://www.chibios.org/dokuwiki/doku.php?id=chibios:articles:kb:timings Plus the book: https://www.chibios.org/dokuwiki/doku.php?id=chibios:documentation:books:rt:start Finally the documentation: https://...
- Fri May 09, 2025 9:49 pm
- Forum: ChibiOS/HAL
- Topic: DFU mode HSE is not oscillating
- Replies: 6
- Views: 328
Re: DFU mode HSE is not oscillating
I doubt that this is ChibiOS-related, perhaps you could try a different crystal brand.
Giovanni
Giovanni
- Fri May 09, 2025 6:32 pm
- Forum: ChibiOS/HAL
- Topic: DFU mode HSE is not oscillating
- Replies: 6
- Views: 328
Re: DFU mode HSE is not oscillating
Hi,
You need to provide context, which device are you using?
Giovanni
You need to provide context, which device are you using?
Giovanni
- Fri May 09, 2025 4:22 am
- Forum: ChibiOS/HAL
- Topic: SPI configuration confusion
- Replies: 4
- Views: 151
Re: SPI configuration confusion
Hi, Correct, the LLDs export macros that add architecture-dependent fields to the "standard" structures. The non-portability is encapsulated in those configuration structures, the rest of the HAL is portable cross-platform, it is possible to make applications running on different MCUs by s...
- Thu May 08, 2025 9:31 pm
- Forum: ChibiOS/HAL
- Topic: SPI configuration confusion
- Replies: 4
- Views: 151
Re: SPI configuration confusion
Hi, Those fields are registers initialization values, their documentation is in the STM32 reference manual. This is true for most drivers, configuration structures often contain fields named after the physical peripheral register names. The HAL documentation is generic, it does not contain fields th...