From 143f051b9cd4a81554b3136fee3e056c52671283 Mon Sep 17 00:00:00 2001 From: Jesus Velazquez Date: Wed, 28 Oct 2020 08:03:53 -0700 Subject: [PATCH] web_server.c: remove references to ESP32 Signed-off-by: Jesus Velazquez --- components/network/dns_server/src/web_server.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/network/dns_server/src/web_server.c b/components/network/dns_server/src/web_server.c index 72cfa36b..4623c43e 100755 --- a/components/network/dns_server/src/web_server.c +++ b/components/network/dns_server/src/web_server.c @@ -1,9 +1,9 @@ -/* Brief: This demo shows how to use esp32 as a webserver +/* Brief: This demo shows how to use BL602 as a webserver * * - use a sta connect to this ap - * - open the browser and input the ip_address of this esp32(the default ip_adress is: 192.168.4.1 ) - * - and you can see "hello,this is esp32" on this web page + * - open the browser and input the ip_address of this BL602 (the default ip_adress is: 192.168.4.1 ) + * - and you can see "Hello World, from BL602" on this web page * */ #include "FreeRTOS.h" @@ -36,10 +36,10 @@ const static char http_index_hml[] = "" " html, body, iframe { margin: 0; padding: 0; height: 100%; }\n" " iframe { display: block; width: 100%; border: none; }\n" " \n" - "HELLO ESP32\n" + "HELLO RISC-V\n" "\n" "\n" - "

Hello World, from ESP32!

\n" + "

Hello World, from BL602!

\n" "\n" "\n";