esp-open-rtos/core
Ruslan V. Uss 546cc47121 Merge pull request #437 from ourairquality/oaq-merge-1
* bmp180: comment typo
* ds3231: minor code style fixes. Comment, on the week day start.
* Reverse engineered ets_timers.o Switch from FreeRTOS queue to task notification. Removed unknown/unused code. Rename sdk_ets_handler_isr to process_pending_timers. Add function for microseconds Simplify time to ticks conversion
* ets_timer: code for using the FreeRTOS timers, and remove from libs.
* libc: update to a recent newlib version.
* LwIP v2 support
* spi_write: use uint32_t for the page iteration counter. The page counter was using an uint8_t which seems unnecessary and might wrap.
* sysparam_get_bool: memcpy the binary values out.
* FreeRTOS 9.0.1
* Add an argument to ISRs. Disable interrupts while masking them.
* sysparam: reserve one more flash sector before placing the sysparams. This is to help work with recent SDKs that add a RF cal sector by default in the fifth last sector - just so the sysparam sectors do not jump around when using different SDK versions.
* upnp example: strip down the lwipopts.h file
* sysparam editor: accept newline to end a line of input.
* Add Wificfg. Uses the sysparam store to save the wifi configuration. Adds a basic http server for configuration.
* lwip: disable the tcpip_core_locking_input option. With this option enabled some lwip input processing occurs in the pp task which works well for some uses but some code uses a lot of stack (e.g. mdns) and will overflow the pp task stask, or might unnecessarily slow the critical pp task,
so disable this by default and if not already defined.
* sdk_cnx_add_rc: fix overflow of the table, when no match is found. Also adds source code for sdk_cnx_rc_search, adding a null pointer dereference. Check (that is not expected to be seen), and source code for sdk_cnx_remove_rc.
* http_get example: fix compilation with ipv6 disabled.
* lwip: update to master branch.
* wificfg: allow the AP channel to be 1.
* lwip: rework the tcp ooseq handling. It now accounts for the number of rx pool buffers used and the
available memory when deciding the number of ooseq buffers to retain. Enable the TCP Selective ACK support which appears to help a lot on lossy wifi when using the OOSEQ option.
* Update lwip, fixes losses of pcbs and associated problems.
* lwip: revise the tcp ooseq limit calulations. Was making a mess of the calculation sign. Also added a COPY_PP_RX_PBUFS define to include appropriate limits for this option.
* lwip: ooseq_max_bytes() - set a practical target memory size.
* lwip: revise ooseq handling. Modified for lwip backwards compatibility based on upstream feedback.
* lwip: update to the 2.0.3 release
* lwip: merge upstream master.
* libc: update to upstream master.
* lwip: fix building without TCP_QUEUE_OOSEQ
2017-10-02 04:50:35 +05:00
..
include Merge pull request #437 from ourairquality/oaq-merge-1 2017-10-02 04:50:35 +05:00
app_main.c LwIP v2 support 2017-08-30 13:51:32 +10:00
component.mk Rework component makefiles to have a default <component>_ROOT 2015-09-08 09:59:59 +10:00
cplusplus_operators.cpp Move c++ operators back to link-time resolutions, part of 'core' 2015-09-20 21:13:38 +10:00
debug_dumps.c Added an API for user exception handlers 2017-08-29 09:51:23 +03:00
esp_gpio.c Add an argument to ISRs. Disable interrupts while masking them. 2017-08-30 13:51:32 +10:00
esp_hwrand.c Use hwrand for the sdk uses of rand, in particular with the NMI. 2017-07-20 16:24:45 +10:00
esp_interrupts.c Add an argument to ISRs. Disable interrupts while masking them. 2017-08-30 13:51:32 +10:00
esp_iomux.c Removed INLINED (force inline) macro. 2015-11-28 18:01:03 +11:00
esp_phy.c Add PHY hardware management for Bluetooth Coexistence pin choice 2016-05-15 22:21:10 +10:00
esp_spi.c Fixes unaligned writes to SPI data register 2017-04-20 01:49:46 +05:00
esp_timer.c timers.h: Return error codes instead of true/false for failures 2015-11-28 16:33:39 +11:00
exception_vectors.S core: exception_vectors: initial esp-gdbstub support (#205) 2016-09-15 08:26:38 +02:00
led_debug.s Use GPIO2 for led_debug.S 2015-09-14 17:20:00 +10:00
newlib_syscalls.c libc: update to a recent newlib version. 2017-08-30 13:51:32 +10:00
phy_info.c Wrap structure around phy_info PHY initialisation settings 2016-05-15 22:21:10 +10:00
sdk_compat.c gcc __attribute__((constructor)): Remove hacked calling, move ctor sections to flash 2016-04-24 18:52:16 +10:00
spiflash-cache-enable.S Use latest upstream rboot, always build with OTA - use prebuilt rboot if 2016-05-28 11:27:10 +10:00
spiflash.c spi_write: use uint32_t for the page iteration counter. 2017-08-30 13:51:32 +10:00
sysparam.c sysparam_get_bool: memcpy the binary values out. 2017-08-30 13:51:32 +10:00