| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-08-16 | cc3200: Change HeartBeat period from 5 to 4 seconds. | Daniel Campora | |
| 2015-08-16 | cc3200: Rework SD API. Increase heap to avoid malloc failures. | Daniel Campora | |
| 2015-08-16 | cc3200: Rename SPI nss param to cs. | Daniel Campora | |
| The nss param in the pyboard has a different meaning that doesn't apply to the WiPy. | |||
| 2015-08-16 | cc3200: Improve callback API. | Daniel Campora | |
| Rename "wakes" param to "wake_from" and make "value" an object instead of an integer. | |||
| 2015-08-11 | docs: Bump version to 1.4.5. | Damien George | |
| 2015-08-10 | cc3200: Make ADC API compatible with the pyboard. | Daniel Campora | |
| 2015-08-09 | cc3200: Enable bootloader safe boot on latest firmware. | Daniel Campora | |
| The first safe boot level executes the latest firmware but skips 'main.py' and 'boot.py'. | |||
| 2015-08-09 | cc3200: Improve support for WEP security. | Daniel Campora | |
| Key is always entered as a string, but if security is WEP, the key is converted automatically to hex before connecting or configuring the device as an AP. | |||
| 2015-08-09 | docs: Add i2c keywork arguments only indication. | Daniel Campora | |
| 2015-08-09 | cc3200: Add nic.iwconfig() to set/get WLAN configuration. | Daniel Campora | |
| Changes are based on this post: https://github.com/micropython/micropython/issues/876#issuecomment-115255551 The constructor can optionally take the same params of iwconfig in order to configure WiFi when creating the object. Params are keyworkd only. The WiPy accepts: - mode (int -> WLAN.AP or WLAN.STA) - ssdi (string) - security (int -> WLAN.OPEN, WLAN.WEP, WLAN.WPA, WLAN.WPA2) - key (string) - channel (int (1-11)) - antenna (int -> WLAN.INTERNAL, WLAN.EXTERNAL) | |||
| 2015-08-02 | cc3200: Make I2C and SPI API the same as in stmhal. | Daniel Campora | |
| 2015-07-30 | cc3200: Append last 2 bytes of the MAC address to the default SSID. | Daniel Campora | |
| 2015-07-30 | docs/wipy: Correct nic.ifconfig() quickref example. | Daniel Campora | |
| 2015-07-30 | cc3200: Rename pins from GPIO to just GP. | Daniel Campora | |
| This is how the names will be printed on the sticker that goes on top of the EMI shield. The shorter names also help saving a few bytes of RAM and ROM. | |||
| 2015-07-22 | stmhal: Allow ADC.read_timed to take Timer object in place of freq. | Damien George | |
| This allows a user-specified Timer for the triggering of the ADC read, mirroring the new behaviour of DAC.write_timed. Addresses issue #1129. | |||
| 2015-07-21 | stmhal: Allow DAC.write_timed to take Timer object in place of freq. | Damien George | |
| This allows the DAC to use a user-specified Timer for the triggering (instead of the default Timer(6)), while still supporting original behaviour. Addresses issues #1129 and #1388. | |||
| 2015-07-15 | cc3200: Implement new OTA mechanism with 2 firmware update slots. | Daniel Campora | |
| 2015-07-08 | docs: Update pyb.Accel doc to reflect changes and explain filtered_xyz. | Damien George | |
| 2015-07-02 | cc3200: time.sleep() now receives seconds, like CPython. | Daniel Campora | |
| 2015-06-30 | docs/wipy: Update safe boot comments to match actual behaviour. | Daniel Campora | |
| 2015-06-28 | cc3200: Add `Pin.name()` method. | Daniel Campora | |
| 2015-06-27 | docs: Fix duplicate label error for network.WLAN. | Damien George | |
| 2015-06-27 | docs: Make index link point to "index.html" irrespective of port. | Damien George | |
| 2015-06-26 | docs: Add link from pyboard asm tutorial to asm reference. | Damien George | |
| 2015-06-25 | docs: Add link in references index to Thumb2 assembler docs. | Damien George | |
| 2015-06-25 | docs: Add reference for Thumb2 inline assembler. | Damien George | |
| Thanks to Peter Hinch for contributing this. | |||
| 2015-06-25 | docs: Add "reference" directory for putting docs about the language. | Damien George | |
| 2015-06-17 | esp8266: Updated documentation for scan() and moved to network | Bill Owens | |
| 2015-06-16 | docs: Add more documentation for the CC3200 in the pyb module. | Daniel Campora | |
| 2015-06-15 | docs: Bump version to 1.4.4. | Damien George | |
| 2015-06-13 | esp8266: 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-10 | docs: Add initial draft documentation for the WiPy. | Daniel Campora | |
| This makes all common files "port-aware" using the .. only directive. | |||
| 2015-06-06 | docs/uctype: Update for constructor argument order changes. | Paul Sokolovsky | |
| Also, other small cleanups/improvements. | |||
| 2015-06-04 | docs: Change "Micro Python" to "MicroPython" in all places in docs. | Damien George | |
| 2015-06-04 | docs: Update license date range to include 2015. | Damien George | |
| 2015-06-04 | docs: 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-02 | docs/uctypes: Typo fix. | Paul Sokolovsky | |
| 2015-06-02 | docs/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-30 | docs: 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-20 | extmod: Add ubinascii.unhexlify | Dave Hylands | |
| This also pulls out hex_digit from py/lexer.c and makes unichar_hex_digit | |||
| 2015-05-16 | docs: Bump version to 1.4.3. | Damien George | |
| 2015-05-13 | docs: Document USB_VCP file-like methods. | Damien George | |
| 2015-05-12 | stmhal: Add os.rename function. | Steve Zatz | |
| 2015-05-11 | sthmal/rtc.c: Add calibration() method to get/set RTC fine-tuning value. | blmorris | |
| 2015-04-21 | docs: Document pyb.stop, pyb.standby and pyb.RTC.wakeup. | Damien George | |
| 2015-04-21 | docs: Bump version to 1.4.2. | Damien George | |
| 2015-04-18 | stmhal: Add support for sending and receiving CAN RTR messages. | Henrik | |
| 2015-04-16 | stmhal: Allow sending CAN messages with timeout=0. | Damien George | |
| Thanks to Henrik Sölver for this patch. | |||
| 2015-04-16 | Add .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-09 | docs: Document pyb.main function to set main script. | Damien George | |
