├── Makefile ├── README.md ├── components ├── mdio_gpio │ ├── component.mk │ ├── include │ │ └── mdio.h │ ├── mdio_bitbang.c │ └── mdio_gpio.c ├── mongoose │ ├── component.mk │ ├── mg_main.c │ ├── mongoose.c │ └── mongoose.h └── mt7530 │ ├── component.mk │ ├── include │ ├── mt7530.h │ ├── mt7530_mib.h │ └── mt7530_vlan.h │ ├── mt7530_mib.c │ ├── mt7530_misc.c │ ├── mt7530_reg.c │ └── mt7530_vlan.c ├── main ├── component.mk ├── conf_nvram.c ├── conf_wlan.c ├── heap_mon.c ├── include │ ├── nvram.h │ └── uart_shell.h ├── shell_cmds │ ├── cmd_mdio.c │ ├── cmd_mt7530.c │ ├── cmd_nvram.c │ └── uart_shell_cmds.c ├── uart_shell.c └── user_main.c ├── partitions_4m.csv └── sdkconfig /Makefile: -------------------------------------------------------------------------------- 1 | PROJECT_NAME := esp_mt7530 2 | include $(IDF_PATH)/make/project.mk 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/README.md -------------------------------------------------------------------------------- /components/mdio_gpio/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS += include 2 | -------------------------------------------------------------------------------- /components/mdio_gpio/include/mdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mdio_gpio/include/mdio.h -------------------------------------------------------------------------------- /components/mdio_gpio/mdio_bitbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mdio_gpio/mdio_bitbang.c -------------------------------------------------------------------------------- /components/mdio_gpio/mdio_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mdio_gpio/mdio_gpio.c -------------------------------------------------------------------------------- /components/mongoose/component.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/mongoose/mg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mongoose/mg_main.c -------------------------------------------------------------------------------- /components/mongoose/mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mongoose/mongoose.c -------------------------------------------------------------------------------- /components/mongoose/mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mongoose/mongoose.h -------------------------------------------------------------------------------- /components/mt7530/component.mk: -------------------------------------------------------------------------------- 1 | COMPONENT_ADD_INCLUDEDIRS += include 2 | -------------------------------------------------------------------------------- /components/mt7530/include/mt7530.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/include/mt7530.h -------------------------------------------------------------------------------- /components/mt7530/include/mt7530_mib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/include/mt7530_mib.h -------------------------------------------------------------------------------- /components/mt7530/include/mt7530_vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/include/mt7530_vlan.h -------------------------------------------------------------------------------- /components/mt7530/mt7530_mib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/mt7530_mib.c -------------------------------------------------------------------------------- /components/mt7530/mt7530_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/mt7530_misc.c -------------------------------------------------------------------------------- /components/mt7530/mt7530_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/mt7530_reg.c -------------------------------------------------------------------------------- /components/mt7530/mt7530_vlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/components/mt7530/mt7530_vlan.c -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/conf_nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/conf_nvram.c -------------------------------------------------------------------------------- /main/conf_wlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/conf_wlan.c -------------------------------------------------------------------------------- /main/heap_mon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/heap_mon.c -------------------------------------------------------------------------------- /main/include/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/include/nvram.h -------------------------------------------------------------------------------- /main/include/uart_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/include/uart_shell.h -------------------------------------------------------------------------------- /main/shell_cmds/cmd_mdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/shell_cmds/cmd_mdio.c -------------------------------------------------------------------------------- /main/shell_cmds/cmd_mt7530.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/shell_cmds/cmd_mt7530.c -------------------------------------------------------------------------------- /main/shell_cmds/cmd_nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/shell_cmds/cmd_nvram.c -------------------------------------------------------------------------------- /main/shell_cmds/uart_shell_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/shell_cmds/uart_shell_cmds.c -------------------------------------------------------------------------------- /main/uart_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/uart_shell.c -------------------------------------------------------------------------------- /main/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/main/user_main.c -------------------------------------------------------------------------------- /partitions_4m.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/partitions_4m.csv -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/981213/esp_mt7530/HEAD/sdkconfig --------------------------------------------------------------------------------