| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-30 | Merge pull request #710 from iabdalkader/assert | Damien George | |
| Fix assert_func warning/error | |||
| 2014-06-29 | stmhal: pyb.adc: Clarify that buffer with elements of any size can be used. | Paul Sokolovsky | |
| Based on forum post: http://forum.micropython.org/viewtopic.php?f=6&t=193 | |||
| 2014-06-28 | stmhal: Include mpconfig.h before all other includes. | Paul Sokolovsky | |
| It defines types used by all other headers. Fixes #691. | |||
| 2014-06-28 | unix, stmhal: Add option for STR_UNICODE to mpconfigport.h. | Damien George | |
| Unicode is disabled by default for now, since FileIO.read(n) is currently not implemented for text-mode files, and this is an often function. | |||
| 2014-06-27 | py: Move stack_ctrl_init() to mp_init(). | Paul Sokolovsky | |
| As stack checking is enabled by default, ports which don't call stack_ctrl_init() are broken now (report RuntimeError on startup). Save them trouble and just init stack control framework in interpreter init. | |||
| 2014-06-27 | Change MCU name config micro | mux | |
| 2014-06-27 | Merge pull request #703 from iabdalkader/micro_names | Paul Sokolovsky | |
| Add MICROPY_HW_MICRO_NAME to boards config | |||
| 2014-06-27 | stmhal: Use stackctrl framework. | Paul Sokolovsky | |
| 2014-06-25 | Use mp_const_none to initialize mapper and map_dict | Dave Hylands | |
| 2014-06-21 | Add NORETURN to __fatal_error | mux | |
| 2014-06-21 | Fix asser_func warning/error | mux | |
| * Add while(1) to assert_func to avoid func returns warning * Define a weak attr in mpconfig.h | |||
| 2014-06-20 | Merge pull request #707 from eblot/master-v1.1.1-build-fixes | Paul Sokolovsky | |
| Fix missing declaration of assert() Replace ARRAY_SIZE with MP_ARRAY_SIZE | |||
| 2014-06-19 | Prefix ARRAY_SIZE with micropython prefix MP_ | Emmanuel Blot | |
| 2014-06-19 | Add MICROPY_HW_MICRO_NAME to boards config | mux | |
| 2014-06-18 | bare-arm, stmhal, teensy: Duplicate -nostdlib to CFLAGS | Sven Wegener | |
| As we are building with -nostdlib gcc features like the stack protector will fail linking, because the failure handlers are in gcc's internal libs. Such features are implicitly disabled during compilation when -nostdlib is used in CFLAGS too. Signed-off-by: Sven Wegener <sven.wegener@stealer.net> | |||
| 2014-06-18 | bare-arm, stmhal: Fix --nostdlib to -nostdlib | Sven Wegener | |
| -nostdlib is the correct option, gcc recognizes the double dash version when in link-only mode, but not when compiling. Signed-off-by: Sven Wegener <sven.wegener@stealer.net> | |||
| 2014-06-17 | Merge pull request #698 from dhylands/adc-fix | Damien George | |
| Fix problem with ADC reads and multiple channels | |||
| 2014-06-17 | stmhal: Toggle LED using ODR ^= pin_mask. | Damien George | |
| 2014-06-16 | Fix problem with ADC reads and multiple channels | Dave Hylands | |
| 2014-06-15 | stmhal: Add Python function to set UART for REPL. | Damien George | |
| This adds a hook to get/set pyb_uart_global_debug from Python, using pyb.repl_uart(). You can set it to an arbitrary UART object, and then the REPL (in and out) is repeated on this UART object (as well as on USB CDC). Ultimately, this will be replaced with a proper Pythonic interface to set sys.stdin and sys.stdout. | |||
| 2014-06-15 | stmhal: Fix type signatures on functions that take variable args. | Damien George | |
| 2014-06-15 | stmhal: Fix file print methods to use print instead of printf. | Damien George | |
| Also make stdout_print_strn static (ultimately this function needs to be merged with stdout_tx_strn). | |||
| 2014-06-15 | stmhal: Update and improve LCD driver. | Damien George | |
| Still some method names to iron out, and funtionality to add, but this will do for the first, basic version. | |||
| 2014-06-14 | Make __assert_func weak | mux | |
| 2014-06-14 | Add __assert_func only if DEBUG=1 | mux | |
| 2014-06-14 | Add __assert_func | mux | |
| * issue #692 | |||
| 2014-06-11 | stmhal, file: Seek to end of file if opened in 'a' mode. | Damien George | |
| 2014-06-11 | stmhal, file: Implement a,x,+ open modes, seek and tell. | Damien George | |
| Also now returns correct POSIX errno when an IO operation fails. Addresses issues #516 and #676. | |||
| 2014-06-08 | stmhal: Fix pyb.bootloader so it works for gcc-4.9.0. | Damien George | |
| See PR #618. | |||
| 2014-06-08 | Provide definition of alloca() in mpconfigport.h. | Damien George | |
| 2014-06-03 | Merge branch 'master' of https://github.com/micropython/micropython | bvernoux | |
| 2014-06-03 | Cleanup/removed specific stuff specific to HydraBus (except board). | bvernoux | |
| 2014-06-02 | Add missing commas to stm32f4xx-af.csv | Dave Hylands | |
| 2014-06-02 | micropython port for HydraBus | bvernoux | |
| 2014-06-01 | stmhal: Document pyb.Accel() constructor, that it takes time to start. | Damien George | |
| 2014-06-01 | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George | |
| This renames: MICROPY_PY_FROZENSET -> MICROPY_PY_BUILTINS_FROZENSET MICROPY_PY_PROPERTY -> MICROPY_PY_BUILTINS_PROPERTY MICROPY_PY_SLICE -> MICROPY_PY_BUILTINS_SLICE MICROPY_ENABLE_FLOAT -> MICROPY_PY_BUILTINS_FLOAT See issue #35 for discussion. | |||
| 2014-05-30 | Add a comma to make the .csv look proper in github | Dave Hylands | |
| 2014-05-25 | Change const byte* to const char* where sensible. | Damien George | |
| This removes need for some casts (at least, more than it adds need for new casts!). | |||
| 2014-05-24 | Add SystemExit exception and use it in unix/ and stmhal/ ports. | Damien George | |
| Addresses issue #598. | |||
| 2014-05-24 | Rename configuration variables controling Python features. | Damien George | |
| Now of the form MICROPY_PY_*. See issue #35. | |||
| 2014-05-21 | Tidy up some configuration options. | Damien George | |
| MP_ALLOC_* -> MICROPY_ALLOC_* MICROPY_PATH_MAX -> MICROPY_ALLOC_PATH_MAX MICROPY_ENABLE_REPL_HELPERS -> MICROPY_HELPER_REPL MICROPY_ENABLE_LEXER_UNIX -> MICROPY_HELPER_LEXER_UNIX MICROPY_EXTRA_* -> MICROPY_PORT_* See issue #35. | |||
| 2014-05-21 | py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL. | Damien George | |
| See issue #608 for justification. | |||
| 2014-05-21 | stmhal: Stop USB before entering DFU by software. | Damien George | |
| 2014-05-19 | py: Implement proper separation between io.FileIO and io.TextIOWrapper. | Paul Sokolovsky | |
| io.FileIO is binary I/O, ans actually optional. Default file type is io.TextIOWrapper, which provides str results. CPython3 explicitly describes io.TextIOWrapper as buffered I/O, but we don't have buffering support yet anyway. | |||
| 2014-05-19 | stmhal: Fix DAC documentation: need to convert float to int for buf. | Damien George | |
| 2014-05-19 | stmhal: Fix write_timed function for DAC(2). | Damien George | |
| Addresses issue #617. | |||
| 2014-05-19 | stmhal: Make pyb.bootloader take no arguments. | Damien George | |
| 2014-05-18 | stmhal: Remap system flash and adjust addresses | Sven Wegener | |
| Signed-off-by: Sven Wegener <sven.wegener@stealer.net> | |||
| 2014-05-18 | stmhal: Activate bootloader with pyb.bootloader() | Sven Wegener | |
| Signed-off-by: Sven Wegener <sven.wegener@stealer.net> | |||
| 2014-05-11 | py: Rename MICROPY_SYS_EXIT to MICROPY_MOD_SYS_EXIT. | Damien George | |
| For consistency with MICROPY_MOD_SYS_STDFILES, etc. | |||
