aboutsummaryrefslogtreecommitdiff
path: root/stmhal
AgeCommit message (Expand)Author
2014-04-19Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-19stmhal: Add pyb.Pin.init method to re-init GPIO pin mode.Damien George
2014-04-19stmhal: Improve RTC class; make fatfs use RTC for time stamping files.Damien George
2014-04-19stmhal: Add pyb.unique_id, to get unique id of MCU.Damien George
2014-04-19stmhal: Update for mp_binary_get_size() refactor.Paul Sokolovsky
2014-04-19stmhal: Rename pyb.Led to pyb.LED to conform to naming rules.Damien George
2014-04-19stmhal: Remove pyb.input (use sys.stdio.read(1) instead).Damien George
2014-04-19stmhal: Add lots of constants to stm module.Damien George
2014-04-18stmhal: Update ADC, DAC and I2C objects to use new buffer protocol.Damien George
2014-04-18stmhal: Update help and comments re gpio changing to Pin.Damien George
2014-04-18stmhal: Big cleanup; merge gpio into Pin; make names consistent.Damien George
2014-04-18stmhal: Remove non-ascii character from include file.Damien George
2014-04-17py: Rename USE_COMPUTED_GOTOS to USE_COMPUTED_GOTO and enable on stmhal.Damien George
2014-04-17py: Fix pfenv_print_strn to return correct number of chars printed.Damien George
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-04-17Merge branch 'relocatable-build-dir' of github.com:lurch/micropython into lur...Damien George
2014-04-17Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-04-17stmhal: Clean up fatality indications; remove long-obsolete malloc0.c.Damien George
2014-04-17stmhal: Change VID to 0xf055=FOSS, and PID to a random number.Damien George
2014-04-17Merge pull request #500 from dhylands/fix-sdcard-removedDamien George
2014-04-17stmhal: Add more math functions.Damien George
2014-04-17stmhal: Fix 64-byte USB packet bug properly.Damien George
2014-04-16stmhal: Replace magic number 3 with CDC_IN_EP define.Damien George
2014-04-16stmhal: Improve flash storage cache management.Damien George
2014-04-16build directory can now be renamedAndrew Scheller
2014-04-16Fix to allow usbd_msc_storage.c to compile when MICROPY_HW_HAS_SDCARD isn't d...Dave Hylands
2014-04-16stmhal: Add pyb.have_cdc function to check if USB CDC device is enabled.Damien George
2014-04-16stmhal: Fix USB CDC buffer overrun error.Damien George
2014-04-16Merge pull request #498 from lurch/create-headers-from-filesDamien George
2014-04-16stmhal: Fix C bindings of I2C.read/write.Damien George
2014-04-16Auto-generate the stmhal/pybcdc_inf header file from static filesAndrew Scheller
2014-04-16stmhal: Add I2C functions for pure master read/write.Damien George
2014-04-15Merge pull request #496 from dhylands/fix-debug-usartDamien George
2014-04-15Fix call to enable pyb_usart_global_debug.Dave Hylands
2014-04-15stmhal: Fix USB MSC so that it unmounts correctly on Mac OS X.Damien George
2014-04-15stmhal: Add ADC function to read data at a given frequency.Damien George
2014-04-15stmhal: Add I2C.scan method, to scan all devices on the bus.Damien George
2014-04-15stmhal: Add simple README.txt to freshly-created filesystem.Damien George
2014-04-15stmhal: Wrap skin-named-usarts in PYBV10 #if.Damien George
2014-04-14stmhal: Work around crazy bug in USB CDC.Damien George
2014-04-14stmhal: Improved usart module a bit.Damien George
2014-04-14stmhal: Add pyb.wfi() function (calls __WFI).Damien George
2014-04-13stmhal: Add stdin/stdout/stderr objects.Damien George
2014-04-13stmhal: Improve USB CDC write function (increase timeout).Damien George
2014-04-13py: Fix up source-line calculation.Damien George
2014-04-13stm[hal]: Init mp_sys_path and mp_sys_argv correctly.Damien George
2014-04-13Merge pull request #476 from pfalcon/static-sysDamien George
2014-04-13py: Fix mp_get_buffer, and use it in more places.Damien George
2014-04-13stmhal: Little hack to dump GC allocation table using pyb.info().Damien George
2014-04-13stmhal: Update for static mod sys.Paul Sokolovsky