Patricio Whittingslow

Results 350 comments of Patricio Whittingslow

ESP32 support is not quite there yet. That said: - I2C can work via software: https://github.com/tinygo-org/drivers/tree/release/i2csoft - Depending on the frequency of the PWM, you can modulate it via software...

Hey Dan! I'm gonna leave a comment here detailing the status on that development: Tha board has an on-board CH9120 which handles the low level networking: https://www.wch-ic.com/products/CH9120.html Scott Feldman was...

On inspecting the tinygo driver it is clear there is room for improvement: - Heap allocation, could be avoided by using struct allocated buffer: https://github.com/tinygo-org/drivers/blob/5e0191655b602ecc49b70aa3c0816834d85c9718/hd44780i2c/hd44780i2c.go#L217 - Could be global variable:...

@deadprogram @bgould Heads up to both of y'all, I'm writing a FatFS port in pure Go

Hey @deadprogram ! The pure go implementation does not have seek implemented yet, maybe I could try adding it sometime this week. Keep in mind the pure go implementation could...

I'll also note that I started work on a pyserial syscall-identical serial implementation in Go to test this out [here](https://github.com/soypat/pserial), still not finished since reading syscall python code is quite...

FYI Created an idiomatic FAT filesystem library in pure Go over here: https://github.com/soypat/fat. Be great to get some testing in with it to see if we can replace these pesky...

Oh snap, alright, I'll find some time to fix it!

Filed! https://github.com/golang/go/issues/59755

I am getting the following on linux, and commenting said line does not help. ``` $ go run main.go panic: vulkan: error loading default getProcAddr goroutine 1 [running]: main.orPanic({0x4d62e0?, 0xc000016440?})...