资源简介

功能说明: 本程序根据原子哥STM32H7开发板源码《网络实验15 NETCONN_WEBserver实验(UCOSII版本)》改编,且包含了修改后的网页文件,原子哥的程序是将网页文件转换成了程序的一部分,该方式不方便网页的制作与调试,而且测试发现网页会每秒钟刷新一次,显示效果不好。为方便网页的更换:使用U盘存放网页文件,通过FATFS文件系统读取数据进行显示;刷新问题:网页通过ajax方式对指定的数据进行更新,开发板源码上传需要更新的数据,整体网页不变。 关于资源的说明详情见:https://mp.csdn.net/postedit/101171210

资源截图

代码片段和文件信息

/*------------------------------------------------------------/
/ Open or create a file in append mode
/ (This function was sperseded by FA_OPEN_APPEND flag at FatFs R0.12a)
/------------------------------------------------------------*/

FRESULT open_append (
    FIL* fp            /* [OUT] File object to create */
    const char* path    /* [IN]  File name to be opened */

{
    FRESULT fr;

    /* Opens an existing file. If not exist creates a new file. */
    fr = f_open(fp path FA_WRITE | FA_OPEN_ALWAYS);
    if (fr == FR_OK) {
        /* Seek to end of the file to append data */
        fr = f_lseek(fp f_size(fp));
        if (fr != FR_OK)
            f_close(fp);
    }
    return fr;
}


int main (void)
{
    FRESULT fr;
    FATFS fs;
    FIL fil;

    /* Open or create a log file and ready to append */
    f_mount(&fs ““ 0);
    fr = open_append(&fil “logfile.txt“);
    if (fr != FR_OK) return 1;

    /* Append a line */
    f_printf(&fil “%02u/%02u/%u %2u:%02u\n“ Mday Mon Year Hour Min);

    /* Close the file */
    f_close(&fil);

    return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      25116  2017-05-01 18:16  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\CORE\cmsis_armcc.h

     文件       5700  2017-05-01 18:16  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\CORE\cmsis_compiler.h

     文件     144049  2017-05-01 18:16  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\CORE\core_cm7.h

     文件      46110  2018-07-12 10:10  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\CORE\startup_stm32h743xx.s

     文件       3665  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\css_e.css

     文件       1135  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\app1.c

     文件       1542  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\app2.c

     文件       4133  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\app3.c

     文件      10332  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\app4.c

     文件       1414  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f1.png

     文件       1458  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f2.png

     文件       1039  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f3.png

     文件       2335  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f4.png

     文件       2479  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f5.png

     文件       1464  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f6.png

     文件      25760  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\f7.png

     文件      22722  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\funcs.png

     文件       5521  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\layers.png

     文件       3843  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\layers1.png

     文件       3741  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\layers2.png

     文件       2379  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\layers3.png

     文件     686683  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\mkfatimg.zip

     文件    3238912  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\mkfs.xls

     文件      17469  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\modules.png

     文件      69114  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\rwtest1.png

     文件       8153  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\rwtest2.png

     文件       3011  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\res\rwtest3.png

     文件      10468  2018-04-07 17:45  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\documents\updates.txt

     文件      12134  2018-08-02 16:10  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\exfuns\exfuns.c

     文件       1956  2018-08-02 16:10  NETCONN_WEBserver(UCOSII)_U盘_ajax_cgi\FATFS\exfuns\exfuns.h

............此处省略1172个文件信息

评论

共有 条评论