host
host copied to clipboard
Go·Hardware·Lean - Host drivers
The serial port sub-system was [mentioned](https://github.com/periph/host/issues/7) as one that you're ok bringing in other implementations. I'm presently using this one as the basis for a ds2480 1-wire chip: https://github.com/bugst/go-serial. Based...
as title. how do i porting please?
There are kernel i2c bus adapters that don't support generic I2C, but only support smbus operations. For example: ``` ; i2cdetect -l | grep smbus i2c-0 smbus SMBus I801 adapter...
I think there is an error in the pmem example for MapAsPOD. ```go package main import ( "log" "periph.io/x/host/v3/pmem" ) func main() { // Let's say the CPU has 4...
**Describe the bug** run code, and after some indeterminate time, exit and report: ``` bcm283x-gpio (GPIO21): videocore: failed request to allocate memory: failed to send IOCTL: connection timed out exit...
This is for the FT232D/FT232H/FT2232H/FT4232H. While the driver can implement itself, I²C/SPI/UART/JTAG, exposing MPSSE directly can enable users to create custom protocol. http://www.ftdichip.com/Support/Documents/AppNotes/AN_135_MPSSE_Basics.pdf
From original issue https://github.com/periph/extra/issues/7 @ldrrp When will edge triggering be supported. How am i supposed to use a button with an ft232h @ardnew I don't believe interrupt edge detection is...
Currently the `ftdi` driver can be initialized only once and it cannot re-enumerate any new devices after first initialization. With hot-pluggable USB-devices, this makes it difficult to use the driver,...
A use case is the I²C peripheral in the HDMI canal. The driver succeeds at Read() but fails with a read-only ioctl.
**Describe the bug** Running a basic PWM test results in a panic. **To Reproduce** Steps to reproduce the behavior: 1. Run program From: https://periph.io/device/buzzer/ ```go package main import ( "log"...