aboutsummaryrefslogtreecommitdiff
path: root/cc3200
AgeCommit message (Collapse)Author
2015-07-02cc3200: Add modussl, ssl sockets subclassed from normal sockets.Daniel Campora
Stream methods were added to normal sockets as in the unix port.
2015-07-02cc3200: Code clean-up on pybpin.Daniel Campora
2015-07-02cc3200: Set WLAN date/time via the rtc.datetime method().Daniel Campora
WLAN needs time info when validating certificates.
2015-07-02cc3200: Optimize check for WLAN AP mode.Daniel Campora
2015-07-02cc3200: Raise an exception if trying to scan for networks in AP mode.Daniel Campora
2015-07-02cc3200: Add socket.timeout and socket.error exceptions.Daniel Campora
2015-06-30cc3200: Add CA, certificate and key files to the updater list.Daniel Campora
2015-06-29cc3200: Correct socket settimeout time format.Daniel Campora
2015-06-28cc3200: Adapt update-wipy.py timing to improve stability.Daniel Campora
2015-06-28cc3200: Add `Pin.name()` method.Daniel Campora
2015-06-28cc3200: Enable more features to improve compatibility with stmhal.Daniel Campora
2015-06-24cc3200: Add deploy target and improve robustness of update-wipy.py.Daniel Campora
2015-06-24cc3200: Create tools folder and add update-wipy.py script.Daniel Campora
This script is used by Jenkins to update the WiPy with the newly built firmware before running the tests. It's not placed in the common tools folder because it is very WiPy specific.
2015-06-18cc3200: Remove --specs=nano.specs linker flag.Daniel Campora
2015-06-16docs: Add more documentation for the CC3200 in the pyb module.Daniel Campora
2015-06-16cc3200: In Timer.callback() only use value param if in edge count mode.Daniel Campora
2015-06-11cc3200/README.md: Specify the board name in the build command.Daniel Campora
2015-06-10cc3200: Rename os.mkdisk() to os.mkfs().Daniel Campora
2015-06-10cc3200: Remove Timer.AB constant.Daniel Campora
Timer.A and Timer.B can be ORed for this purpose.
2015-06-10cc3200: Clarify notes about the extended functionality of uhashlib.Daniel Campora
2015-06-10cc3200: Re-name pyb.hard_reset() to pyb.reset().Daniel Campora
2015-06-10cc3200: Use the pull up/down resistors on the antenna selection pins.Daniel Campora
2015-06-10cc3200: Fix bootloader build error.Daniel Campora
2015-06-10cc3200: Add sendbreak method to the UART.Daniel Campora
2015-06-10cc3200: Make UART API more similar to stmhal.Daniel Campora
2015-06-10cc3200: Change MP_OBJ_NULL for mp_const_none in params default value.Daniel Campora
2015-06-10cc3200: Only kick the WDT if it's actually running.Daniel Campora
2015-06-10cc3200: Add contructor to the HeartBeat class.Daniel Campora
2015-06-08cc3200: Wrap antenna_init0() with #if MICROPY_HW_ANTENNA_DIVERSITY.Daniel Campora
2015-06-07cc3200: Re-config antenna selection when waking from suspended mode.Daniel Campora
2015-06-07cc3200: Add missing antenna diversity source files.Daniel Campora
2015-06-07cc3200: Add antenna selection feature to WLAN.Daniel Campora
2015-06-04cc3200: Do not kick the watchdog inside the idle task.Daniel Campora
2015-06-04cc3200: Close ftp and telnet server sockets if listening fails.Daniel Campora
2015-06-03cc3200: Add method to configure the servers timeout.Daniel Campora
With network.server_timeout(secs) the timeout can be changed. The default value is 300 secs. Minimmum accpeted is 5 secs. Without params the function returns the current configured timeout.
2015-06-02cc3200: Fix 'MP_QSTR_sd' undeclared error when building for the LAUNCHXL.Daniel Campora
2015-05-29cc3200: Add period set method to the Timer class.Daniel Campora
2015-05-29cc3200: Fix incorrect type for the wake cause variable.Daniel Campora
2015-05-29cc3200: Clean up WLAN API. Make WLAN.info() an attrtuple.Daniel Campora
2015-05-29cc3200: Rename pyb.reset() to pyb.hard_reset() and add pyb.unique_id().Daniel Campora
2015-05-28cc3200: Remove WIPY-SD variant, and make the WiPy the default board.Daniel Campora
2015-05-28cc3200: Rename Pin.get_config() to Pin.info().Daniel Campora
2015-05-28cc3200: Make small changes in WLAN to improve the API.Daniel Campora
2015-05-27cc3200: Simplify SPI polarity and phase checks in constructor.Daniel Campora
2015-05-27cc3200: Add note about old revisions of the CC3200-LAUNCHXL.Daniel Campora
2015-05-27cc3200: Move the STDIO UART pin configuration to mpconfigboard.h.Daniel Campora
2015-05-27cc3200: Fix I2C and SPI module references.Daniel Campora
2015-05-27cc3200: Add make_new method to the WDT.Daniel Campora
2015-05-27cc3200: Add make_new method to the RTC, like in stmhal.Daniel Campora
2015-05-27cc3200: Use the WDT stall feature in debug mode only.Daniel Campora