在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發帖/加入社區
會員中心
創作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內不再提示

RT-Thread使用webserver(lwip協議棧自帶httpd )

冬至子 ? 來源:YZRD ? 作者:YZRD ? 2023-10-12 14:47 ? 次閱讀

參考正點原子的 網絡實驗10 NETCONN_WEBserver實驗和《lwIP開發指南》。

開發環境:野火的stm32f407,rt-thread studio版本是版本: 2.2.6,stm32f4的資源包為0.2.2,rt-thread版本為4.0.3。

以RT-Thread中Lan8720和lwip協議棧的使用文章創建的工程為基礎。

httpd(The Apache HTTP Server)的官方網址。

rtthread工程中新建文件夾webserver,存放webserver相關文件。

對工程進行編譯,正常通過。

需要修改的代碼,過程如下:

rt-threadcomponentsnetlwip-2.0.2srcincludelwipappshttpd_opts.h 文件中的宏定義

LWIP_HTTPD_CGI 默認為0,改為1
LWIP_HTTPD_SSI 默認為0,改為1
HTTPD_USE_CUSTOM_FSDATA默認為0
LWIP_HTTPD_DYNAMIC_FILE_READ默認為0,改為1
將 rt-threadcomponentsnetlwip-2.0.2srcappshttpd文件夾 添加構建
httpd文件夾下的fsdata.c 排除構建。

在主函數中增加如下代碼

extern void httpd_init(void);
httpd_init();
while (count++)
{
LOG_D("Hello RT-Thread!");
rt_thread_mdelay(10000);
}

編譯正常,下載到開發板,效果如圖1:

1.jpg

如何使用自己的網頁呢?修改如下:
將rt-threadcomponentsnetlwip-2.0.2srcappshttpd文件夾下的fsdata.c替換成自己的fsdata.c,(使用makefsdata.exe這個軟件自動生成即可)。

在webserve文件夾下創建httpd_cgi_ssi.c文件(CGI和SSI句柄函數)
參考原子的代碼,修改如下:

