天天看點

小e開發闆重新編譯刷寫測試AT例程全過程

          外話:各位手頭上沒有esp8266的開發闆注意了,目前開發快正在進行“免費開發闆活動”,本人就是在他們那裡申請到的開發闆,開發快提供的不單單是開發闆,還有他們強大的雲端服務功能,實作了微信、雲平台等物聯網所需要的所有功能,其功能齊全,代碼簡潔,對于想用wifi作為産品和網際網路溝通的橋梁的我們來說,确實是一個很好的選擇,另外他們還有其他的子產品,比如2G通信和GPS。目前論壇活動位址:http://bbs.kaifakuai.com/forum.php?mod=viewthread&tid=981&extra=page%3D1,開發快官網位址:http://www.kaifakuai.com/                        》》》》》》寫于2017年1月12日    

       首先從樂鑫官網下載下傳标準的沒有RTOS系統的demo如目前最新的《ESP8266 NONOS SDK V2.0.0 20160810》

       官網位址如下:http://espressif.com/zh-hans/support/download/sdks-demos

       另外官網文檔位址:http://espressif.com/zh-hans/support/download/documents?keys=&field_type_tid%5B%5D=14

       這裡還有一些有趣的例程:http://espressif.com/zh-hans/support/explore/sample-codes

       解壓之後我們可以看到《examples》目錄下有如下例程,其中就包括了AT例程:

小e開發闆重新編譯刷寫測試AT例程全過程

      這裡我們把at目錄拷貝到SDK的主目錄下:

小e開發闆重新編譯刷寫測試AT例程全過程

       打開後可以看到at目錄下有如下内容:

小e開發闆重新編譯刷寫測試AT例程全過程

       這裡在虛拟機中運作“gen_misc.sh”就開始編譯程式,打開虛拟機:

小e開發闆重新編譯刷寫測試AT例程全過程

       下面就可以運作目錄下的gen_misc.sh來編譯AT例程了,這裡編譯的時候要設定編譯選項,這裡我們看看以前編譯開發闆的微信程式的時候螢幕列印出來的資訊:

gen_misc.sh version 20150826

SDK_PATH:

/home/esp8266/Share/SDK/

BIN_PATH:

/home/esp8266/Share/SDK/bin

Please check SDK_PATH & BIN_PATH, enter (Y/y) to continue:

Please follow below steps(1-5) to generate specific bin(s):

STEP 1: use boot_v1.2+ by default

boot mode: new

STEP 2: choose bin generate(0=eagle.flash.bin+eagle.irom0text.bin, 1=user1.bin, 2=user2.bin)

enter (0/1/2, default 0):

generate bin: user1.bin

STEP 3: choose spi speed(0=20MHz, 1=26.7MHz, 2=40MHz, 3=80MHz)

enter (0/1/2/3, default 2):

spi speed: 40 MHz

STEP 4: choose spi mode(0=QIO, 1=QOUT, 2=DIO, 3=DOUT)

enter (0/1/2/3, default 0):

spi mode: QIO

STEP 5: choose spi size and map

    0= 512KB( 256KB+ 256KB)

    2=1024KB( 512KB+ 512KB)

    3=2048KB( 512KB+ 512KB)

    4=4096KB( 512KB+ 512KB)

    5=2048KB(1024KB+1024KB)

    6=4096KB(1024KB+1024KB)

enter (0/2/3/4/5/6, default 0):

spi size: 2048KB

spi ota map:  512KB + 512KB

start...

      參考上面的資訊我們這樣設定我們的編譯選項:

小e開發闆重新編譯刷寫測試AT例程全過程

             編譯完成後輸出下面資訊,這裡包括生成的固件的名字和位址:

小e開發闆重新編譯刷寫測試AT例程全過程

        上面的文字版螢幕資訊請看附錄C

        我們可以在“bin\upgrad”目錄下看到生成的檔案,對比編譯時間确定是我們想要的固件:

小e開發闆重新編譯刷寫測試AT例程全過程

        下來使用開發快公司提供的《flash_download_tools_v2.4_150924》燒錄工具把固件燒寫到闆子的flash上,注意這裡隻要燒錄使用者固件即可,其他不用燒寫,位址在上面的編譯結構提示中已經給出,燒錄工具和該工具的設定如下:

小e開發闆重新編譯刷寫測試AT例程全過程
小e開發闆重新編譯刷寫測試AT例程全過程

        這裡點選上面的START按鈕,然後開發闆斷電,然後一直按下airkiss按鍵,然後給開發闆上電:

小e開發闆重新編譯刷寫測試AT例程全過程

        當看到進度條走動或者下載下傳完成之後松開airkiss按鍵,然後使用序列槽調試工具選擇正确的序列槽号和波特率就可以看到開發闆的啟動資訊:

