1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00
Ivan Grokhotkov ae13809c81 Update SDK to 2.0.0
- Update SDK header files and libraries to SDK 2.0.0 plus 2.0.0_16_08_09
  patch
- Remove mem_manager.o from libmain.a (replaced with umm_malloc)
- Disable switch from DIO to QIO mode for certain flash chips (saves
  IRAM space)
- Add user_rf_cal_sector_set; it points to rf_init_data sector.
- Change the way rf_init_data is spoofed.
  This is now done by wrapping spi_flash_read and returning the data we
  need during startup sequence.
- Place lwip library into flash using linker script instead of section
  attributes (saves IRAM space)
2017-02-03 04:21:20 +03:00
..
2016-03-29 17:48:37 +03:00
2017-02-03 04:21:20 +03:00
2016-08-29 13:48:54 +08:00
2016-06-23 17:27:57 +08:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2015-05-18 16:04:30 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2015-07-04 09:45:05 +02:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00
2017-02-03 04:21:20 +03:00

Updating SDK libraries

After updating SDK libraries to a new version, do the following changes.

  1. Remove mem_manager.o from libmain.a to use custom heap implementation

    xtensa-lx106-elf-ar -d libmain.a mem_manager.o
    

Updating libstdc++

After building gcc using crosstool-NG, get compiled libstdc++ and remove some objects:

xtensa-lx106-elf-ar d libstdc++.a pure.o
xtensa-lx106-elf-ar d libstdc++.a vterminate.o
xtensa-lx106-elf-ar d libstdc++.a guard.o
xtensa-lx106-elf-ar d libstdc++.a functexcept.o
xtensa-lx106-elf-ar d libstdc++.a del_op.o
xtensa-lx106-elf-ar d libstdc++.a del_opv.o
xtensa-lx106-elf-ar d libstdc++.a new_op.o
xtensa-lx106-elf-ar d libstdc++.a new_opv.o