Merge pull request #14 from con-f-use/master

Utilize web/Makefile in the main Makefile (esp82XX)
This commit is contained in:
CNLohr 2016-08-05 01:40:41 -04:00 committed by GitHub
commit c6d1e93f5d
5 changed files with 64 additions and 48 deletions

View file

@ -1,19 +1,4 @@
############################################################################### include makeconf.inc # Look here for user configuration
# USER OPTIONS
###############################################################################
CHIP ?= 8266
IP ?= 192.168.4.1
PORT ?= /dev/ttyUSB0
#PORT ?= /dev/ttyACM0
ESP_ROOT ?= $(HOME)/esp8266/esp-open-sdk
GCC_VERS ?= 4.8.5
OPTS += -DICACHE_FLASH
#OPTS += -DFREQ=12500
###########################################################################VARS
.PHONY : all clean cleanall netburn burnweb burn .PHONY : all clean cleanall netburn burnweb burn
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))) uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
@ -42,16 +27,6 @@ SRCS = \
LIBS = main lwip ssl upgrade net80211 wpa net80211 phy lwip pp crypto LIBS = main lwip ssl upgrade net80211 wpa net80211 phy lwip pp crypto
INCL = $(SDK)/include myclib include . INCL = $(SDK)/include myclib include .
GCC_FOLDER = $(ESP_ROOT)/xtensa-lx106-elf
ESPTOOL_PY = $(ESP_ROOT)/esptool/esptool.py
SDK = $(ESP_ROOT)/sdk
XTLIB = $(SDK)/lib
XTGCCLIB = $(GCC_FOLDER)/lib/gcc/xtensa-lx106-elf/$(GCC_VERS)/libgcc.a
PREFIX = $(GCC_FOLDER)/bin/xtensa-lx106-elf-
CC = $(PREFIX)gcc
LD = $(PREFIX)ld
CFLAGS = -mlongcalls -Os $(addprefix -I,$(INCL) $(call uniq, $(patsubst %/,%,$(dir $(SRCS))))) $(OPTS) CFLAGS = -mlongcalls -Os $(addprefix -I,$(INCL) $(call uniq, $(patsubst %/,%,$(dir $(SRCS))))) $(OPTS)
LDFLAGS_CORE = -nostdlib -L$(XTLIB) -L$(XTGCCLIB) \ LDFLAGS_CORE = -nostdlib -L$(XTLIB) -L$(XTGCCLIB) \
@ -67,33 +42,36 @@ all : $(FW_FILE1) $(FW_FILE2)
$(FW_FILE1) $(FW_FILE2) : $(TARGET) $(FW_FILE1) $(FW_FILE2) : $(TARGET)
@echo "FW $@" @echo "FW $@"
PATH=$(FOLDERPREFIX):$$PATH;$(ESPTOOL_PY) elf2image $(TARGET) export PATH="$(FOLDERPREFIX):$$PATH"; $(ESPTOOL_PY) elf2image $(TARGET)
$(TARGET) : $(SRCS) $(TARGET) : $(SRCS)
$(CC) $(CFLAGS) $^ $(LINKFLAGS) -o $@ $(CC) $(CFLAGS) $^ $(LINKFLAGS) -o $@
ifeq ($(CHIP), 8285) ifeq ($(CHIP), 8285)
burn : $(FW_FILE_1) $(FW_FILE_2) burn : $(FW_FILE1) $(FW_FILE2)
($(ESPTOOL_PY) --port $(PORT) write_flash -fs 8m -fm dout 0x00000 0x00000.bin 0x40000 0x40000.bin)||(true) ($(ESPTOOL_PY) --port $(PORT) write_flash -fs 8m -fm dout 0x00000 0x00000.bin 0x40000 0x40000.bin)||(true)
else ifeq ($(CHIP), 8266) else ifeq ($(CHIP), 8266)
burn : $(FW_FILE_1) $(FW_FILE_2) burn : $(FW_FILE1) $(FW_FILE2)
($(ESPTOOL_PY) --port $(PORT) write_flash 0x00000 $(FW_FILE1) 0x40000 $(FW_FILE2))||(true) ($(ESPTOOL_PY) --port $(PORT) write_flash 0x00000 $(FW_FILE1) 0x40000 $(FW_FILE2))||(true)
else else
$(error Error: Unknown chip '$(CHIP)') $(error Error: Unknown chip '$(CHIP)')
endif endif
#If you have space, MFS should live at 0x100000, if you don't it can also live at burnweb :
#0x10000. But, then it is limited to 180kB. You might need to do this if you have a 512kB @cd web && $(MAKE) $(MFLAGS) $(MAKEOVERRIDES) page.mpfs
#ESP variant.
burnweb : web/page.mpfs
($(ESPTOOL_PY) --port $(PORT) write_flash 0x10000 web/page.mpfs)||(true) ($(ESPTOOL_PY) --port $(PORT) write_flash 0x10000 web/page.mpfs)||(true)
#If you have space, MFS should live at 0x100000. It can also live at
#0x10000. But, then it is limited to 180kB. You might need to do this if
# you have a 512kB ESP variant.
netburn : $(FW_FILE1) $(FW_FILE2) web/execute_reflash netburn : $(FW_FILE1) $(FW_FILE2)
@cd web && $(MAKE) $(MFLAGS) $(MAKEOVERRIDES) execute_reflash
web/execute_reflash $(IP) $(FW_FILE1) $(FW_FILE2) web/execute_reflash $(IP) $(FW_FILE1) $(FW_FILE2)
clean : clean :
$(RM) $(patsubst %.c,%.o,$(SRCS)) $(TARGET) $(RM) $(patsubst %.c,%.o,$(SRCS)) $(TARGET)
purge : clean purge : clean
$(RM) $(FW_FILE_1) $(FW_FILE_2) @cd web && $(MAKE) $(MFLAGS) $(MAKEOVERRIDES) clean
$(RM) $(FW_FILE1) $(FW_FILE2)

