summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-22stmhal: Tidy up USB device configuration. Make it use less RAM.Damien George
2014-03-22Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-22stmhal: USB CDC and MSC device work together.Damien George
2014-03-22showbc: Dump YIELD_FROM.Paul Sokolovsky
2014-03-21Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-21stmhal: Add support for USB MSC device.Damien George
This gives a functioning, independent MSC device.
2014-03-21Merge pull request #355 from pfalcon/str-bytes-typesDamien George
Make str and bytes be proper types
2014-03-22py: Make 'bytes' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22py: Make 'str' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22objstr: Switch from in-object string data to ptr to separate memory area.Paul Sokolovsky
This is pre-requisite for having efficient implementation of str<->bytes conversion, and having that efficient is required with unfortunare str vs bytes dichotomy in Python3.
2014-03-22objint_longlong: Add regression test for improper inplace op implementation.Paul Sokolovsky
2014-03-21Disable some math functions until they work correctly.Damien George
2014-03-21py: Put back proper ValueError for badly parsed integers.Damien George
2014-03-21py: Make str.[r]partition more efficient.Damien George
2014-03-21Merge pull request #351 from xbe/str-partitionDamien George
Implement str.partition and add tests for it.
2014-03-21py: Improve mp_parse_num_integer; make it self contained.Damien George
2014-03-21py: Allow 'complex()' to take a string as first argument.Damien George
2014-03-21py: Implement parsing of infinity and nan for floats.Damien George
2014-03-21str.(r)partition: factor out duplicate code.xbe
Switch str.rpartition to search from left to right. Factor the duplicate code into one helper function.
2014-03-21Implement str.rpartition and add tests for it.xbe
2014-03-21Implement str.partition and add tests for it.xbe
2014-03-20Rename test so that it doesn't clash with Python math module.Damien George
2014-03-20Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-20stmhal: Add accelerometer driver; fix bug with LFN.Damien George
2014-03-20Merge pull request #353 from rjdowdall/masterDamien George
Some math functions
2014-03-20Added various simple functions to math module.Rachel Dowdall
2014-03-20Added various simple functions to math module.Rachel Dowdall
2014-03-20py: Fix int-longlong binary operations.Damien George
2014-03-20py: Allow hashing of functions and tuples.Damien George
2014-03-20py: Add math.e constant.Damien George
2014-03-20py: Add mpz modulo operation.Damien George
2014-03-19py: Add comment about bugs in objint_longlong.c.Damien George
2014-03-19py: Fix bug in mpz int, where small int is on lhs, mpz on rhs.Damien George
2014-03-19stmhal: Add lcd.c to Makefile, and init LCD in main.Damien George
2014-03-19stmhal: Add LCD driver.Damien George
2014-03-17stmhal: Add fatfs support, working with flash and SD card.Damien George
2014-03-17stmhal: Add flash write support and flash storage driver.Damien George
2014-03-17stmhal: Add autoflash script, to flash a DFU device automatically.Damien George
2014-03-17stmhal: Add SD card support.Damien George
Just low-level read/write support. No filesystem yet.
2014-03-17Merge branch 'master' of github.com:xbe/micropythonDamien George
2014-03-17stmhal: Remove unnecessary include.Damien George
2014-03-17Merge pull request #347 from dhylands/stmhal-usartDamien George
stmhal - Add usart support
2014-03-17objstr.c: Replace size_t with machine_uint_t.xbe
2014-03-17py: Clean up includes.xbe
Remove unnecessary includes. Add includes that improve portability.
2014-03-16unix: Clean up includes.xbe
Remove unnecessary includes. Add includes that improve portability.
2014-03-16stmhal - Add usart supportDave Hylands
2014-03-16Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky
2014-03-16unix-cpy: Switch to use MICROPY_FLOAT_IMPL config define.Paul Sokolovsky
2014-03-15stmhal: Check CDC tx buffer has free space before filling with data.Damien George
2014-03-15py: Fix bug in vstr_ins_blank_bytes.Damien George