Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial code for google-cast client #2227

Merged
merged 21 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@
path = Sming/Libraries/DHTesp
url = https://github.com/beegee-tokyo/DHTesp.git
ignore = dirty
[submodule "Libraries.GoogleCast"]
path = Sming/Libraries/GoogleCast
url = https://github.com/slaff/Sming-GoogleCast.git
ignore = dirty
[submodule "Libraries.HardwareSPI"]
path = Sming/Libraries/HardwareSPI
url = https://github.com/mikee47/HardwareSPI
Expand Down
1 change: 1 addition & 0 deletions Sming/Libraries/GoogleCast
Submodule GoogleCast added at 554fc2
2 changes: 1 addition & 1 deletion Sming/Libraries/nanopb/src/Callback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ bool InputCallback::decode(pb_istream_t* stream, const pb_field_t* field)
return false;
}
data = static_cast<uint8_t*>(new_buf);
auto old_length{length};
auto old_length = length;
length += available;

return pb_read(stream, &data[old_length], available);
Expand Down
1 change: 1 addition & 0 deletions Sming/Wiring/WHashMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

#include <cstdint>
#include <iterator>
#include <cstdlib>

/**
* @brief HashMap class template
Expand Down