2021-09-01 19:41:28 +00:00
|
|
|
// 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
|
2021-09-11 18:52:44 +00:00
|
|
|
// https://periph.io/x/host/v3/ftdi (or later) instead.
|
2021-09-01 19:41:28 +00:00
|
|
|
//
|
2021-09-11 18:52:44 +00:00
|
|
|
// A static library of the d2xx driver is included for linux and macOS. They are
|
2021-09-01 19:41:28 +00:00
|
|
|
// 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.
|
|
|
|
package d2xx
|