- 14 May, 2017 1 commit
-
-
Paul Sokolovsky authored
-
- 13 May, 2017 10 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This solves a case when socker_read() has blocked on fifo, and then peer closed event arrives.
-
Paul Sokolovsky authored
Requires patch in review.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
The most important info it returns are numbers of free buffers in different pools (rx/tx packet headers, data fragments).
-
Paul Sokolovsky authored
Fixes Zephyr tests.
-
Damien George authored
-
Damien George authored
-
Robert HH authored
This happened when the overflow counter for ticks_ms() was interrupted by an external hard interrupt (issue #3076).
-
Damien George authored
-
- 12 May, 2017 13 commits
-
-
Paul Sokolovsky authored
There're a lot of changes and fixes in 1.8 regarding IP stack, incompatible with previous Zephyr versions, so supporting them doesn't make sense. This is the last commit which should build with Zephyr 1.7.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
For x86_64 build, this saves only 128 bytes on the final executable size, but still an improvement.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Make esp8266_common.ld export size reserved to all code segments, and use that in esp.flash_user_start() implementation.
-
Paul Sokolovsky authored
To accommodate both system and user frozen modules.
-
Tom Collins authored
Tests for an issue with line continuation failing in paste mode due to the lexer only checking for \n in the "following" character position, before next_char() has had a chance to convert \r and \r\n to \n.
-
Tom Collins authored
Resolves an issue where lexer failed to accept CR after line continuation character. It also simplifies the code.
-
- 11 May, 2017 3 commits
-
-
Paul Sokolovsky authored
-
Damien George authored
This is a temporary hack to allow othe Makefiles to build mpy-cross recursively.
-
Damien George authored
This ensures that mpy-cross is automatically built (and is up-to-date) for ports that use frozen bytecode. It also makes sure that .mpy files are re-built if mpy-cross is changed.
-
- 10 May, 2017 6 commits
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
VfsFat no longer has the listdir() method. Rather, if listdir() functionality is needed then one should use uos.listdir() which will call VfsFat.ilistdir().
-
Damien George authored
uos.ilistdir() is the core function, returning an iterator that yields 3-tuples. uos.listdir() is implemented in terms of ilistdir().
-
- 09 May, 2017 7 commits
-
-
Paul Sokolovsky authored
-
Damien George authored
Otherwise the existing FSs can interfere with the tests, and in some cases the tests can write to the real FS on the device.
-
Tom Collins authored
-
Tom Collins authored
Now consistently uses the EOL processing ("\r" and "\r\n" convert to "\n") and EOF processing (ensure "\n" before EOF) provided by next_char(). In particular the lexer can now correctly handle input that starts with CR.
-
Damien George authored
-
Damien George authored
-
Damien George authored
Prior to this patch only 'q' and 'Q' type arrays could store big-int values. With this patch any big int that is stored to an array is handled by the big-int implementation, regardless of the typecode of the array. This allows arrays to work with all type sizes on all architectures.
-