Added built-in HTTP Server

This commit is contained in:
nopnop2002
2021-07-09 14:43:01 +09:00
parent 52a1ab54a2
commit 298730dbe3
11 changed files with 606 additions and 74 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
#In the first column you need to specify the CAN Frame type.
#The CAN frame type is either S(Standard frame) or E(Extended frame).
#In the second column you have to specify the CAN-ID as a __hexdecimal number__.
#In the last column you have to specify the HTTP-Path.
#Each CAN-ID and each HTTP-Path is allowed to appear only once in the whole file.
#In the last column you have to specify the PATH of external web server.
#Each CAN-ID is allowed to appear only once in the whole file.
S,101,/post
E,101,/post
1 #The file can2http.csv has three columns.
2 #In the first column you need to specify the CAN Frame type.
3 #The CAN frame type is either S(Standard frame) or E(Extended frame).
4 #In the second column you have to specify the CAN-ID as a __hexdecimal number__.
5 #In the last column you have to specify the HTTP-Path. #In the last column you have to specify the PATH of external web server.
6 #Each CAN-ID and each HTTP-Path is allowed to appear only once in the whole file. #Each CAN-ID is allowed to appear only once in the whole file.
7 S,101,/post
8 E,101,/post
9 S,103,/post
+11
View File
@@ -0,0 +1,11 @@
#The file mqtt2can.csv has three columns.
#In the first column you need to specify the CAN Frame type.
#The CAN frame type is either S(Standard frame) or E(Extended frame).
#In the second column you have to specify the CAN-ID as a __hexdecimal number__.
#In the last column you have to specify the PATH of built-in web server.
#Each CAN-ID is allowed to appear only once in the whole file.
S,201,/receive
E,201,/receive
S,203,/receive
E,203,/receive
1 #The file mqtt2can.csv has three columns.
2 #In the first column you need to specify the CAN Frame type.
3 #The CAN frame type is either S(Standard frame) or E(Extended frame).
4 #In the second column you have to specify the CAN-ID as a __hexdecimal number__.
5 #In the last column you have to specify the PATH of built-in web server.
6 #Each CAN-ID is allowed to appear only once in the whole file.
7 S,201,/receive
8 E,201,/receive
9 S,203,/receive
10 E,203,/receive