aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-10-04tests/run-tests: Disable cmdline/cmd_showbc test on Windows.Damien George
2016-10-04stmhal: Fix linker map for STM32L476 chips.Dave Hylands
2016-10-04stmhal/spi: Enable use of fast software SPI.Damien George
2016-10-04extmod/machine_spi: Add optional support for fast software SPI.Damien George
2016-10-04extmod/machine_spi: Use delay_half, not baudrate, for internal timing.Damien George
2016-10-04stmhal/spi: Use software SPI if no periph id given, even if pins given.Damien George
2016-10-03esp8266/moduos: Move stat/statvfs funcs to sit within #if VFS guard.Damien George
2016-10-03stmhal/mphalport: Fix mp_hal_pin_write to use correct pin_mask.Damien George
2016-10-03stmhal/spi: Make machine.SPI class conform to correct API.Damien George
2016-10-03stmhal/mphalport: Implement mp_hal_pin_{input,output,write}.Damien George
2016-10-03extmod/machine_spi: Factor out software SPI code from esp8266 to extmod.Damien George
2016-10-03stmhal/spi: Simplify spi_transfer function to take only one buf len arg.Damien George
2016-10-03extmod/machine_spi: Simplify SPI xfer function to only take one buf len.Damien George
2016-10-01cc3200: Add ssl_version argument to ssl.wrap_socket().daniel
2016-09-30py/objbool: Make a slight simplification of bool constructor.Damien George
2016-09-30py/objbool: Defer bool's unary op implementation to small int.Damien George
2016-09-30py/argcheck: Simplify if-chain so that the last one is the default.Damien George
2016-09-30tests/basics: Add test for printing OSError when errno is unknown.Damien George
2016-09-30lib/cmsis: upgrade CMSIS-CORE to V4.30Krzysztof Blazewicz
2016-09-30lib/cmsis: remove CMSIS-DSP headers, they are unusedKrzysztof Blazewicz
2016-09-30lib/cmsis: move CMSIS headers to lib/Krzysztof Blazewicz
2016-09-30tests/basics: Add test constructing a set from a non-trivial expression.Damien George
2016-09-30tests/import: Add test for compiling "import a.b as c".Damien George
2016-09-30py/compile: Fix typo when checking for parse-node kind.Damien George
2016-09-30tests/basics: Add further tests for nonlocal scoping and closures.Damien George
2016-09-30py/scope: Factor common code to find locals and close over them.Damien George
2016-09-30py/scope: Shrink scope_t struct by 1 machine word.Damien George
2016-09-30py/scope: Use lookup-table to determine a scope's simple name.Damien George
2016-09-29lib/interrupt_char: Factor out typical Ctrl+C handling from esp8266 port.Paul Sokolovsky
2016-09-28stmhal: Remove CMSIS STM32F2xx files, they are unused/unsupported.Damien George
2016-09-28extmod/machine_i2c: Add support for the addrsize parameter in mem xfers.Radomir Dopieralski
2016-09-27stmhal: Add virtual com port support for STM32L476DISC.Nicholas Graumann
2016-09-28py/compile: Fix async-for/async-with to work with simpler exc on stack.Damien George
2016-09-28tests/basics: Add test for set.difference_update with arg being itself.Damien George
2016-09-28py/objset: Ensure that use of frozenset.update raises an exception.Damien George
2016-09-28py/objset: Use mp_check_self() to check args of set/frozenset methods.Damien George
2016-09-27py/objfun: Use if instead of switch to check return value of VM execute.Damien George
2016-09-27py/objfun: Remove unnecessary check for viper fun with 5 or more args.Damien George
2016-09-27stmhal/modmachine: Fix clearing of reset-cause flags.Damien George
2016-09-27py/emitbc: Remove/refactor unreachable code, to improve coverage.Damien George
2016-09-27py/objstr: Remove unreachable function used only for terse error msgs.Damien George
2016-09-27tests/float: Add test for parsing a float from an empty string.Damien George
2016-09-27esp8266: Add uos.statvfs() to get filesystem status.Alex March
2016-09-27tests/extmod/vfs_fat_ramdisk: Add test for VFS.statvfs().Alex March
2016-09-27extmod/vfs_fat: Add fat_vfs_statvfs(), reused from stmhal.Alex March
2016-09-27py/modmicropython: Add micropython.const, alias for identity function.Damien George
2016-09-27tests/cmdline/cmd_showbc: Fix test now that 1 value is stored on stack.Damien George
2016-09-27py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object.Damien George
2016-09-27tests/micropython: Add tests for const names being replaced in parser.Damien George
2016-09-27tests/basics: Add test case for overflowing Py stack in try-finally.Damien George