- Mar 04, 2019
-
-
Damien George authored
A board can now use the make variables TEXT0_SECTIONS and TEXT1_SECTIONS to specify the linker sections that should go in its firmware. Defaults are provided which give the existing behaviour.
-
Tom Collins authored
-
- Mar 01, 2019
-
-
Damien George authored
This makes the QSPI more robust, in particular the timeout counter should not be used with memory mapped mode (see F7 errata).
-
Damien George authored
This port would rather keep the code size as RAM.
-
Damien George authored
This optimisation eliminates the need to create a temporary normal dict. The optimisation is enabled via MICROPY_COMP_CONST_LITERAL which is enabled by default (although only has an effect if OrderdDict is enabled). Thanks to @pfalcon for the initial idea and implementation.
-
- Feb 28, 2019
-
-
Damien George authored
Because "waiti 0" may have waited for a while (eg 500ms) and the internal WDT may need to be fed immediately. Fixes issue #4459.
-
Damien George authored
Fixes issue #4499.
-
- Feb 26, 2019
-
-
Damien George authored
-
Damien George authored
All exceptions that unwind through the async-with must be caught and BaseException is the top-level class, which includes Exception and others. Fixes issue #4552.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Some users of this module may require the LwIP stack to run at an elevated priority, to protect against concurrency issues with processing done by the underlying network interface. Since LwIP doesn't provide such protection it must be done here (the other option is to run LwIP in a separate thread, and use thread protection mechanisms, but that is a more heavyweight solution).
-
Damien George authored
-
Damien George authored
-
- Feb 25, 2019
-
-
Yonatan Goldschmidt authored
This is only correct for the extmod/uos_dupterm.c implementation however, as e.g cc3200 implementation does the mp_load_method() itself, and anyway requires `read` instead of `readinto`.
-
Petr Kracík authored
esp_wifi_connect will return ESP_OK for the normal path of execution which just means the reconnect is started, not that it is actually reconnected. In such a case wifi.isconnected() should return False until the reconnection is complete. After reconnect a GOT_IP event is called and it will change wifi_sta_connected back to True.
-
Damien George authored
-
Damien George authored
-
- Feb 21, 2019
-
-
Petr Kracík authored
A value of None for this argument is already supported, so the argument can be made optional.
-
Petr Kracík authored
-
Petr Kracík authored
This optional parameter for network.LAN clock_mode can be used for cases where the clock source is different from the default GPIO0. Fixes #4502.
-
Damien George authored
-
- Feb 20, 2019
-
-
Stig Bjørlykke authored
Remove unneeded NULL entry in machine_hard_pwm_instances[] when not building for NRF52_SERIES.
-
Stig Bjørlykke authored
Update the "make flash" command sample to include BOARD parameter when building for a specific target board.
-
Glenn Ruben Bakke authored
This patch makes sure that the char_data.props is first assigned a value before other flags are OR'd in. Resolves compilation warning on possible unitialized variable.
-
Glenn Ruben Bakke authored
This patch makes sure that advertisment data is located in persistent static RAM memory throughout the advertisment. Also, setting m_adv_handle to predifined BLE_GAP_ADV_SET_HANDLE_NOT_SET value to indicate first time usage of the handle. Upon first advertisment configuration this will be populated with a handle value returned by the stack (s132/s140).
-
Glenn Ruben Bakke authored
After new layout of nordicsemi.com the direct links to command line tools (nrfjprog) has changed to become dynamic. This patch removes the old direct links to each specific OS variant and is replaced with one single link to the download landing page instead.
-
Andrew Leech authored
Currently all usages of mp_hal_pin_config_alt_static() set the pin speed to "high" (50Mhz). The SDRAM interface typically runs much faster than this so should be set to the maximum pin speed. This commit adds mp_hal_pin_config_alt_static_speed() which allows setting the pin speed along with the other alternate function details.
-
Damien George authored
-
Damien George authored
-
- Feb 19, 2019
-
-
Damien George authored
Q_GET_HASH may evaluate its argument more than once.
-
Dave Hylands authored
-
Dave Hylands authored
-