小e開發闆重新編譯刷寫測試AT例程全過程

       注意:當開發闆啟動運作正常之後會改變波特率為115200

       這裡重新設定波特率并且發送測試指令【AT+空格】就可以看到開發闆傳回OK:

小e開發闆重新編譯刷寫測試AT例程全過程

        我們參考如下文檔做AT例程的實驗:

《4b-esp8266_at_command_examples_cn.pdf》:這是樂鑫官網出的文檔,其中有一些問題,比如關鍵的設定模式後必須得重新開機沒有說明

《AT指令使用示例_v0.2.pdf》:這是安可信提供的說明文檔,其中對AT例程的說明起了輔助作用,本人按照此說明設定成功

        上面提到的資源都上傳到了我的資源中:《

小e開發闆重新編譯刷寫測試AT例程全過程

AT例程說明.zip   》:http://download.csdn.net/detail/chengdong1314/9724928

        另外這其中還有本文涉及到的部分圖檔(到UDP測試之前)

       單連結 TCP Client測試

        首先進行下面的步驟:

小e開發闆重新編譯刷寫測試AT例程全過程

           發現并沒有達到我想要的效果,根本就沒有連接配接上wifi,這裡即使寫對SSID和password也是不能夠連接配接wifi的,沒有辦法隻能夠看《AT指令使用示例_v0.2.pdf》,其中提到設定了CW的模式之後必須要重新開機才能夠起效,是以進行如下嘗試:

小e開發闆重新編譯刷寫測試AT例程全過程

      文字版的指令和序列槽輸出檢視附錄A。

       多連結TCP Server

      序列槽提示助手輸入的指令如下:

小e開發闆重新編譯刷寫測試AT例程全過程

       注意:因為這時候開發闆是AP,而PC機是station,是以這裡必須要把開發闆的網線斷開,并且用一個wifi無線網卡使PC機能夠正常上網,用序列槽提示助手設定完開發闆之後(AT+CIPSERVER=1指令之後)或者用序列槽助手設定開發闆之前,PC機需要做如下設定:

小e開發闆重新編譯刷寫測試AT例程全過程

      透傳測試結果如下:

小e開發闆重新編譯刷寫測試AT例程全過程

     文字版的指令和序列槽輸出請看附件B

     這裡附上這篇文章涉及的源代碼《ESP8266_NONOS_SDK   》:http://download.csdn.net/detail/chengdong1314/9724947

附錄A

指令:

AT

AT+CWMODE=3

AT+RST

AT+CWJAP="SSID","password"

AT+CIPSTART="TCP","192.168.1.103",8080

AT+CIPSEND

測試序列槽列印

AT

OK

AT+CWMODE=3

OK

AT+RST

OK

WIFI DISCONNECT

 ets Jan  8 2013,rst cause:2, boot mode:(3,7)

load 0x40100000, len 1856, room 16

tail 0

chksum 0x63

load 0x3ffe8000, len 776, room 8

tail 0

chksum 0x02

load 0x3ffe8310, len 552, room 8

tail 0

chksum 0x79

csum 0x79

2nd boot version : 1.5

  SPI Speed      : 40MHz

  SPI Mode       : QIO

  SPI Flash Size & Map: 16Mbit(512KB+512KB)

jump to run user1 @ 1000

屸WIFI CONNECTED

WIFI GOT IP

AT+CWJAP="SSID","passward"

WIFI DISCONNECT

WIFI CONNECTED

WIFI GOT IP

OK

AT+CIFSR

+CIFSR:APIP,"192.168.4.1"

+CIFSR:APMAC,"5e:cf:7f:d0:e3:34"

+CIFSR:STAIP,"192.168.1.100"

+CIFSR:STAMAC,"5c:cf:7f:d0:e3:34"

OK

AT+CIPSTART="TCP","192.168.1.103",8080

CONNECT

OK

AT+CIPMODE=1

OK

AT+CIPSEND

OK

>hello toohello tooAT

OK

附錄B

指令:

AT

AT+CWMODE=3

AT+RST

AT+CIPMUX=1

AT+CIPSERVER=1

AT+CIFSR

AT+CIPSEND=0,4

序列槽輸出:

AT

OK

AT+CWMODE=3

OK

AT+RST

OK

 ets Jan  8 2013,rst cause:2, boot mode:(3,7)

load 0x40100000, len 1856, room 16

tail 0

chksum 0x63

load 0x3ffe8000, len 776, room 8

tail 0

chksum 0x02

load 0x3ffe8310, len 552, room 8

tail 0

chksum 0x79

csum 0x79

2nd boot version : 1.5

  SPI Speed      : 40MHz

  SPI Mode       : QIO

  SPI Flash Size & Map: 16Mbit(512KB+512KB)

