-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further development to UPnP framework. Some additions required to the build system to support intermediate code generation. * Add COMPONENT_PREREQUISITES and COMPONENT_BUILD_BASE to build framework * Fix `ListAllSubDirs` - should be able to handle multiple arguments * Add `ListAllFiles` and `dirx` * Add UPnP-Schema library * Update SSDP, UPnP, HueEmulator libraries
- Loading branch information
Showing
13 changed files
with
72 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule HueEmulator
updated
20 files
+166 −0 | LICENSE | |
+1 −1 | component.mk | |
+0 −0 | samples/Basic_Alexa/app/MyDueDevice.cpp | |
+3 −2 | samples/Basic_Alexa/app/application.cpp | |
+7 −9 | src/Bridge.cpp | |
+1 −1 | src/Device.cpp | |
+1 −1 | src/DeviceListStream.cpp | |
+1 −1 | src/DeviceListStream.h | |
+1 −1 | src/ResponseStream.cpp | |
+1 −1 | src/ResponseStream.h | |
+1 −1 | src/Stats.cpp | |
+1 −1 | src/Strings.cpp | |
+1 −1 | src/Strings.h | |
+6 −5 | src/include/Hue/Bridge.h | |
+1 −1 | src/include/Hue/ColourDevice.h | |
+1 −1 | src/include/Hue/Device.h | |
+1 −1 | src/include/Hue/DeviceList.h | |
+1 −1 | src/include/Hue/DimmableDevice.h | |
+1 −1 | src/include/Hue/OnOffDevice.h | |
+1 −1 | src/include/Hue/Stats.h |
Submodule RapidXML
updated
5 files
+1 −1 | src/PrintBuffer.h | |
+1 −1 | src/PrintIterator.h | |
+28 −1 | src/RapidXML.cpp | |
+1 −1 | src/StringIterator.h | |
+43 −1 | src/include/RapidXML.h |
Submodule SSDP
updated
16 files
+166 −0 | LICENSE | |
+12 −0 | README.rst | |
+4 −0 | component.mk | |
+17 −3 | src/Message.cpp | |
+45 −17 | src/MessageQueue.cpp | |
+1 −1 | src/MessageSpec.cpp | |
+64 −29 | src/Server.cpp | |
+172 −0 | src/Urn.cpp | |
+51 −9 | src/Uuid.cpp | |
+1 −1 | src/debug.h | |
+9 −5 | src/include/Network/SSDP/Message.h | |
+7 −1 | src/include/Network/SSDP/MessageQueue.h | |
+2 −2 | src/include/Network/SSDP/MessageSpec.h | |
+33 −2 | src/include/Network/SSDP/Server.h | |
+218 −0 | src/include/Network/SSDP/Urn.h | |
+62 −10 | src/include/Network/SSDP/Uuid.h |
Submodule UPnP-Schema
added at
6ec36b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters