aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2015-07-15cc3200: Implement new OTA mechanism with 2 firmware update slots.Daniel Campora
2015-07-08docs: Update pyb.Accel doc to reflect changes and explain filtered_xyz.Damien George
2015-07-02cc3200: time.sleep() now receives seconds, like CPython.Daniel Campora
2015-06-30docs/wipy: Update safe boot comments to match actual behaviour.Daniel Campora
2015-06-28cc3200: Add `Pin.name()` method.Daniel Campora
2015-06-27docs: Fix duplicate label error for network.WLAN.Damien George
2015-06-27docs: Make index link point to "index.html" irrespective of port.Damien George
2015-06-26docs: Add link from pyboard asm tutorial to asm reference.Damien George
2015-06-25docs: Add link in references index to Thumb2 assembler docs.Damien George
2015-06-25docs: Add reference for Thumb2 inline assembler.Damien George
Thanks to Peter Hinch for contributing this.
2015-06-25docs: Add "reference" directory for putting docs about the language.Damien George
2015-06-17esp8266: Updated documentation for scan() and moved to networkBill Owens
2015-06-16docs: Add more documentation for the CC3200 in the pyb module.Daniel Campora
2015-06-15docs: Bump version to 1.4.4.Damien George
2015-06-13esp8266: Fix the documentation for esp.connect() and esp.disconnect()Radomir Dopieralski
Since the commit that moved those two functions failed to update the documentation, this is a fix for that.
2015-06-10docs: Add initial draft documentation for the WiPy.Daniel Campora
This makes all common files "port-aware" using the .. only directive.
2015-06-06docs/uctype: Update for constructor argument order changes.Paul Sokolovsky
Also, other small cleanups/improvements.
2015-06-04docs: Change "Micro Python" to "MicroPython" in all places in docs.Damien George
2015-06-04docs: Update license date range to include 2015.Damien George
2015-06-04docs: Generate a separate docs build for each port.Daniel Campora
Using Damien's approach where conf.py and topindex.html are shared by all ports.
2015-06-02docs/uctypes: Typo fix.Paul Sokolovsky
2015-06-02docs/uctypes: Fix API description errors.Paul Sokolovsky
"Structure class" is its descriptor, encoded as a dictionary. Then, uctypes.struct() instantiates an actual object, and thus requires memory address.
2015-05-30docs: Document esp module for ESP8266.Radomir Dopieralski
I document as much as I could guess from experiments and reading the code for the ``esp`` module for the ESP8266 port of Micropython. For now the tag has to be set manually with -t option when building, when we have properly split documentation, there will be a separate config file for esp8266 with that the tag "port_esp8266" set. To build use: make SPHINXOPTS="-t port_esp8266" html
2015-05-20extmod: Add ubinascii.unhexlifyDave Hylands
This also pulls out hex_digit from py/lexer.c and makes unichar_hex_digit
2015-05-16docs: Bump version to 1.4.3.Damien George
2015-05-13docs: Document USB_VCP file-like methods.Damien George
2015-05-12stmhal: Add os.rename function.Steve Zatz
2015-05-11sthmal/rtc.c: Add calibration() method to get/set RTC fine-tuning value.blmorris
2015-04-21docs: Document pyb.stop, pyb.standby and pyb.RTC.wakeup.Damien George
2015-04-21docs: Bump version to 1.4.2.Damien George
2015-04-18stmhal: Add support for sending and receiving CAN RTR messages.Henrik
2015-04-16stmhal: Allow sending CAN messages with timeout=0.Damien George
Thanks to Henrik Sölver for this patch.
2015-04-16Add .gitattributes file to force text line endings to LF.Damien George
Some files are excluded, otherwise a whole lot of files need converting.
2015-04-09docs: Document pyb.main function to set main script.Damien George
2015-04-04docs: Bump version to 1.4.1.Damien George
2015-03-31docs: uctypes: Bullet list formatting fixes.Paul Sokolovsky
2015-03-31docs: uctypes: Describe how to instantiate struct objects.Paul Sokolovsky
2015-03-30docs: Add additional example/note for Timer's callback usage.Ivan Pejić
Add example: using named function for the Timer's callback. Add note: improving traceback inside interrupt timers.
2015-03-30docs: Provide initial documentation for micropython module.Damien George
2015-03-29docs: Bump version to 1.4.Damien George
2015-03-27docs: uctypes: Describe bytes_at(), bytearray_at().Paul Sokolovsky
2015-03-24docs: uctypes: Describe couple more functions.Paul Sokolovsky
2015-03-09stmhal: Add support for quadrature encoder mode to pyb.TimerChannel.Dave Hylands
2015-03-09docs: Update pyb.Timer.rst to fix pulse widths that exceed the period.Peter Hinch
2015-02-23docs: Correct the documentation for math.frexp.Damien George
2015-02-23docs: Update timer tutorial to reflect new behaviour of timer.Damien George
2015-02-22pyb.UART.rst: Clean up note about stream protocol support.Paul Sokolovsky
2015-02-22stmhal: For UART, check that baudrate is within 5% of desired value.Damien George
Also includes documentation about minimum baudrate. Addresses issue #1090.
2015-02-15stmhal: Add support for CAN rx callbacks.Henrik Sölver
2015-02-13stmhal: Add uart.sendbreak() method, to send a break condition.Damien George