jump to run user1 @ 1000

屸WIFI CONNECTED

WIFI GOT IP

AT+CIPMUX=1

OK

AT+CIPSERVER=1

OK

AT+CIFSR

+CIFSR:APIP,"192.168.4.1"

+CIFSR:APMAC,"5e:cf:7f:d0:e3:34"

+CIFSR:STAIP,"192.168.1.100"

+CIFSR:STAMAC,"5c:cf:7f:d0:e3:34"

OK

0,CONNECT

+IPD,0,9:hello tooAT+CIPSEND=0, 4

no tail

ERROR

+IPD,0,9:hello tooAT+CIPSEND=4

ERROR

+IPD,0,9:hello tooAT+CIPSEND=0,4

OK

>

+IPD,0,9:hello too

+IPD,0,9:hello toooyes

busy s...

Recv 4 bytes

SEND OK

+IPD,0,9:hello too0,CLOSED

附錄C

[email protected]:~$ ls

Desktop  h  mount.sh  Share  umount.sh

[email protected]:~$ sudo ./mount.sh

[sudo] password for esp8266:

[email protected]:~$ cd Share/ESP8266_NONOS_SDK/at/

[email protected]:~/Share/ESP8266_NONOS_SDK/at$ ls

gen_misc.bat  gen_misc.sh  include  Makefile  !!!readme!!!.txt  user

esp8266@esp8266-VirtualBox:~/Share/ESP8266_NONOS_SDK/at$ ./gen_misc.sh

gen_misc.sh version 20150511

Please follow below steps(1-5) to generate specific bin(s):

STEP 1: choose boot version(0=boot_v1.1, 1=boot_v1.2+, 2=none)

enter(0/1/2, default 2):

1

boot mode: new

STEP 2: choose bin generate(0=eagle.flash.bin+eagle.irom0text.bin, 1=user1.bin, 2=user2.bin)

enter (0/1/2, default 0):

1

generate bin: user1.bin

STEP 3: choose spi speed(0=20MHz, 1=26.7MHz, 2=40MHz, 3=80MHz)

enter (0/1/2/3, default 2):

2

spi speed: 40 MHz

STEP 4: choose spi mode(0=QIO, 1=QOUT, 2=DIO, 3=DOUT)

enter (0/1/2/3, default 0):

spi mode: QIO

STEP 5: choose spi size and map

    0= 512KB( 256KB+ 256KB)

    2=1024KB( 512KB+ 512KB)

    3=2048KB( 512KB+ 512KB)

    4=4096KB( 512KB+ 512KB)

    5=2048KB(1024KB+1024KB)

    6=4096KB(1024KB+1024KB)

enter (0/2/3/4/5/6, default 0):

3    

spi size: 2048KB

spi ota map:  512KB + 512KB

start...

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

DEPEND: xtensa-lx106-elf-gcc -M -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf -DICACHE_FLASH -DAT_UPGRADE_SUPPORT -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include user_main.c

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

make[1]: Entering directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

xtensa-lx106-elf-gcc -Os -g -Wpointer-arith -Wundef -Werror -Wl,-EL -fno-inline-functions -nostdlib -mlongcalls -mtext-section-literals -ffunction-sections -fdata-sections -fno-builtin-printf  -DICACHE_FLASH -DAT_UPGRADE_SUPPORT   -I include -I ./ -I ../../include/ets -I ../include -I ../../include -I ../../include/eagle -I ../../driver_lib/include  -o .output/eagle/debug/obj/user_main.o -c user_main.c

xtensa-lx106-elf-ar ru .output/eagle/debug/lib/libuser.a .output/eagle/debug/obj/user_main.o

make[1]: Leaving directory `/mnt/Share/ESP8266_NONOS_SDK/at/user'

xtensa-lx106-elf-gcc  -L../lib -nostdlib -T../ld/eagle.app.v6.new.1024.app1.ld -Wl,--no-check-sections -Wl,--gc-sections -u call_user_start -Wl,-static -Wl,--start-group -lc -lgcc -lhal -lphy -lpp -lnet80211 -llwip -lwpa -lcrypto -lmain -ljson -lupgrade -lssl -lwps -lsmartconfig -lairkiss user/.output/eagle/debug/lib/libuser.a                     -lat -Wl,--end-group -o .output/eagle/debug/image/eagle.app.v6.out

mkdir -p ../bin/upgrade

!!!

-736065308

736065307

Support boot_v1.2 and +

Generate user1.2048.new.3.bin successully in folder bin/upgrade.

boot.bin------------>0x00000

user1.2048.new.3.bin--->0x01000

!!!

[email protected]:~/Share/ESP8266_NONOS_SDK/at$