Brian A. Ignacio

Results 55 comments of Brian A. Ignacio

Can you provide more detail what issue are you facing with esptool-js @drbdrb ?

Do we still have these issues ? @RushikeshPatange @balloob ?

If web serial is supported I believe esptool-js should be as well since it is basically code above the web serial code.

Hello @Jason2866 @musicmindmachine @danielminson @newpsgo @Wind-stormger @jonasniesner Have you guys tried the latest master to see if this issue is fixed ? There is a now a tracing feature to...

Are you using https://espressif.github.io/esptool-js/ or you are using esptool-js on your own project? If you are using your own project, which reset sequence are you using ? Are you implementing...

Thank you for your feedback. The main reason I included these functions in the Abstract Transport class is because they are referenced in the ESPLoader class directly. I do agree...

The current `rawRead` is already async (need to return a Promise which is how async functions are defined in abstract classes). The `write` function is also implemented as async with...

Isn't read N bytes `rawRead` ? I expect `read` needs to do some formatting of some sort anyway but I remove slipReader and slipWriter from abstract class. As you can...

Sorry for late response @cubicap @tve I've removed the `read` function to `src/utils/slip.ts` and implemented mentioned changes. Please take a look when you can.

Thank you for the feedback @cubicap ! Updated the changes to a Slip class and further remove from Transport layer and other changes like the tracer object into a Trace...