libicsneo/platform/include/ftdi.h

14 lines
299 B
C

#ifndef __FTDI_H_
#define __FTDI_H_
#define INTREPID_USB_VENDOR_ID (0x093c)
#if defined _WIN32
#include "platform/windows/include/ftdi.h"
#elif defined __linux__
#include "platform/linux/include/ftdi.h"
#else
#warning "This platform is not supported by the FTDI driver"
#endif
#endif