picoftdi/bsp/rp2040/bsp-feature.h

28 lines
366 B
C
Raw Normal View History

2021-09-26 10:40:27 +00:00
#ifndef BSP_FEATURE_M_FTDI_H_
#define BSP_FEATURE_M_FTDI_H_
#define DBOARD_HAS_FTDI
/* TODO: more fine-grained FTDI support/not-support stuff? */
#include "bsp-info.h"
// not all that much here
enum {
#ifdef USE_USBCDC_FOR_STDIO
CDC_N_STDIO = 0,
#endif
CDC_N__NITF
};
enum {
VND_N_FTDI_IFA = 0,
VND_N_FTDI_IFB = 1,
VND_N__NITF
};
#endif