'tcpip_adapter_init' has been deprecated
This commit is contained in:
@@ -73,29 +73,11 @@ __NOTE__
|
||||
Check [here](http://www.ti.com/lit/an/slla337/slla337.pdf).
|
||||
|
||||
|
||||
# Installation for ESP32
|
||||
# Installation
|
||||
```
|
||||
git clone https://github.com/nopnop2002/esp-idf-can2http
|
||||
cd esp-idf-can2http
|
||||
idf.py set-target esp32
|
||||
idf.py menuconfig
|
||||
idf.py flash
|
||||
```
|
||||
|
||||
# Installation for ESP32-S2
|
||||
```
|
||||
git clone https://github.com/nopnop2002/esp-idf-can2http
|
||||
cd esp-idf-can2http
|
||||
idf.py set-target esp32s2
|
||||
idf.py menuconfig
|
||||
idf.py flash
|
||||
```
|
||||
|
||||
# Installation for ESP32-C3
|
||||
```
|
||||
git clone https://github.com/nopnop2002/esp-idf-can2http
|
||||
cd esp-idf-can2http
|
||||
idf.py set-target esp32c3
|
||||
idf.py set-target {esp32/esp32s2/esp32c3}
|
||||
idf.py menuconfig
|
||||
idf.py flash
|
||||
```
|
||||
@@ -105,7 +87,7 @@ idf.py flash
|
||||

|
||||
|
||||
## CAN Setting
|
||||

|
||||

|
||||
|
||||
## WiFi Setting
|
||||

|
||||
@@ -118,7 +100,7 @@ You can connect using mDNS.
|
||||
|
||||
## External HTTP Server Setting
|
||||
The External HTTP Server receives CAN Bus received data.
|
||||

|
||||

|
||||
|
||||
__Note__
|
||||
The Built-in HTTP Server receives CAN Bus transmittion data.
|
||||
@@ -178,10 +160,12 @@ CANBus reception using UNO.
|
||||
|
||||
# HTTP Server Using Tornado
|
||||
```
|
||||
cd $HOME
|
||||
sudo apt install python3-pip python3-setuptools
|
||||
python -m pip install -U pip
|
||||
python -m pip install -U wheel
|
||||
python -m pip install tornado
|
||||
cd esp-idf-can2http
|
||||
cd tornado
|
||||
python can.py
|
||||
```
|
||||
@@ -190,11 +174,13 @@ python can.py
|
||||
|
||||
# HTTP Server Using Flask
|
||||
```
|
||||
cd $HOME
|
||||
sudo apt install python3-pip python3-setuptools
|
||||
python -m pip install -U pip
|
||||
python -m pip install -U wheel
|
||||
python -m pip install -U Werkzeug
|
||||
python -m pip install flask
|
||||
cd esp-idf-can2http
|
||||
cd flask
|
||||
python can.py
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user