- 29 Dec, 2015 1 commit
-
-
Huang Rui authored
Add http module and documention, including fix httpclient bug.
-
- 28 Dec, 2015 3 commits
-
-
Terry Ellison authored
Resync master to dev prior to upgrading Dev to SDK 1.5
-
Terry Ellison authored
fix parameter access for ucg.getStrWidth()
-
devsaurus authored
-
- 22 Dec, 2015 1 commit
-
-
Terry Ellison authored
UART: fix parity and stopbit generation
-
- 21 Dec, 2015 3 commits
-
-
devsaurus authored
-
Terry Ellison authored
Fixed compilation error when the enduser_setup module is disabled
-
Robert Foss authored
Fixed compilation error when the enduser_setup module is disabled yet requires ENDUSER_SETUP_AP_SSID to be defined.
-
- 19 Dec, 2015 1 commit
-
-
Terry Ellison authored
Cleanup: LTR module registration
-
- 18 Dec, 2015 4 commits
-
-
Terry Ellison authored
Add a few small corrections and new Docker link
-
Marcel Stör authored
I a discussion with @nickandrew (original author of updated sections) he agreed that we should rather link to *my* Docker image because it has fewer issues then the one currently referenced. The one we identified will soon be addressed.
-
Johny Mattsson authored
Third time lucky. I hope. Hi Terry.
-
Terry Ellison authored
Add a few small corrections and new Docker link
-
- 17 Dec, 2015 3 commits
-
-
Marcel Stör authored
I a discussion with @nickandrew (original author of updated sections) he agreed that we should rather link to *my* Docker image because it has fewer issues then the one currently referenced. The one we identified will soon be addressed.
-
Johny Mattsson authored
SPI: cpol=high is not implemented due to insufficient hw docs
-
Johny Mattsson authored
-
- 16 Dec, 2015 5 commits
-
-
devsaurus authored
-
Terry Ellison authored
Cleanup/minor correction: Flash addr cleanup
-
Johny Mattsson authored
-
Johny Mattsson authored
Module creation & registration now made a lot simpler. In essence, each module file is now self-contained and only needs a NODEMCU_MODULE(MYNAME, "myname", myname_map, luaopen_myname); line to both be automatically recognised by the Lua initialization as well as honor the LUA_USE_MODULES_MYNAME #define.
-
TerryE authored
carrying on Johny's edits as per my comments on #810
-
- 15 Dec, 2015 2 commits
-
-
Arnim Läuger authored
Readme for u8glib app to dev
-
Artem Pastukhov authored
-
- 14 Dec, 2015 2 commits
-
-
Artem Pastukhov authored
-
Artem Pastukhov authored
-
- 12 Dec, 2015 4 commits
-
-
Terry Ellison authored
Do not allow execution to continue after a PANIC
-
Johny Mattsson authored
As per #810 & #796, only LUA_OPTIMIZE_MEMORY=2 & MIN_OPT_LEVEL=2 are supported when building. This commit effects that limitation. With this change modules/auxmods.h no longer needs to be updated for every new module, nor do module writers need to cater for a hypothetical LUA_OPTIMIZE_MEMORY < 2 scenario.
-
Johny Mattsson authored
-
Johny Mattsson authored
There was only one genuine use of this macro, all other places were using it only as a necessary compensation. While this was fine as long as it was the first meg of flash which was mapped, it became incorrect and quite dangerous whenever this assumption did not hold (such as when running from the second slot in an OTA scenario). The flash API now uses actual addresses, not translated/mapped addresses, and the users of this API have been adjusted accordingly. This makes the flash API work correctly regardless of what flash mapping is in use. The old macro is still available under the new name INTERNAL_FLASH_MAPPED_ADDRESS, and this is used to detect flash writes where the source is mapped flash (and thus has to be bounced), and to adjust the _flash_used_end linker symbol when used with flassh_find_sector() by the filesystem code. The latter usage is not OTA-proof, but in an OTA scenario the filesystem needs a fixed location anyway and thus would not use this code path.
-
- 06 Dec, 2015 6 commits
-
-
Marcel Stör authored
Update master README from dev branch
-
Marcel Stör authored
Update readme 2
-
Nick Andrew authored
Given that the 0.9.5 and 0.9.6 versions of NodeMCU are deprecated, it is quite important that the updated README appears in the master branch. That's what people will see when they visit the repository page on github. This commit just squashes all recent dev-branch changes to README.md to get it updated ASAP in advance of pulling the entire dev branch into master. Signed-off-by:
Nick Andrew <nick@nick-andrew.net>
-
Nick Andrew authored
* Remove the "0.9.6; deprecated" comment regarding the master branch * Add a paragraph on enabling debugging * Clarify (I hope) the conditions under which you need to reformat your flash filesystem. * Remove trailing blanks Signed-off-by:
Nick Andrew <nick@nick-andrew.net>
-
Nick Andrew authored
Based on @vowstar edits: * Note that the SDK is the NONOS one * Add links for NodeMCU devkit v1.0 and distinguish from v0.9 * Remove the ToDo list (as all are complete but for 1 item)
-
Vowstar authored
A lot of people don't know DHT sensor lib.
-
- 05 Dec, 2015 3 commits
-
-
Terry Ellison authored
Remove the lobject.c:88 assertion failures
-
Nick Andrew authored
When lua assertions are enabled, normal operation results in many: lobject.c:88: (((t1)->tt) == 4) lobject.c:88: (((t2)->tt) == 4) lobject.c:88: (((t1)->tt) == 4) lobject.c:88: (((t2)->tt) == 4) lobject.c:88: (((t1)->tt) == 4) lobject.c:88: (((t2)->tt) == 4) It comes from using the pvalue() macro for 3 pointer types, where pvalue() also checks the type of pointer and complains through the assertion where the type == 4 (TLIGHTUSERDATA). Use the correct macro according to the type of data being compared to eliminate this assertion error. Signed-off-by:
Nick Andrew <nick@nick-andrew.net>
-
Marcel Stör authored
Rework the README file considerably
-
- 03 Dec, 2015 2 commits
-
-
Johny Mattsson authored
Fix EGC case in concat where stack top not recalculated
-
TerryE authored
-