aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-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
2014-03-15stmhal: Put an array in ROM.Damien George
2014-03-15stmhal: Disable redundant SystemCoreClockUpdate function.Damien George
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-03-15stmhal: Get RTC working.Damien George
2014-03-15stmhal: Fix escape sequences in USB CDC input.Damien George
2014-03-15stmhal: Get USB CDC REPL working.Damien George
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...).
2014-03-15stmhal: Remove obsolete #defines from mpconfigport.h.Damien George
Either not needed anymore, or defined in the board/_hal_conf.h file.
2014-03-15Merge pull request #346 from dhylands/stmhal-ledDamien George
stmhal - add led support. Add netduino_plus_2 support
2014-03-14stmhal - add pin mapping, gpio, exti, usrswDave Hylands
2014-03-14stmhal - add led support. Add netduino_plus_2 supportDave Hylands
Tweaked a couple of the USB files to compile if neither dev nor host was defined. Tested on netduiono plus 2 and stm32f4discovery boards
2014-03-14Merge branch 'master' of github.com:micropython/micropythonDamien George
Conflicts: stmhal/main.c
2014-03-14stmhal: Get USB enumerating a CDC device.Damien George
Enumerates CDC device over USB, but doesn't transmit/receive yet.
2014-03-14Merge pull request #345 from dhylands/stmhal-systick-cleanupDamien George
stmhal - More systick cleanup. Fix HAL_Delay
2014-03-13stmhal - More systick cleanup. Fix HAL_DelayDave Hylands
2014-03-13py: In string.count, handle case of zero-length needle.Damien George
2014-03-13Merge pull request #343 from xbe/masterDamien George
Implement str.count and add tests for it.
2014-03-13Merge pull request #344 from dhylands/stmhal-systick-cleanupDamien George
Cleanup systick for stmhal
2014-03-13Cleanup systick for stmhalDave Hylands
2014-03-13Merge pull request #342 from dhylands/stmhal-replDamien George
REPL working on UART6 with STMHAL