X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=blobdiff_plain;f=examples%2Ffind_all_pp.cpp;h=4061cd95e0bb7de453bb245e25e7218063d31eb0;hp=7a5a85d3d94f53e8b6588d402f08e5e8bfd365dd;hb=19f1452cde9bfe9da0e2830af128fae958ae877a;hpb=b0c551aa781667812bbe26df2c1100f76b8de28d diff --git a/examples/find_all_pp.cpp b/examples/find_all_pp.cpp index 7a5a85d..4061cd9 100644 --- a/examples/find_all_pp.cpp +++ b/examples/find_all_pp.cpp @@ -14,49 +14,59 @@ using namespace Ftdi; int main(int argc, char **argv) { - // Show help - if(argc > 1) - { - if(strcmp(argv[1],"-h") == 0 || strcmp(argv[1],"--help") == 0) - { - std::cout << "Usage: " << argv[0] << " [-v VENDOR_ID] [-p PRODUCT_ID]" << std::endl; - return EXIT_SUCCESS; - } - } - - // Parse args - int vid = 0x0403, pid = 0x6010, tmp = 0; - for(int i = 0; i < (argc - 1); i++) - { - if(strcmp(argv[i], "-v") == 0) - if((tmp = strtol(argv[++i], 0, 16)) >= 0) - vid = tmp; - - if(strcmp(argv[i], "-p") == 0) - if((tmp = strtol(argv[++i], 0, 16)) >= 0) - pid = tmp; - } - - // Print header - std::cout << std::hex << std::showbase - << "Found devices ( VID: " << vid << ", PID: " << pid << " )" - << std::endl - << "------------------------------------------------" - << std::endl << std::dec; - - // Print whole list - List* list = List::find_all(vid, pid); - for(List::iterator it = list->begin(); it != list->end(); it++) - { - std::cout << "FTDI (" << &*it << "): " - << it->vendor() << ", " - << it->description() << ", " - << it->serial() - << std::endl; - - } - - delete list; - - return EXIT_SUCCESS; + // Show help + if (argc > 1) + { + if (strcmp(argv[1],"-h") == 0 || strcmp(argv[1],"--help") == 0) + { + std::cout << "Usage: " << argv[0] << " [-v VENDOR_ID] [-p PRODUCT_ID]" << std::endl; + return EXIT_SUCCESS; + } + } + + // Parse args + int vid = 0x0403, pid = 0x6010, tmp = 0; + for (int i = 0; i < (argc - 1); i++) + { + if (strcmp(argv[i], "-v") == 0) + if ((tmp = strtol(argv[++i], 0, 16)) >= 0) + vid = tmp; + + if (strcmp(argv[i], "-p") == 0) + if ((tmp = strtol(argv[++i], 0, 16)) >= 0) + pid = tmp; + } + + // Print header + std::cout << std::hex << std::showbase + << "Found devices ( VID: " << vid << ", PID: " << pid << " )" + << std::endl + << "------------------------------------------------" + << std::endl << std::dec; + + // Print whole list + Context context; + List* list = List::find_all(context, vid, pid); + for (List::iterator it = list->begin(); it != list->end(); it++) + { + std::cout << "FTDI (" << &*it << "): " + << it->vendor() << ", " + << it->description() << ", " + << it->serial(); + + // Open test + if(it->open() == 0) + std::cout << " (Open OK)"; + else + std::cout << " (Open FAILED)"; + + it->close(); + + std::cout << std::endl; + + } + + delete list; + + return EXIT_SUCCESS; }