Skip to content

bithium/ftdi-mpsse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ftdi-mpsse

This project contains the FTDI MPSSE libraries, in a format that can be easily used in CMake projects.

Usage

In order to use this library add this repository to a sub-folder (e.g. lib/ftdi-mpsse) in your project and then add the following to your CMakeLists.txt

# ...
add_subdirectory(lib/ftdi-mpsse)
# ...
include_directories(${FTDI_MPSSE_INCLUDE_DIRS})
# ...
  • for SPI:

    # ...
    add_executable(foobar ...)
    target_link_libraries(foobar ftdi-mpsse-spi)
    # ...
  • for I2C:

    # ...
    add_executable(foobar ...)
    target_link_libraries(foobar ftdi-mpsse-i2c)
    # ...

License

See LICENSE file.

This license applies only to the CMake related files. Other files are copyright of Future Technology Devices International Limited. See each file header for further details.

Releases

No releases published

Packages

No packages published