Bruno Bousquet

Results 29 comments of Bruno Bousquet

On my project, I've implemented a gradual rolling cut for launch control, flat shift and regular limiter. I found this algorithm on Motec's forum https://www.motec.com.au/forum/viewtopic.php?f=11&t=175&hilit=randomiser This video makes a great...

You could add a setting in the ini file, just like Celsius vs Fahrenheit A good example is around line 348 in references/speeduino.ini Or use kPa instead of bar, both...

[brainstorming] A potential solution would be to start the fuel priming only when the speeduino first sees at least 12v on the battery voltage.

Hi, 7 months ago, I made a [script](https://github.com/brunob45/pio_avrda/blob/main/patchpio.py) to generate the json boards files for every AVR-Dx variant, based on [Atmel's ATpacks](http://packs.download.atmel.com/). It was pulled into platformio/platform-atmelmegaavr#35. If there's a...

Key takeaways: - The MegaCoreX [documentation](https://github.com/MCUdude/MegaCoreX/blob/master/PlatformIO.md) is a good place to look for information. - To upload via UPDI, check the [available protocols](https://github.com/MCUdude/MegaCoreX/blob/master/PlatformIO.md#upload_protocol). If none work, fallback to `upload_protocol=custom` and...

@DeionSi Wow, this is very close indeed. The goal of my PR was to refactor the code while generating the exact same binary. I'll let @noisymime close it.

Hi @fredrikvang I have forked the official PlatformIO package with the updated DxCore version. You can find an example here: https://github.com/brunob45/dev-AVR-Dx I'm using the custom platform https://github.com/brunob45/platform-atmelavrdx#dev/dxcore and the custom...

Hi @Orthosilicate I have forked the official PlatformIO package with the updated DxCore version. You can find an example here: https://github.com/brunob45/dev-AVR-Dx I'm using the custom platform https://github.com/brunob45/platform-atmelavrdx#dev/dxcore and the custom...

Anyone is working on this subject? I also have a project where I want to acurately measure pulse width, and ideally using async. I started toying with a `InputCapture` based...

@romainreignier, since PR #2912 was merged, I added basic support for input capture, as seen in [this example](https://github.com/embassy-rs/embassy/blob/main/examples/stm32f4/src/bin/input_capture.rs). With this, you can call `ic.wait_for_rising_edge(Channel::Ch3).await`. The task will wait until a...