22 lines
848 B
Go
22 lines
848 B
Go
|
// Copyright 2017 The Periph Authors. All rights reserved.
|
||
|
// Use of this source code is governed under the Apache License, Version 2.0
|
||
|
// that can be found in the LICENSE file.
|
||
|
|
||
|
// Package d2xx is a thin Go wrapper for the Future Technology "D2XX" driver.
|
||
|
//
|
||
|
// This package is not Go idiomatic. You want to use
|
||
|
// https://periph.io/x/host/v3/ftdi instead.
|
||
|
//
|
||
|
// A binary copy of the d2xx driver is included for linux and macOS. They are
|
||
|
// from https://ftdichip.com/drivers/d2xx-drivers/. See third_party/README.md
|
||
|
// for more details.
|
||
|
//
|
||
|
// Configuration
|
||
|
//
|
||
|
// See https://periph.io/device/ftdi/ for more details, and how to configure
|
||
|
// the host to be able to use this driver.
|
||
|
//
|
||
|
// Windows 10 automatically fetches the driver from Windows Update upon
|
||
|
// connecting a FTDI device on the firt time, so no need to download a driver.
|
||
|
package d2xx
|