Giter VIP home page Giter VIP logo

udpee's Introduction

                 UDPEE

This program reads standard input and writes it (line buffered) to stardard output and via UDP to port 6666. It can optionally log its input to a file.

To install, cross-compile the program with the arm-none-linux-gnueabi-4.4.1 toolchain (you may need to adjust your $PATH) and ftp copy it to /home/admin/udpee_arm. Then edit /usr/local/frc/bin/frcRunRobot.sh and, in one of the last lines, replace

[... preceding code] > {logfile} 2>&1

with

[... preceding code] | /home/admin/udpee_arm broadcast {logfile} 2>&1

One small adjustment must be made to the robot code: because stdout and stderr are buffered in large chunks when the receiving end of the pipe is not a tty, packets are only sent when a new chunk is delivered. Adding the calls (from stdio.h)

   setlinebuf(stdin);
   setlinebuf(stdout);

somewhere in the robot initialization code should enable the helper utility to send every line as soon as it is written (std::cout << x << std::endl; flushes the buffer, so if you only use C++ style IO this adjustment is unnecessary).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.