summaryrefslogtreecommitdiffstatshomepage
path: root/docs
Commit message (Collapse)AuthorAge
* docs: Fix a typo in the REPL documentation.Dave Hylands2015-11-10
|
* docs/select: Document POLLIN/OUT/ERR/HUP.Paul Sokolovsky2015-11-09
|
* lib/mp-readline: Make it easy to exit auto-indent mode by pressing enter.Damien George2015-11-07
| | | | | | This patch allows you to stop auto-indent by pressing enter on a second blank line. Easier than having to use backspace, and prevents new users from getting stuck in auto-indent mode.
* docs: Add docs about REPL paste-mode and Control-CDave Hylands2015-11-03
|
* docs: Move instructions on generating the documentation to docs/README.mdDave Hylands2015-11-03
|
* docs/library/index.rst: Minimally adapt for unix port.Paul Sokolovsky2015-10-31
|
* docs: Actually add unix port indexes, so docs for it could be generated.Paul Sokolovsky2015-10-31
|
* docs: select: Describe poll.poll() return value in detail.Paul Sokolovsky2015-10-29
|
* docs/wipy: Fix bug in example code and add note regarding OTA.danicampora2015-10-26
|
* docs/wipy: Fix several typos and change some pyboard to WiPy.Martijn Koster2015-10-26
|
* docs/wipy: Fix several typos.Martijn Koster2015-10-25
|
* docs/wipy: Fix error in WLAN quickref.danicampora2015-10-25
|
* docs: USB_VCP: Always in non-blocking mode, clarify stream method returns.Paul Sokolovsky2015-10-25
| | | | They return None if no data available.
* docs: Explicitly specify behavior of UART stream protocol methods on timeout.Paul Sokolovsky2015-10-25
|
* docs: Correct machine.RTC examples.danicampora2015-10-22
|
* docs: Fix typos on wipy docs.danicampora2015-10-22
|
* docs/wipy: Correct typo in safe boot description.danicampora2015-10-22
|
* docs/wipy: Remove windows instructions that refer to the pyboard.danicampora2015-10-21
|
* docs: Add remark about ssl sockets and standard sockets.danicampora2015-10-21
|
* docs: Bump version to 1.5.v1.5Damien George2015-10-21
|
* docs/wipy: Fix formatting indentation.danicampora2015-10-21
|
* docs/wipy: Remove incorrect references to usb configuration.danicampora2015-10-21
|
* docs/wipy: Add more tutorials and examples.danicampora2015-10-21
|
* docs: Remove remaining references to 'af', which is now 'alt'.danicampora2015-10-21
|
* docs: Several corrections to the classes in the machine module.danicampora2015-10-21
|
* docs: Add usocket and ussl modules' documentation.danicampora2015-10-21
|
* cc3200: WLAN class can retrieve the existing instance.danicampora2015-10-19
|
* docs/wipy: Add wipy tutorials section.danicampora2015-10-19
|
* docs: Add wipy and network.server documentation.danicampora2015-10-19
|
* docs: In top index fix machine module link for the WiPy.danicampora2015-10-18
|
* docs: Update all WiPy docs to reflect the new API.danicampora2015-10-17
|
* docs: Fix formatting of DAC code examples.Damien George2015-10-13
|
* stmhal: Allow to set bits resolution for DAC; 8 is default, can have 12.Damien George2015-10-13
| | | | | | | | | | | | | | | | This patch allows to configure the DAC resolution in the constructor and in the init function, eg: dac = DAC(1, bits=12). The default resolution is 8 bits for backwards compatibility. The bits sets the maximum value accepted by write and write_timed methods, being 2**bits - 1. When using write_timed with 12-bit resolution, the input buffer is treated as an unsigned half-word array, typecode 'H'. See PR #1130 for discussion.
* docs: Describe properly how MCU can be woken from pyb.standby() state.Damien George2015-10-10
|
* docs: Update esp8266 documentation to match the code.Radomir Dopieralski2015-10-06
| | | | | | | * Move the esp.status() to network module. * Describe the wifi.isconnected() method. * Describe esp.mac(), esp.wifi_mode(), esp.phy_mode(), esp.sleep_type(), esp.deepsleep(), and esp.flash_id() functions.
* docs: Bump version to 1.4.6.v1.4.6Damien George2015-09-23
|
* cc3200: New SD and RTC API plus os and time modules' extensions.Daniel Campora2015-09-21
|
* docs: Adapt WiPy's ADC doc and quickref to the new API.Daniel Campora2015-09-16
|
* cc3200: New SPI API.Daniel Campora2015-09-16
|
* docs/wipy: Add pins to the I2C constructor.Daniel Campora2015-09-16
|
* cc3200: New WDT API.Daniel Campora2015-09-16
|
* cc3200: Add UART.ODD and UART.EVEN to select parity.Daniel Campora2015-09-16
|
* cc3200: Replace Pin.PULL_NONE with None.Daniel Campora2015-09-16
|
* docs: Update I2C and UART docs to match the new API.Daniel Campora2015-09-16
|
* cc3200: New UART API plus related test.Daniel Campora2015-09-10
|
* cc3200: Add alternate functions list to Pin object.Daniel Campora2015-09-10
| | | | Also remove pin.high() and pin.low() methods.
* cc3200: Re-work Pin class according to the new API.Daniel Campora2015-09-10
| | | | Also add relevant test.
* cc3200: Change HeartBeat period from 5 to 4 seconds.Daniel Campora2015-08-16
|
* cc3200: Rework SD API. Increase heap to avoid malloc failures.Daniel Campora2015-08-16
|
* cc3200: Rename SPI nss param to cs.Daniel Campora2015-08-16
| | | | | The nss param in the pyboard has a different meaning that doesn't apply to the WiPy.