basic implementation of client/server for AERPAW, whole lot of mess included

This commit is contained in:
2026-01-28 22:29:17 -08:00
parent 20417f240c
commit 8abd009aed
101 changed files with 1129 additions and 36 deletions

View File

@@ -0,0 +1,16 @@
#include <iostream>
#include "controller.h" // Generated by MATLAB Coder
#include "controller_impl.h" // Your TCP implementation header
int main() {
// Number of clients to handle
int numClients = 2; // Example: change as needed
std::cout << "Initializing TCP server...\n";
// Call MATLAB-generated server function
controller(numClients);
std::cout << "Server finished.\n";
return 0;
}