| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-11 | py: Rename MICROPY_SYS_EXIT to MICROPY_MOD_SYS_EXIT. | Damien George | |
| For consistency with MICROPY_MOD_SYS_STDFILES, etc. | |||
| 2014-05-11 | stmhal: Enable frozenset. Takes 292 text bytes in ROM. | Damien George | |
| 2014-05-11 | stmhal: Update CC3000 driver to newer version. | Damien George | |
| Still not working properly. | |||
| 2014-05-10 | stmhal/cc3k: Remove spaces and tabs at end of lines. | Damien George | |
| 2014-05-10 | tools: Move gendoc.py to tools, and make it a little more generic. | Damien George | |
| 2014-05-10 | stmhal: Fix USB CDC not flushing packets when an exact multiple of 64. | Damien George | |
| Need to send a zero-sized packet after sending an exact multiple of 64 bytes (not just after sending 64 bytes exactly). Addresses issue #494, part 2. | |||
| 2014-05-10 | stmhal: Improve handling of out-of-memory in REPL. | Damien George | |
| Addresses issue #558, but it's likely that other out-of-memory errors could crash the pyboard. Reason is that qstrs use m_new and can raise an exception within the parser. | |||
| 2014-05-10 | modsys: Enable sys.exit() per port after all. | Paul Sokolovsky | |
| 2014-05-10 | stmhal: Implement draft version of sys.exit(). | Paul Sokolovsky | |
| 2014-05-10 | stmhal: Fix setting of RTC: was BCD now BIN encoded. | Damien George | |
| Addresses issue #592. | |||
| 2014-05-08 | Add gc.enable, gc.disable; remove pyb.gc. | Damien George | |
| 2014-05-08 | stmhal: Add time.time() and time.localtime(). | Damien George | |
| time.time: returns seconds since 1/1/2000, as an integer. time.localtime: Returns 8-tuple: (year, month, date, hour, minute, second, weekday, yearday). | |||
| 2014-05-07 | Add input command for unix | Dave Hylands | |
| 2014-05-06 | py: Add keyword arg support to enumerate constructor. | Damien George | |
| Need to have a policy as to how far we go adding keyword support to built ins. It's nice to have, and gets better CPython compatibility, but hurts the micro nature of uPy. Addresses issue #577. | |||
| 2014-05-06 | stmhal: pyb: Use gc() function as defined by standard module "gc". | Paul Sokolovsky | |
| TODO: Get rid of this compatibility define and rely on standard module. | |||
| 2014-05-05 | Change references (in comments) of pyb.GPIO to be pyb.Pin | Dave Hylands | |
| The documentation at http://micropython.org/doc/module/pyb/ExtInt should also be updated. | |||
| 2014-05-04 | stmhal: Document physical pins for SPI, I2C, UART busses. | Damien George | |
| 2014-05-03 | Add license header to (almost) all files. | Damien George | |
| Blanket wide to all .c and .h files. Some files originating from ST are difficult to deal with (license wise) so it was left out of those. Also merged modpyb.h, modos.h, modstm.h and modtime.h in stmhal/. | |||
| 2014-05-03 | py, stream: Implement readlines for a stream. | Damien George | |
| 2014-05-03 | Add device ID to deploy make target for stmhal. | Craig Barnes | |
| 2014-05-03 | Don't print git hash as well as git tag in banner. | Damien George | |
| 2014-05-03 | py: Print tag/version/git describe in uPy banner. | Damien George | |
| 2014-05-03 | Merge pull request #555 from lurch/patch-1 | Damien George | |
| RTC doc fix | |||
| 2014-05-03 | stmhal: Enable cmath module. | Damien George | |
| 2014-05-03 | Fix incorrect fix ;) | Andrew Scheller | |
| 2014-05-03 | stmhal: Add .gitignore to ignore the new build dir names. | Damien George | |
| 2014-05-03 | Updated doc fix | Andrew Scheller | |
| 2014-05-03 | stmhal: Change names: flash to firmware, flashboard to deploy. | Damien George | |
| Since firmware lives in a build directory which already specifies the board name, no real reason to also have the firmware have the board name. | |||
| 2014-05-03 | stmhal: Default build directory now includes board name. | Damien George | |
| BUILD is build-$(BOARD) by default. | |||
| 2014-05-03 | RTC doc fix | Andrew Scheller | |
| 2014-05-03 | stmhal: Wrap CC3000 driver in MICROPY_HW_ENABLE_CC3K. | Damien George | |
| This renames MICROPY_HW_HAS_WLAN to MICROPY_HW_ENABLE_CC3K (since it's a driver, not a board feature) and wraps all CC3000 code in this #if. It's disabled for all boards. | |||
| 2014-05-03 | stmhal: Fix typos in class documentation. | Damien George | |
| 2014-05-03 | stmhal: Fix bug where negative delay/udelay lead to huge delays. | Damien George | |
| A negative ms/us is now treated as a delay of 0 ms/us. This patch also improves the calibration of udelay. | |||
| 2014-05-03 | stmhal: Remove #include <stdint.h> from mpconfigport.h. | Damien George | |
| Make include dependencies neater, and adheres to the coding convention that headers should not include headers. | |||
| 2014-05-03 | stmhal: Add example use to RTC doc; add rtc.c to gendoc.py. | Damien George | |
| 2014-05-03 | stmhal: Add documentation for RTC class. | Damien George | |
| 2014-05-03 | Merge pull request #548 from dhylands/fix-pin-defn | Damien George | |
| Fix PB0 ADC typo. | |||
| 2014-05-02 | Add device ID to autoflash script. | Craig Barnes | |
| 2014-05-02 | Fix PB0 ADC typo. | Dave Hylands | |
| This also adds a bunch of slashes separating pin that have multiple functions. | |||
| 2014-05-02 | Merge branch 'master' of github.com:micropython/micropython | Damien George | |
| 2014-05-02 | stmhal: Add documentation for DAC and Timer classes. | Damien George | |
| 2014-05-02 | unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it. | Paul Sokolovsky | |
| 2014-05-02 | Add shell script to automatically build stmhal/ for all pyboards. | Damien George | |
| 2014-05-01 | Merge pull request #542 from dhylands/fix-pin | Damien George | |
| Fix pin initialization when a mode argument is provided | |||
| 2014-05-01 | Fix pin initialization when a mode argument is provided | Dave Hylands | |
| 2014-05-01 | Add flashboard target to the stmhal Makefile to run dfu-util | Andrew Scheller | |
| Which allows you to run "make -C stmhal flashboard" from the top-level directory. Also ties in nicely with my configurable BUILD directory from #506 | |||
| 2014-04-30 | stmhal, docs: Small changes to URL links; adds list of files if none given. | Damien George | |
| This documentation is now available at micropython.org/doc/ | |||
| 2014-04-30 | stmhal: Reinstate CC3000 driver from old stm/ port. | Damien George | |
| It's not enabled by default because it doesn't fully work. It can connect to an AP, get an IP address and do a host-lookup, but not yet do send or recv on a socket. | |||
| 2014-04-30 | stmhal: Make LED.intensity return the same value it was set to. | Damien George | |
| Also give proper error message when trying to construct a non-existent LED. Addresses issue #530. | |||
| 2014-04-29 | stmhal: Oops, typo. | Damien George | |
