# HG changeset patch # User Giulio Moro # Date 1463497475 -3600 # Node ID a14fe8b0f588be320f2ccae1b089faa832564b5d # Parent 428f13c2cb49e6f316ee3b31bcb1a3c7942d6c1a Partially undoing 247a182adb6d diff -r 428f13c2cb49 -r a14fe8b0f588 Doxyfile --- a/Doxyfile Tue May 17 15:12:08 2016 +0100 +++ b/Doxyfile Tue May 17 16:04:35 2016 +0100 @@ -648,7 +648,7 @@ # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = include/BeagleRT.h include/Utilities.h include/digital_gpio_mapping.h include/PulseIn.h include/Scope.h include/Midi.h include/UdpClient.h include/WriteFile.h projects/ +INPUT = include/BeagleRT.h include/Utilities.h include/digital_gpio_mapping.h include/PulseIn.h include/Scope.h include/Midi.h include/UdpClient.h include/WriteFile.h # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is diff -r 428f13c2cb49 -r a14fe8b0f588 core/UdpClient.cpp --- a/core/UdpClient.cpp Tue May 17 15:12:08 2016 +0100 +++ b/core/UdpClient.cpp Tue May 17 16:04:35 2016 +0100 @@ -10,7 +10,6 @@ outSocket=socket(AF_INET, SOCK_DGRAM, 0); int broadcastEnable = 1; int ret = setsockopt(outSocket, SOL_SOCKET, SO_BROADCAST, &broadcastEnable, sizeof(broadcastEnable)); - printf("setsockopt returned %d\n", ret); isSetPort=false; isSetServer=false; enabled=false;