Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py: In inline asm, vldr and vstr offsets now in bytes not words. | adminpete | 2015-10-31 |
| | | | | As per ARM convention. | ||
* | stmhal: f7: Fix recent RTC change to build on F7. | Dave Hylands | 2015-10-30 |
| | |||
* | README: Adjust suggested path for generated docs. | Paul Sokolovsky | 2015-10-31 |
| | |||
* | docs/library/index.rst: Minimally adapt for unix port. | Paul Sokolovsky | 2015-10-31 |
| | |||
* | docs: Actually add unix port indexes, so docs for it could be generated. | Paul Sokolovsky | 2015-10-31 |
| | |||
* | stmhal: Make RTC init skip startup if LTE is already enabled and ready. | Peter Hinch | 2015-10-30 |
| | | | | | | | This prevents the loss of RTC time when exiting from standby mode, since the RTC is paused while it is being re-inited and this loses about 120ms. Thanks to @chuckbook for the patch. | ||
* | stmhal: Add define for UNIQUE_ID address (differs per MCU) | Dave Hylands | 2015-10-30 |
| | |||
* | stmhal: Enable sdcard on STM32F7DISC board. | Dave Hylands | 2015-10-30 |
| | |||
* | windows: Call _set_output_format() only on Visual Studio versions 2013 or lower. | omtinez | 2015-10-30 |
| | | | | | Since VS2015, float formatting is C standard compliant by default: https://msdn.microsoft.com/en-us/library/bb531344(v=vs.140).aspx | ||
* | py/makeversionhdr.py: Work with backslashes in paths. | omtinez | 2015-10-30 |
| | | | | | This script may be called by Windows IDEs (e.g. Visual Studio) and be passed paths with backslashes. | ||
* | stmhal: Make accel AVDD pin configurable via mpconfigboard.h. | Damien George | 2015-10-29 |
| | |||
* | docs: select: Describe poll.poll() return value in detail. | Paul Sokolovsky | 2015-10-29 |
| | |||
* | cc3200: Switch from HAL_GetTick() to mp_hal_ticks_ms(). | Paul Sokolovsky | 2015-10-29 |
| | |||
* | stmhal/moduselect: Use mp_hal_ticks_ms(). | Paul Sokolovsky | 2015-10-29 |
| | |||
* | cc3200: Switch from HAL_Delay() to mp_hal_delay_ms(). | Paul Sokolovsky | 2015-10-29 |
| | |||
* | teensy: Switch from HAL_* to mp_hal_* functions. | Paul Sokolovsky | 2015-10-29 |
| | |||
* | minimal: Use mp_hal_ticks_ms(). | Paul Sokolovsky | 2015-10-29 |
| | |||
* | esp8266: Switch to standard mp_hal_ticks_ms() MPHAL function. | Paul Sokolovsky | 2015-10-29 |
| | |||
* | stmhal/pyexec: Use mp_hal_ticks_ms(). | Paul Sokolovsky | 2015-10-29 |
| | | | | | | This file is actually port-generic and should be moved out of stmhal/ . Other ports already use it, and thus it should use mp_hal_ticks_ms() right away. | ||
* | esp8266: Switch to standard mp_hal_delay_ms() MPHAL function. | Paul Sokolovsky | 2015-10-29 |
| | |||
* | esp8266: Switch to standard mp_hal_delay_us() MPHAL function. | Paul Sokolovsky | 2015-10-29 |
| | |||
* | examples: Add example of I2C usage, taking PyBoard accelerometer as subject. | Paul Sokolovsky | 2015-10-28 |
| | |||
* | cc3200: Actually allow to specify a custom build directory. | danicampora | 2015-10-28 |
| | |||
* | cc3200: Fix bug in FTP command buffer, and set listening backlog to 0. | danicampora | 2015-10-28 |
| | |||
* | extmod/moductypes: When dealing with UINT64, use mp_obj_new_int_from_ull(). | Paul Sokolovsky | 2015-10-28 |
| | | | | Since we now have it. | ||
* | unix, stmhal: Introduce mp_hal_delay_ms(), mp_hal_ticks_ms(). | Paul Sokolovsky | 2015-10-27 |
| | | | | | | | | These MPHAL functions are intended to replace previously used HAL_Delay(), HAL_GetTick() to provide better naming and MPHAL separation (they are fully equivalent otherwise). Also, refactor extmod/modlwip to use them. | ||
* | docs/wipy: Fix bug in example code and add note regarding OTA. | danicampora | 2015-10-26 |
| | |||
* | extmod/modlwip: Codestyle: no need for () when taking address of primary expr. | Paul Sokolovsky | 2015-10-27 |
| | | | | Like foo.bar or foo->bar. | ||
* | extmod/modlwip: lwip_tcp_send(): Common subexpression elimination, use MIN(). | Paul Sokolovsky | 2015-10-27 |
| | |||
* | extmod/modlwip.c: Codestyle whitespace changes. | Paul Sokolovsky | 2015-10-27 |
| | | | | | With MicroPython codestyle, with pointer casts, "*" packs with primary type without space. Few other similar changes too (git diff -b -w is null). | ||
* | docs/wipy: Fix several typos and change some pyboard to WiPy. | Martijn Koster | 2015-10-26 |
| | |||
* | cc3200: Set pin direction first, then value. Fixes #1542. | danicampora | 2015-10-26 |
| | |||
* | extmod/modlwip: slip: Use stream protocol and be port-independent. | Paul Sokolovsky | 2015-10-27 |
| | | | | | Based on the original patch by Galen Hazelwood: https://github.com/micropython/micropython/pull/1517 . | ||
* | windows: Rename "time" module to "utime" for consistency with others. | stijn | 2015-10-26 |
| | |||
* | lib: Replace tabs with spaces in readline.c | stijn | 2015-10-26 |
| | |||
* | windows: Erase pre-calc'd number of chars instead of clearing whole line. | stijn | 2015-10-26 |
| | |||
* | extmod/moductypes: Implement buffer protocol. | Paul Sokolovsky | 2015-10-26 |
| | | | | | This is required to write structures to files, pass to FFI functions, etc. | ||
* | stmhal: Fix USB_VCP.recv so that it returns actual amount of bytes read. | Damien George | 2015-10-25 |
| | | | | Addresses issue #1529. | ||
* | cc3200: Update README to change pyb to machine. | Martijn Koster | 2015-10-25 |
| | |||
* | docs/wipy: Fix several typos. | Martijn Koster | 2015-10-25 |
| | |||
* | cc3200: Allow to read pin value when in OPEN_DRAIN mode. | danicampora | 2015-10-25 |
| | |||
* | docs/wipy: Fix error in WLAN quickref. | danicampora | 2015-10-25 |
| | |||
* | cc3200: Enable WLAN irq on creation. | danicampora | 2015-10-25 |
| | |||
* | windows: Add usleep() implementation for msvc port | stijn | 2015-10-25 |
| | | | | | | | Also make sleep.c self-contained by moving initialization code, instead of having part of the code in init.c, and add a header file to accomodate this. msec_sleep() now uses the usleep() implementation as well. | ||
* | windows: Do not use wildcards when looking for sources in directories ↵ | stijn | 2015-10-25 |
| | | | | | | containing optional features Fixes issues like #1532 | ||
* | docs: USB_VCP: Always in non-blocking mode, clarify stream method returns. | Paul Sokolovsky | 2015-10-25 |
| | | | | They return None if no data available. | ||
* | docs: Explicitly specify behavior of UART stream protocol methods on timeout. | Paul Sokolovsky | 2015-10-25 |
| | |||
* | stmhal: Typo fix in comment. | Paul Sokolovsky | 2015-10-24 |
| | |||
* | stmhal/ffconf.h: Include py/mpconfig.h. | Paul Sokolovsky | 2015-10-24 |
| | | | | | mpconfigport.h is a private, partial header not providing correct settings unless included by py/mpconfig.h. | ||
* | Makefiles: Remove duplicate object files when linking. | Paul Sokolovsky | 2015-10-24 |
| | | | | | | | | | | | Scenario: module1 depends on some common file from lib/, so specifies it in its SRC_MOD, and the same situation with module2, then common file from lib/ eventually ends up listed twice in $(OBJ), which leads to link errors. Make is equipped to deal with such situation easily, quoting the manual: "The value of $^ omits duplicate prerequisites, while $+ retains them and preserves their order." So, just use $^ consistently in all link targets. |