summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-16cc3200: Replace Pin.PULL_NONE with None.Daniel Campora
2015-09-16docs: Update I2C and UART docs to match the new API.Daniel Campora
2015-09-16cc3200: Default peripheral ID support on I2C.Daniel Campora
2015-09-16cc3200: Increase error led blynk period to 100msDaniel Campora
2015-09-16cc3200: Keep overwriting the same image on sequential updates.Daniel Campora
2015-09-16cc3200: Make UART choose default id when not given.Daniel Campora
2015-09-16cc3200: Reduce servers cycle time to improve FTP transfer rate.Daniel Campora
2015-09-16unix/modjni: Add env() module function.Paul Sokolovsky
Useful to load native method libraries not loaded by VM (as happens on Android).
2015-09-15py/objslice: Fix indent.Tom Soulanille
2015-09-15py/objslice: Make slice attributes (start/stop/step) readable.Tom Soulanille
Configurable with MICROPY_PY_BUILTINS_SLICE_ATTRS. Disabled by default.
2015-09-15stmhal: Use polling, not DMA, for 1 byte SPI transfers.Damien George
There is an issue sending 1 byte on the SPI bus using DMA, but it only occurs when the transmit is done for the first time after initialising the SPI and DMA peripherals. All other cases (sending 2 or more bytes, doing send_recv, doing recv first) work okay. We sidestep this issue by using polling (not DMA) for all 1 byte transfers. This is fine because a 1 byte transfer can't be interrupted and doesn't need the benefits of DMA (and using polling for this case is more efficient). Resolves #1456.
2015-09-15esp8266: Added wlan.isconnected() to maintain parity with other ports.Bill Owens
2015-09-15tests/README: Explain how tests get skippedTom Soulanille
2015-09-15pic16bit: Add basic unistd.h file since it's not provided by tool chain.Damien George
2015-09-15py/mpz: Fix calculation of max digit storage for mpz; fix sys.maxsize.Damien George
When creating constant mpz's, the length of the mpz must be exactly how many digits are used (not allocated) otherwise these numbers are not compatible with dynamically allocated numbers. Addresses issue #1448.
2015-09-15unix/modjni: Return any object type value as a jobject.Paul Sokolovsky
2015-09-14unix/modjni: Return Java null as Python None.Paul Sokolovsky
2015-09-14unix/modjni: Support static methods.Paul Sokolovsky
2015-09-13tools: Upgrade upip to 0.5.8.Paul Sokolovsky
Adds support for ussl module (which is experimental and not fully implemented yet itself).
2015-09-13unix/modjni: Factor out new_jobject(), jvalue2py() functions.Paul Sokolovsky
2015-09-12stmhal: Add "opt" arg to pyb.main, to set mp_optimise_value.Tom Soulanille
Use this to set the global optimisation value when executing the main script (and all scripts it imports).
2015-09-12esp8266: Remove "time" command from deploy target.Damien George
2015-09-12unix: Enable REPL auto-indent.Damien George
2015-09-12lib/mp-readline: Add auto-indent support.Damien George
4 spaces are added at start of line to match previous indent, and if previous line ended in colon. Backspace deletes 4 space if only spaces begin a line. Configurable via MICROPY_REPL_AUTO_INDENT. Disabled by default.
2015-09-12unix/modjni: Factor out py2jvalue() function.Paul Sokolovsky
2015-09-11stmhal: fix single precision float printing errorDave Hylands
Fixes #1435.
2015-09-11unix/modjni: "jni" module to interface to JNI-compliant JavaVM.Paul Sokolovsky
This includes Android Dalvik VM for example. Example usage: import jni System = jni.cls("java/lang/System") System.out.println("Hello, Java!")
2015-09-10tests/wipy: Add I2C tests.Daniel Campora
2015-09-10tests/wipy: Disable the REPL on UART before running the UART test.Daniel Campora
2015-09-10cc3200: Disable some uPy features in debug mode to help code fit.Daniel Campora
2015-09-10cc3200: Add SDcard pin af on index 8.Daniel Campora
2015-09-10tests/wipy: Additional tests for when the UART is un-initialized.Daniel Campora
2015-09-10cc3200: New I2C API.Daniel Campora
2015-09-10cc3200: Refactor pin af assigment functions.Daniel Campora
2015-09-10cc3200: Improve file system check routine.Daniel Campora
2015-09-10cc3200: Improve Pin and UART implementation.Daniel Campora
Deassign pins af before assigning. Make uart.any() return the correct value everytime, this requires interrupts to be always enabled.
2015-09-10cc3200: Remove I2C inline documentation (sphinx is on the lead).Daniel Campora
2015-09-10tests/wipy: Improve UART tests with no pin assignment case.Daniel Campora
2015-09-10tests: Ignore exception chain test on the WiPy.Daniel Campora
Fails because warnings are not enabled on the CC3200.
2015-09-10cc3200: New UART API plus related test.Daniel Campora
2015-09-10cc3200: Add alternate functions list to Pin object.Daniel Campora
Also remove pin.high() and pin.low() methods.
2015-09-10cc3200: Re-work Pin class according to the new API.Daniel Campora
Also add relevant test.
2015-09-10cc3200: Add mphal error to raise hardware related exceptions.Daniel Campora
2015-09-10cc3200: Fix bug in pybsleep remove.Daniel Campora
2015-09-10cc3200: Add alt param to Pin constructor.Daniel Campora
2015-09-10cc3200: Adapt smoke.py for the new pin API.Daniel Campora
2015-09-10cc3200: Implement new Pin API.Daniel Campora
2015-09-10cc3200: Improve uniflash script and make it a bit more verbose.Daniel Campora
2015-09-10cc3200: Remove the UART0 programming pins from the smoke test.Daniel Campora
2015-09-07tests: Move int+unicode test to unicode-specific test directory.Damien George