Vincent Stakenburg

Results 19 comments of Vincent Stakenburg
trafficstars

Same here, also have the 2018 MacBook Pro 15". How could I contribute?

Amazing work @mikroskeem @MCMrARM Where do I donate?

> It's not indended for moving all the convo there, I'm thinking about moving smaller conversation away from Github issue tracker as it'll constantly spam e-mails to subscribers. If you...

> We don't have task names because that's just not part of the executor API. Ideally we'd call trace::task_send_info with the name of each task. Since all of the task...

> Have you checked the version of UART and LPUART matches in all chips? I haven't, how would I go about searching through all the files to check this?

Ah dear, already found an example of a chip (STM32L4A6) that has a v1 LPUART but a v2 USART... 🙃 Where do we go from here?

Main difference between a v1 and v2 LPUART seems to be: - support for (TX & RX) FIFO - prescaler Seems to me that a mixed version case should be...

Hmm, would be very neat if you could supply your own CRC function, in case of STM MCU's with builtin CRC calc unit.

As for the CRC8, the number 1 implementation from [this](https://stackoverflow.com/a/36505819/1768087) has worked well for me. It's a Maxim/Dallas implementation with 0x31 as the polynomial, 0x0 as init and final Xor...

Volatile access is not relevant here. Loading the prescaler value actually just takes a while, and you're not waiting till the update flag is actually set. So you clear it...