Skip to content

Commit

Permalink
Update link submodule.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Jul 2, 2020
1 parent 4bfb2b6 commit 632b1a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion link
Submodule link updated 61 files
+22 −18 .appveyor.yml
+50 −47 .travis.yml
+0 −4 AbletonLinkConfig.cmake
+0 −1 CMakeLists.txt
+9 −27 CONTRIBUTING.md
+3 −25 README.md
+55 −33 TEST-PLAN.md
+0 −8 ci/configure.py
+4 −0 cmake_include/ConfigureCompileFlags.cmake
+23 −75 examples/CMakeLists.txt
+3 −0 examples/esp32/.gitignore
+6 −0 examples/esp32/CMakeLists.txt
+12 −0 examples/esp32/README.md
+11 −0 examples/esp32/main/CMakeLists.txt
+108 −0 examples/esp32/main/main.cpp
+1 −0 examples/esp32/sdkconfig.defaults
+6 −1 examples/linkaudio/AudioEngine.cpp
+2 −1 examples/linkaudio/AudioEngine.hpp
+6 −5 examples/linkaudio/AudioPlatform_Asio.cpp
+2 −2 examples/linkaudio/AudioPlatform_CoreAudio.cpp
+72 −1 examples/linkaudio/AudioPlatform_Dummy.hpp
+23 −10 examples/linkaudio/AudioPlatform_Jack.cpp
+2 −0 examples/linkaudio/AudioPlatform_Jack.hpp
+3 −3 examples/linkaudio/AudioPlatform_Portaudio.cpp
+2 −2 examples/linkaudio/AudioPlatform_Wasapi.cpp
+23 −8 examples/linkhut/main.cpp
+0 −110 examples/qlinkhut/Controller.cpp
+0 −78 examples/qlinkhut/Controller.hpp
+0 −351 examples/qlinkhut/main.qml
+0 −6 examples/qlinkhut/resources.qrc
+14 −3 include/CMakeLists.txt
+2 −2 include/ableton/discovery/IpV4Interface.hpp
+4 −0 include/ableton/discovery/NetworkByteStreamSerializable.hpp
+1 −0 include/ableton/discovery/Payload.hpp
+0 −1 include/ableton/discovery/PeerGateway.hpp
+0 −139 include/ableton/discovery/Socket.hpp
+16 −11 include/ableton/link/Controller.hpp
+2 −3 include/ableton/link/Gateway.hpp
+2 −2 include/ableton/link/HostTimeFilter.hpp
+36 −63 include/ableton/link/Measurement.hpp
+23 −36 include/ableton/link/MeasurementService.hpp
+4 −8 include/ableton/link/NodeId.hpp
+20 −23 include/ableton/link/PingResponder.hpp
+19 −2 include/ableton/platforms/Config.hpp
+0 −105 include/ableton/platforms/asio/AsioService.hpp
+7 −0 include/ableton/platforms/asio/AsioWrapper.hpp
+4 −1 include/ableton/platforms/asio/LockFreeCallbackDispatcher.hpp
+36 −0 include/ableton/platforms/esp32/Clock.hpp
+204 −0 include/ableton/platforms/esp32/Context.hpp
+27 −0 include/ableton/platforms/esp32/Esp32.hpp
+94 −0 include/ableton/platforms/esp32/LockFreeCallbackDispatcher.hpp
+36 −0 include/ableton/platforms/esp32/Random.hpp
+51 −0 include/ableton/platforms/esp32/ScanIpIfAddrs.hpp
+30 −16 include/ableton/platforms/stl/Random.hpp
+13 −13 include/ableton/platforms/windows/Windows.hpp
+0 −83 include/ableton/test/serial_io/Socket.hpp
+1 −1 modules/asio-standalone
+3 −0 src/ableton/link/tst_Controller.cpp
+41 −27 src/ableton/link/tst_Measurement.cpp
+6 −3 src/ableton/link/tst_Peers.cpp
+42 −16 src/ableton/link/tst_PingResponder.cpp

0 comments on commit 632b1a9

Please sign in to comment.