View file

@ -18,3 +18,9 @@ Unfortunately the I2S Out (WS2812 in) pin is the same as RX1 (pin 25), which mea
The audio data is taken from TOUT, but must be kept between 0 and 1V. The audio data is taken from TOUT, but must be kept between 0 and 1V.
## Notes
./makeconf.inc has a few variables that make uses for building and flashing the firmware.
Most notably the location of the toolchain for the esp8266/85 on your system.
You should edit them according to your preferences or better add `export ESP_ROOT='/path/to/the/esp-open-sdk'` to your bashrc.

34
embedded8266/makeconf.inc Normal file
View file

@ -0,0 +1,34 @@
###############################################################################
# USER OPTIONS
###############################################################################
CHIP ?= 8266
IP ?= 192.168.4.1 # does not actually set the IP in firmware
PORT ?= /dev/ttyUSB0 # could also be /dev/ttyACM0
PAGE_OFFSET ?= 65536 # 1048576
SDK_DEFAULT ?= $(HOME)/esp8266/esp-open-sdk
ESP_GCC_VERS ?= 4.8.5
OPTS += -DICACHE_FLASH
#OPTS += -DFREQ=12500
###########################################################################VARS
GCC_FOLDER = $(ESP_ROOT)/xtensa-lx106-elf
ESPTOOL_PY = $(ESP_ROOT)/esptool/esptool.py
SDK = $(ESP_ROOT)/sdk
XTLIB = $(SDK)/lib
XTGCCLIB = $(GCC_FOLDER)/lib/gcc/xtensa-lx106-elf/$(ESP_GCC_VERS)/libgcc.a
FOLDERPREFIX = $(GCC_FOLDER)/bin
PREFIX = $(FOLDERPREFIX)/xtensa-lx106-elf-
CC = $(PREFIX)gcc
LD = $(PREFIX)ld
AR = $(PREFIX)ar
ESP_ROOT := $(shell echo "$$ESP_ROOT")
ifeq ($(strip $(ESP_ROOT)),)
$(warning Warning: No shell variable 'ESP_ROOT', using '$(SDK_DEFAULT)')
ESP_ROOT := $(SDK_DEFAULT)
endif

View file

@ -1,27 +1,23 @@
IP ?= 192.168.4.1 include ../makeconf.inc # Look here for user configuration
.PHONY : all clean push .PHONY : all clean push
all : execute_reflash push
CFLAGS = -std=gnu99 -Wall -Wextra -O2 -march=native CC = gcc
all : execute_reflash page.mpfs push
mfsmaker : mfsmaker.c mfsmaker : mfsmaker.c
$(CC) $(CFLAGS) -o $@ $^ pushtodev : pushtodev.c
execute_reflash : execute_reflash.c md5.c
page.mpfs : mfsmaker page page.mpfs : mfsmaker page
# cat to_compress/*.js | gzip -9 > page/compressed.js.gz # cat to_compress/*.js | gzip -9 > page/compressed.js.gz
./mfsmaker page page.mpfs ./mfsmaker page page.mpfs
pushtodev : pushtodev.c #mfsmaker pushtodev execute_reflash:
$(CC) $(CFLAGS) -o $@ $^ # $(CC) $(CFLAGS) -o $@ $^
execute_reflash : execute_reflash.c md5.c
$(CC) $(CFLAGS) -o $@ $^
push : pushtodev page.mpfs push : pushtodev page.mpfs
./pushtodev $(IP) 65536 page.mpfs ./pushtodev $(IP) $(PAGE_OFFSET) page.mpfs
# ./pushtodev $(IP) 1048576 page.mpfs
clean : clean :
$(RM) mfsmaker page.mpfs pushtodev execute_reflash $(RM) mfsmaker page.mpfs pushtodev execute_reflash

View file

@ -3,7 +3,9 @@
#include <sys/socket.h> #include <sys/socket.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h> #include <stdio.h>
#include <unistd.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/poll.h> #include <sys/poll.h>
#include <sys/types.h> #include <sys/types.h>