Charles Cabergs

Results 58 comments of Charles Cabergs

My colleagues and I have observed that behavior across different terminals (Windows terminal, ubuntu's terminal, alacritty) and different machines with different OSes (Linux, Windows) I really seems independent of the...

Similar behavior when it cannot find a usb: ``` $ espflash monitor --log-format defmt --elf [2024-10-04T15:20:49Z INFO ] 🚀 A new version of espflash is available: v3.1.1 [2024-10-04T15:20:49Z INFO ]...

This bug is the bane of my existence, any clue where I could start looking for it in the espflash codebase?

Sure, just make a PR to modify the README Jun 5, 2024 05:20:09 Magi ***@***.***>: > > Hello, > > In some Linux distributions, such as Debian or Void Linux,...

In the mean time, here is the flawed script I made which checks the state by checking if a file is present: ```sh #!/bin/sh command -v lc > /dev/null ||...

I tried on my machine: Wezterm/Powershell and my colleague's machine: Default windows cmd We both got the same result, I don't think this is a configuration thing since my colleague...

Seems like rich-click has some issues on Windows: https://github.com/ewels/rich-click/issues/300 and https://github.com/ewels/rich-click/issues/165

It is able to parse it if I don't specify any struct in the URC enum: ```rust #[derive(AtatUrc)] pub enum Urc { #[at_urc("+QIND")] OTAStatus, } ``` But of course, I...

Okay, looking has some previous code that could parse it, I think this specific URC is terminated by a `\r` instead of `\r\n`. I now have `#[at_urc("+QIND", termination = "\r")]`...

Also tried to copy the default urc parser in my code and replace the `\r\n` by `\r` but it wasn't successful