The only issue left are the following warnings....I am not going to track these down at this time so that I can move forward with getting the firmware loaded and hardware tested..
CC util/cgiwifi.c
AR libesphttpd.a
cc -I../../lib/heatshrink -I../../include -I.. -std=gnu99 -DESPFS_HEATSHRINK -c -o main.o main.c
main.c:79:38: warning: passing 'char *' to parameter of type 'uint8_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
sres=heatshrink_encoder_sink(enc, inp, insize, &len);
^~~
../../lib/heatshrink/heatshrink_encoder.h:97:14: note: passing argument to parameter 'in_buf' here
uint8_t *in_buf, size_t size, size_t *input_size);
^
main.c:85:38: warning: passing 'char *' to parameter of type 'uint8_t *' (aka 'unsigned char *') converts between pointers to integer types with different sign [-Wpointer-sign]
pres=heatshrink_encoder_poll(enc, outp, outsize, &len);
^~~~
../../lib/heatshrink/heatshrink_encoder.h:102:14: note: passing argument to parameter 'out_buf' here
uint8_t *out_buf, size_t out_buf_size, size_t *output_size);
^
2 warnings generated.
cc -I../../lib/heatshrink -I../../include -I.. -std=gnu99 -DESPFS_HEATSHRINK -c -o heatshrink_encoder.o heatshrink_encoder.c
cc -o mkespfsimage main.o heatshrink_encoder.o
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
Hopefully this output means the compile is good......feedback is welcomed!
CC user/timer.c
CC user/user_main.c
AR build/httpd_app.a
LD build/httpd.out
------------------------------------------------------------------------------
Section info:
build/httpd.out: file format elf32-xtensa-le
Sections:
Idx Name Size VMA LMA File off Algn
0 .data 000008ac 3ffe8000 3ffe8000 000000e0 2**4
CONTENTS, ALLOC, LOAD, DATA
1 .rodata 000012c0 3ffe88b0 3ffe88b0 00000990 2**4
CONTENTS, ALLOC, LOAD, READONLY, DATA
2 .bss 00009088 3ffe9b70 3ffe9b70 00001c50 2**4
ALLOC
3 .text 00006c38 40100000 40100000 00001c50 2**2
CONTENTS, ALLOC, LOAD, READONLY, CODE
4 .irom0.text 00033714 40240000 40240000 00008890 2**4
CONTENTS, ALLOC, LOAD, READONLY, CODE
------------------------------------------------------------------------------
esptool.py v1.2-dev
------------------------------------------------------------------------------
Generate 0x00000.bin and 0x40000.bin successully in folder firmware.
0x00000.bin-------->0x00000
0x40000.bin-------->0x40000
Done
Candaces-MacBook-Pro:esp_enc28j60 MarkIngle$