#include "/esp-open-sdk/ESP8266_NONOS_SDK_V2.0.0_16_08_10/driver_lib/include/driver/uart.h"
#include "/esp-open-sdk/ESP8266_NONOS_SDK_V2.0.0_16_08_10/driver_lib/include/driver/gpio16.h"
Once added It started to returned this
Code: Select all
xtensa-lx106-elf-gcc -Teagle.app.v6.ld blinky.o -nostdlib -Wl,--start-group -lmain -lnet80211 -lwpa -llwip -lpp -lphy -lc -Wl,--end-group -lgcc -o blinky
blinky.o:(.irom0.literal+0x47c): undefined reference to `gpio_intr_deattach'
blinky.o:(.irom0.literal+0x498): undefined reference to `set_gpio_mode'
blinky.o:(.irom0.literal+0x49c): undefined reference to `gpio_intr_init'
blinky.o:(.irom0.literal+0x4a0): undefined reference to `gpio_intr_attach'
blinky.o: In function `network_check_ip_send_therm':
blinky.c:(.irom0.text+0x2bf3): undefined reference to `gpio_intr_deattach'
blinky.o: In function `LoadStationAndSendData':
blinky.c:(.irom0.text+0x2c36): undefined reference to `set_gpio_mode'
blinky.c:(.irom0.text+0x2c5a): undefined reference to `gpio_intr_init'
blinky.o: In function `SetAllGPIOPinsAsOutput':
blinky.c:(.irom0.text+0x2c87): undefined reference to `gpio_intr_attach'
collect2: error: ld returned 1 exit status
make: *** [blinky] Error 1
Anyone know why its not finding the GPIO references? Do I need to add another Library to the Xtena linking?
Thank you everyone!!