Files
miSim/aerpaw/basic_demo/handcode/controller_main.cpp
2026-01-28 23:20:11 -08:00

17 lines
368 B
C++

#include <iostream>
#include "controller.h"
#include "controller_impl.h" // TCP implementation header
int main() {
// Number of clients to handle
int numClients = 2; // for now
std::cout << "Initializing TCP server...\n";
// Call MATLAB-generated server function
controller(numClients);
std::cout << "Server finished.\n";
return 0;
}