summaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAge
* objint_longlong: Add regression test for improper inplace op implementation.Paul Sokolovsky2014-03-22
|
* Disable some math functions until they work correctly.Damien George2014-03-21
|
* py: Put back proper ValueError for badly parsed integers.Damien George2014-03-21
|
* py: Make str.[r]partition more efficient.Damien George2014-03-21
|
* Merge pull request #351 from xbe/str-partitionDamien George2014-03-21
|\ | | | | Implement str.partition and add tests for it.
| * str.(r)partition: factor out duplicate code.xbe2014-03-21
| | | | | | | | | | Switch str.rpartition to search from left to right. Factor the duplicate code into one helper function.
| * Implement str.rpartition and add tests for it.xbe2014-03-21
| |
| * Implement str.partition and add tests for it.xbe2014-03-21
| |
* | py: Improve mp_parse_num_integer; make it self contained.Damien George2014-03-21
| |
* | py: Allow 'complex()' to take a string as first argument.Damien George2014-03-21
| |
* | py: Implement parsing of infinity and nan for floats.Damien George2014-03-21
| |
* | Rename test so that it doesn't clash with Python math module.Damien George2014-03-20
| |
* | Merge branch 'master' of github.com:micropython/micropythonDamien George2014-03-20
|\ \
| * \ Merge pull request #353 from rjdowdall/masterDamien George2014-03-20
| |\ \ | | | | | | | | Some math functions
| | * | Added various simple functions to math module.Rachel Dowdall2014-03-20
| | | |
| | * | Added various simple functions to math module.Rachel Dowdall2014-03-20
| |/ /
* / / stmhal: Add accelerometer driver; fix bug with LFN.Damien George2014-03-20
|/ /
* | py: Fix int-longlong binary operations.Damien George2014-03-20
| |
* | py: Allow hashing of functions and tuples.Damien George2014-03-20
| |
* | py: Add math.e constant.Damien George2014-03-20
| |
* | py: Add mpz modulo operation.Damien George2014-03-20
|/
* py: Add comment about bugs in objint_longlong.c.Damien George2014-03-19
|
* py: Fix bug in mpz int, where small int is on lhs, mpz on rhs.Damien George2014-03-19
|
* stmhal: Add lcd.c to Makefile, and init LCD in main.Damien George2014-03-19
|
* stmhal: Add LCD driver.Damien George2014-03-19
|
* stmhal: Add fatfs support, working with flash and SD card.Damien George2014-03-17
|
* stmhal: Add flash write support and flash storage driver.Damien George2014-03-17
|
* stmhal: Add autoflash script, to flash a DFU device automatically.Damien George2014-03-17
|
* stmhal: Add SD card support.Damien George2014-03-17
| | | | Just low-level read/write support. No filesystem yet.
* Merge branch 'master' of github.com:xbe/micropythonDamien George2014-03-17
|\
| * objstr.c: Replace size_t with machine_uint_t.xbe2014-03-17
| |
| * py: Clean up includes.xbe2014-03-17
| | | | | | | | Remove unnecessary includes. Add includes that improve portability.
| * unix: Clean up includes.xbe2014-03-16
| | | | | | | | Remove unnecessary includes. Add includes that improve portability.
* | stmhal: Remove unnecessary include.Damien George2014-03-17
| |
* | Merge pull request #347 from dhylands/stmhal-usartDamien George2014-03-17
|\ \ | |/ |/| stmhal - Add usart support
| * stmhal - Add usart supportDave Hylands2014-03-16
| |
* | Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky2014-03-16
| |
* | unix-cpy: Switch to use MICROPY_FLOAT_IMPL config define.Paul Sokolovsky2014-03-16
|/
* stmhal: Check CDC tx buffer has free space before filling with data.Damien George2014-03-15
|
* py: Fix bug in vstr_ins_blank_bytes.Damien George2014-03-15
|
* stmhal: Put an array in ROM.Damien George2014-03-15
|
* stmhal: Disable redundant SystemCoreClockUpdate function.Damien George2014-03-15
|
* Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George2014-03-15
|
* stmhal: Get RTC working.Damien George2014-03-15
|
* stmhal: Fix escape sequences in USB CDC input.Damien George2014-03-15
|
* stmhal: Get USB CDC REPL working.Damien George2014-03-15
| | | | | | | | New USB HAL is quite a bit improved over previous one. Now has better callbacks and flow control. REPL over USB CDC now works as before, except for soft-reset (since USB driver uses malloc...).
* stmhal: Remove obsolete #defines from mpconfigport.h.Damien George2014-03-15
| | | | Either not needed anymore, or defined in the board/_hal_conf.h file.
* Merge pull request #346 from dhylands/stmhal-ledDamien George2014-03-15
|\ | | | | stmhal - add led support. Add netduino_plus_2 support
| * stmhal - add pin mapping, gpio, exti, usrswDave Hylands2014-03-14
| |
| * stmhal - add led support. Add netduino_plus_2 supportDave Hylands2014-03-14
|/ | | | | Tweaked a couple of the USB files to compile if neither dev nor host was defined. Tested on netduiono plus 2 and stm32f4discovery boards