renaming Finders and Peripherals to Providers and Endpoints

This commit is contained in:
2025-11-30 18:57:20 +01:00
parent 7f60f7b8d7
commit 1c8607800a
25 changed files with 1102 additions and 1102 deletions

View File

@@ -2,13 +2,13 @@
#include <iostream>
int main(){
int peripheralsNumber = getFTDIPeripheralsNumber();
int endpointsNumber = getFTDIEndpointsNumber();
std::vector<FTDIPeripheral> peripherals = scanFTDIPeripherals();
std::vector<FTDIEndpoint> endpoints = scanFTDIEndpoints();
// for (const auto& peripheral : peripherals) {
// std::cout << peripheral.serialNumber << " (" << peripheral.description << ") -> IS OPEN: " << peripheral.isOpen << std::endl;
// for (const auto& endpoint : endpoints) {
// std::cout << endpoint.serialNumber << " (" << endpoint.description << ") -> IS OPEN: " << endpoint.isOpen << std::endl;
// }
}