10000 implement EspClass::getFreeContStack method by devyte · Pull Request #5133 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

implement EspClass::getFreeContStack method #5133

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

Merged
merged 3 commits into from
Sep 13, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unneeded extern
  • Loading branch information
devyte committed Sep 13, 2018
commit fd8f0561b5a3fa63df1e7ae0f1050c8541bb10f5
2 changes: 1 addition & 1 deletion cores/esp8266/Esp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ uint16_t EspClass::getMaxFreeBlockSize(void)

uint32_t EspClass::getFreeContStack()
{
extern cont_t* g_pcont;
// extern cont_t* g_pcont;
return cont_get_free_stack(g_pcont);
}

Expand Down
0