Add cable jetson-nano-gpio

This commit is contained in:
J Biemar
2022-10-14 11:15:02 +02:00
parent 2d66236533
commit 5a7e73b586
7 changed files with 873 additions and 2 deletions
+4
View File
@@ -26,6 +26,7 @@ enum communication_type {
MODE_DFU, /*! DFU based probe */
MODE_XVC_CLIENT, /*! Xilinx Virtual Cable client */
MODE_LIBGPIOD_BITBANG, /*! Bitbang gpio pins */
MODE_JETSONNANO_BITBANG, /*! Bitbang gpio pins */
};
typedef struct {
@@ -75,6 +76,9 @@ static std::map <std::string, cable_t> cable_list = {
#ifdef ENABLE_LIBGPIOD
{"libgpiod", {MODE_LIBGPIOD_BITBANG, {}}},
#endif
#ifdef ENABLE_JETSONNANOGPIO
{"jetson-nano-gpio", {MODE_JETSONNANO_BITBANG, {}}},
#endif
};
#endif