#include
#include "lwip/tcp.h"
#include
#include
#include
int LED1=0;
int BEEP=0;
#define NUM_CONFIG_CGI_URIS (sizeof(ppcURLs) / sizeof(tCGI))
#define NUM_CONFIG_SSI_TAGS (sizeof(ppcTAGs) / sizeof(char *))
//extern short Get_Temprate(void);
//extern void RTC_Get_Time(u8 *hour,u8 *min,u8 *sec,u8 *ampm);
//extern void RTC_Get_Date(u8 *year,u8 *month,u8 *date,u8 *week);
//控制LED的CGI handler
const char* LEDS_CGI_Handler(int iIndex, int iNumParams, char *pcParam[], char *pcValue[]);
const char* BEEP_CGI_Handler(int iIndex,int iNumParams,char *pcParam[],char *pcValue[]);
static const char *ppcTAGs[]= //SSI的Tag
{
"t", //ADC
"w", //溫度值
"h", //時間
"y" //日期
};
static const tCGI ppcURLs[]= //cgi程序
{
{"/leds.cgi",LEDS_CGI_Handler},
{"/beep.cgi",BEEP_CGI_Handler},
};
//當web客戶端請求瀏覽器的時候,使用此函數被CGI handler調用
static int FindCGIParameter(const char *pcToFind,char *pcParam[],int iNumParams)
{
int iLoop;
for(iLoop = 0;iLoop < iNumParams;iLoop ++ )
{
if(strcmp(pcToFind,pcParam[iLoop]) == 0)
{
return (iLoop); //返回 iLOOP
}
}
return (-1);
}
//SSIHandler?中adc處理函數
void ADC_Handler(char *pcInsert)
{
char Digit1=0, Digit2=0, Digit3=0, Digit4=0;
static uint32_t ADCVal = 0;
//ADCVal = Get_Adc_Average(5,10);//ADC1_CH5的電壓值
ADCVal+=10;
ADCVal=ADCVal%3000;
//轉換為 ADCVval * 0.8mv
ADCVal = (uint32_t)(ADCVal * 0.8);
Digit1= ADCVal/1000;
Digit2= (ADCVal-(Digit1*1000))/100 ;
Digit3= (ADCVal-((Digit1*1000)+(Digit2*100)))/10;
Digit4= ADCVal -((Digit1*1000)+(Digit2*100)+ (Digit3*10));
/* 準備添加到html中的數據 */
*pcInsert = (char)(Digit1+0x30);
*(pcInsert + 1) = (char)(Digit2+0x30);
*(pcInsert + 2) = (char)(Digit3+0x30);
*(pcInsert + 3) = (char)(Digit4+0x30);
}
//SSIHandler中需要用到的內部處理溫度傳感器
void Temperate_Handler(char *pcInsert)
{
char Digit1=0, Digit2=0, Digit3=0, Digit4=0,Digit5=0;
static short Temperate = 0;
//Temperate = Get_Temprate();
Temperate+=1.3;
Digit1 = Temperate / 10000;
Digit2 = (Temperate % 10000)/1000;
Digit3 = (Temperate % 1000)/100 ;
Digit4 = (Temperate % 100)/10;
Digit5 = Temperate % 10;
/* 準備添加到html中的數據 */
*pcInsert = (char)(Digit1+0x30);
*(pcInsert+1) = (char)(Digit2+0x30);
*(pcInsert+2) = (char)(Digit3+0x30);
*(pcInsert+3) = '.';
*(pcInsert+4) = (char)(Digit4+0x30);
*(pcInsert+5) = (char)(Digit5+0x30);
}
//SSIHandler中需要用到的處理RTC日時間的函數
void RTCTime_Handler(char *pcInsert)
{
static uint8_t hour,min,sec,ampm;
hour++;
min++;
sec++;
ampm++;
//RTC_Get_Time(&hour,&min,&sec,&m);
/* 準備添加到html中的數據 */
*pcInsert = (char)((hour/10) + 0x30);
*(pcInsert+1) = (char)((hour%10) + 0x30);
*(pcInsert+2) = ':';
*(pcInsert+3) = (char)((min/10) + 0x30);
*(pcInsert+4) = (char)((min%10) + 0x30);
*(pcInsert+5) = ':';
*(pcInsert+6) = (char)((sec/10) + 0x30);
*(pcInsert+7) = (char)((sec%10) + 0x30);
}
//SSIHandler中需要用到的處理RTC日期的函數
void RTCdate_Handler(char *pcInsert)
{
static uint8_t year,month,date,week;
//RTC_Get_Date(&year,&month,&date,&week);
year++;
month++;
date++;
week++;
/* 準備添加到html中的數據 */
*pcInsert = '2';
*(pcInsert+1) = '0';
*(pcInsert+2) = (char)((year/10) + 0x30);
*(pcInsert+3) = (char)((year%10) + 0x30);
*(pcInsert+4) = '-';
*(pcInsert+5) = (char)((month/10) + 0x30);
*(pcInsert+6) = (char)((month%10) + 0x30);
*(pcInsert+7) = '-';
*(pcInsert+8) = (char)((date/10) + 0x30);
*(pcInsert+9) = (char)((date%10) + 0x30);
*(pcInsert+10) = ' ';
*(pcInsert+11) = 'w';
*(pcInsert+12) = 'e';
*(pcInsert+13) = 'e';
*(pcInsert+14) = 'k';
*(pcInsert+15) = ':';
*(pcInsert+16) = (char)(week + 0x30);
}
//SSI的 Handler 句柄
static u16_t SSIHandler(int iIndex,char *pcInsert,int iInsertLen)
{
switch(iIndex)
{
case 0:
ADC_Handler(pcInsert);
break;
case 1:
Temperate_Handler(pcInsert);
break;
case 2:
RTCTime_Handler(pcInsert);
break;
case 3:
RTCdate_Handler(pcInsert);
break;
}
return strlen(pcInsert);
}
//CGI LED控制句柄
const char* LEDS_CGI_Handler(int iIndex, int iNumParams, char *pcParam[], char *pcValue[])
{
uint8_t i=0; //注意根據自己的GET的參數的多少來選擇i值范圍
iIndex = FindCGIParameter("LED1",pcParam,iNumParams); //找到LED的索引
//只有一個CGI句柄 iIndex=0
if (iIndex != -1)
{
LED1=1;
for (i=0; i {
if (strcmp(pcParam[i] , "LED1")==0) //檢查參數"led"
{
if(strcmp(pcValue[i], "LED1ON") ==0)
{
LED1=0;
rt_kprintf("LED1ONn");
}
else if(strcmp(pcValue[i],"LED1OFF") == 0)
{
LED1=1;
rt_kprintf("LED1OFFn");
}
}
}
}
if(LED1 == 0 && BEEP == 0) return "/STM32F407LED_ON_BEEP_OFF.shtml"; //
else if(LED1 == 0 && BEEP == 1) return "/STM32F407LED_ON_BEEP_ON.shtml"; //
else if(LED1 == 1 && BEEP == 1) return "/STM32F407LED_OFF_BEEP_ON.shtml"; //
else return "/STM32F407LED_OFF_BEEP_OFF.shtml"; //
}
//BEEP的CGI控制句柄
const char *BEEP_CGI_Handler(int iIndex,int iNumParams,char *pcParam[],char *pcValue[])
{
uint8_t i=0;
iIndex = FindCGIParameter("BEEP",pcParam,iNumParams); //找到BEEP的索引號
if(iIndex != -1) //找到BEEP的索引號
{
BEEP=0; //
for(i = 0;i < iNumParams;i++)
{
if(strcmp(pcParam[i],"BEEP") == 0) //
{
if(strcmp(pcValue[i],"BEEPON") == 0) //
{
BEEP = 1;
rt_kprintf("BEEPONn");
}
else if(strcmp(pcValue[i],"BEEPOFF") == 0) //
{
BEEP = 0;
rt_kprintf("BEEPOFFn");
}
}
}
}
if(LED1 == 0 && BEEP == 0) return "/STM32F407LED_ON_BEEP_OFF.shtml"; //
else if(LED1 == 0 && BEEP == 1) return "/STM32F407LED_ON_BEEP_ON.shtml"; //
else if(LED1 == 1 && BEEP == 1) return "/STM32F407LED_OFF_BEEP_ON.shtml"; //
else return "/STM32F407LED_OFF_BEEP_OFF.shtml"; //
}
//SSI句柄初始化
void httpd_ssi_init(void)
{
//配置內部溫度傳感器的SSI句柄
http_set_ssi_handler(SSIHandler,ppcTAGs,NUM_CONFIG_SSI_TAGS);
}
//CGI句柄初始化
void httpd_cgi_init(void)
{
//配置CGI句柄 LEDs control CGI) */
http_set_cgi_handlers(ppcURLs, NUM_CONFIG_CGI_URIS);
}

主函數中代碼如下:

extern void httpd_ssi_init(void);
extern void httpd_cgi_init(void);
extern void httpd_init(void);
httpd_cgi_init();
httpd_ssi_init();
httpd_init();

重新編譯,下載到開發板,在瀏覽器輸入開發板ip地址,查看效果。效果如圖2:

1.jpg

LWIP HTTP 協議中默認只支持GET方法 但是一般提交表單時都用POST方法 而LWIPPOST方案需要自己實現 不過LWIP已經需要實現的函數申明在httpd.h中了。

聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。 舉報投訴
  • LwIP協議棧
    +關注

    關注

    0

    文章

    19

    瀏覽量

    7403
  • RT-Thread
    +關注

    關注

    31

    文章

    1301

    瀏覽量

    40265
收藏 人收藏

    評論

    相關推薦

    如何使用RT-Thread Studio添加以太網驅動和lwIP協議

    用戶快速開發自己的網絡應用。 本文將基于正點原子 stm32f407-atk-explorer 開發板主要介紹如何使用 RT-Thread Studio 來添加以太網驅動和 lwIP 協議
    發表于 03-29 06:29

    如何去處理RT-Thread/LwIP TCP發送速度偏低的情況呢

    RT-Thread使用LwIP做為TCP/IP協議LwIP包含了非常多的選項,不同的選項進行不同功能的剪裁,部分選項
    發表于 08-10 11:48

    SC0085 AT32在RT-Thread上運行LwIP協議

    示例目的演示在RT-Thread上運行LwIP協議,并搭建一個UDP echo server支持型號列表:支持型號AT32F407xxAT32F437xx主要使用外設列表:主要使用外
    發表于 08-23 20:40

    基于RT-Thread實現的Agile Modbus協議

    基于 RT-Thread 實現的支持 Modbus 固件升級的 Bootloader:HPM6750_Boot  特性  支持 rtu 及 tcp 協議,使用純 C 開發,不涉及任何硬件接口,可在任何形式的硬件上
    發表于 10-08 15:04

    RT-Thread移植使用webserver的流程

    ,stm32f4的資源包為0.2.2,rt-thread版本為4.0.3。以RT-Thread中Lan8720和lwip協議的使用文章創建
    發表于 02-22 15:10

    RT-Thread使用webserver的步驟

    sTM32F407,rt-thead studio版本版本:2.2.6 .3。以RT-Thread中Lan8720和lwip協議的使用文章
    發表于 02-24 14:47

    RT-Thread全球技術大會:在RT-Thread中使用幀來調試程序

    百問網科技CTO韋東山,在RT-Thread全球技術大會大會中,以在RT-Thread中使用幀來調試程序為主題進行了介紹。
    的頭像 發表于 05-28 09:33 ?1864次閱讀
    <b class='flag-5'>RT-Thread</b>全球技術大會:在<b class='flag-5'>RT-Thread</b>中使用<b class='flag-5'>棧</b>幀來調試程序

    RT-Thread Studio如何測試Ethernet連網

    RT-Thread 是一款開源實時操作系統,包括 RT-Thread 內核、FinSH 命令行工具、設備文件系統、TCP/IP 協議RT-Thr
    的頭像 發表于 05-31 11:17 ?2890次閱讀
    <b class='flag-5'>RT-Thread</b> Studio如何測試Ethernet連網

    RT-Thread文檔_RT-Thread 簡介

    RT-Thread文檔_RT-Thread 簡介
    發表于 02-22 18:22 ?5次下載
    <b class='flag-5'>RT-Thread</b>文檔_<b class='flag-5'>RT-Thread</b> 簡介

    RT-Thread文檔_RT-Thread SMP 介紹與移植

    RT-Thread文檔_RT-Thread SMP 介紹與移植
    發表于 02-22 18:31 ?9次下載
    <b class='flag-5'>RT-Thread</b>文檔_<b class='flag-5'>RT-Thread</b> SMP 介紹與移植

    RT-Thread移植使用webserver (lwip+httpd)

    開發環境:野火的stm32f407,rt-thread studio版本是版本: 2.2.6,stm32f4的資源包為0.2.2,rt-thread版本為4.0.3。
    的頭像 發表于 10-12 12:49 ?1427次閱讀
    <b class='flag-5'>RT-Thread</b>移植使用<b class='flag-5'>webserver</b> (<b class='flag-5'>lwip+httpd</b>)

    RT-Thread在Lan8720a和 lwip基礎上移植ntp流程

    開發環境:野火的stm32f407,rt-thread studio版本是版本: 2.2.6,stm32f4的資源包為0.2.2。以RT-Thread中Lan8720和lwip協議
    的頭像 發表于 10-12 16:59 ?2011次閱讀
    <b class='flag-5'>RT-Thread</b>在Lan8720a和 <b class='flag-5'>lwip</b>基礎上移植ntp流程

    RT-Thread中Lan8720和lwip協議的使用

    開發環境:野火的stm32f407,rt-thread studio版本是版本: 2.2.6,stm32f4的資源包為0.2.2,Agile Modbus軟件包版本為v1.1.2。新建選擇芯片工程。
    的頭像 發表于 10-13 10:19 ?1593次閱讀
    <b class='flag-5'>RT-Thread</b>中Lan8720和<b class='flag-5'>lwip</b><b class='flag-5'>協議</b><b class='flag-5'>棧</b>的使用

    RT-Thread中mymqtt軟件包的使用方法

    在上一篇文章 RT-Thread中Lan8720和lwip協議的使用的工程基礎上添加mymqtt軟件包。 使能mqtt example和mqtt test,保存,等待下載更新軟件包
    的頭像 發表于 10-13 10:44 ?1042次閱讀
    <b class='flag-5'>RT-Thread</b>中mymqtt軟件包的使用方法

    RT-Thread USB協議-CherryUSB快速上手指南

    的是,CherryUSB已經成為RT-Thread的USB標準對接協議實現。這意味著在RT-Thread系統中,開發者可以方便地使用CherryUSB來實現USB相關功能,為項
    的頭像 發表于 11-22 01:09 ?376次閱讀
    <b class='flag-5'>RT-Thread</b> USB<b class='flag-5'>協議</b><b class='flag-5'>棧</b>-CherryUSB快速上手指南
    主站蜘蛛池模板: 久久影视免费体验区午夜啪啪| 福利视频网站| 国产精品视频一区二区三区| 国产亚洲人成a在线v网站| 黑森林福利视频导航| 丁香花五月天婷婷| 亚洲色图偷窥自拍| 手机看片1024福利| 国产人人干| 黄色的网站在线观看| 亚洲区在线播放| 中文字幕卡二和卡三的视频| 亚洲插插| 欧美一级日韩在线观看| 久久青草91线频免费观看| 国产激情在线观看| 午夜大片网| 久久国产美女| 888午夜不卡理论久久| 国产成人毛片亚洲精品不卡| 亚洲高清色图| 全日本爽视频在线| 二区在线播放| 人人爱天天做夜夜爽毛片| 性欧美1819| 中文字幕天堂| 日韩精品在线一区二区| 好男人社区在线观看www| 亚洲理论片| 国产成人综合自拍| 女a男o肉文| 四虎在线最新永久免费播放| 另类性欧美喷潮videofree| 18女毛片| 国产免费高清视频在线观看不卡| 中文字幕一二三区乱码老| 亚洲婷婷综合色高清在线| 欧美综合视频| 2020夜夜操| 亚洲va老文色欧美黄大片人人| 精品国产免费观看久久久|