use of org.vesalainen.nmea.router.endpoint.n2kgw.N2KGateway in project NMEAParser by tvesalainen.
the class N2KGatewayT method test.
@Test
public void test() throws IOException, InterruptedException, ExecutionException {
Path in = Paths.get("C:\\Users\\tkv\\share", "candump.txt");
Path out = Paths.get("C:\\Temp", "can2nmea.txt");
N2KGateway gw = N2KGateway.getInstance("can1", in, out, new CachedScheduledThreadPool());
gw.startAndWait();
}
Aggregations