资源简介
初始IP地址是192.168.1.111,通过对PB7的操作来实现缺省值和flash之间的切换,设置好的参数写入flash,w5500接的是SPI2,单片机是stm32f103c8t6。
第一个网页没有任何修改权限,只有输入登录密码(初始密码:123456 或者万能密码:765997)进入修改页面,可以修改参数,包括登录密码都可以修改。
浏览器用的是IE,程序编译会有20个warning,请忽略,不是语法错误,不影响任何使用。
代码片段和文件信息
/**
******************************************************************************
* @file misc.c
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief This file provides all the miscellaneous firmware functions (add-on
* to CMSIS functions).
******************************************************************************
* @attention
*
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
* TIME. AS A RESULT STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
* DIRECT INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
* FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
* CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*
* © COPYRIGHT 2011 STMicroelectronics
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include “misc.h“
/** @addtogroup STM32F10x_StdPeriph_Driver
* @{
*/
/** @defgroup MISC
* @brief MISC driver modules
* @{
*/
/** @defgroup MISC_Private_TypesDefinitions
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_Defines
* @{
*/
#define AIRCR_VECTKEY_MASK ((uint32_t)0x05FA0000)
/**
* @}
*/
/** @defgroup MISC_Private_Macros
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_Variables
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_FunctionPrototypes
* @{
*/
/**
* @}
*/
/** @defgroup MISC_Private_Functions
* @{
*/
/**
* @brief Configures the priority grouping: pre-emption priority and subpriority.
* @param NVIC_PriorityGroup: specifies the priority grouping bits length.
* This parameter can be one of the following values:
* @arg NVIC_PriorityGroup_0: 0 bits for pre-emption priority
* 4 bits for subpriority
* @arg NVIC_PriorityGroup_1: 1 bits for pre-emption priority
* 3 bits for subpriority
* @arg NVIC_PriorityGroup_2: 2 bits for pre-emption priority
* 2 bits for subpriority
* @arg NVIC_PriorityGroup_3: 3 bits for pre-emption priority
* 1 bits for subpriority
* @arg NVIC_PriorityGroup_4: 4 bits for pre-emption priority
* 0 bits for subpriority
* @retval None
*/
void NVIC_PriorityGroupConfig(uint32_t NVIC_PriorityGroup)
{
/* Check the parameters */
assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup));
/* Set the PRIGROUP[10:8] bits according to NVIC_PriorityGroup value */
SCB->AIRCR = AIRCR_VECTKEY_MASK | NVIC_PriorityGroup;
}
/**
* @brief Initializes the NVIC p
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-02 12:33 HTTP_Server-Two_Page\
目录 0 2018-10-22 16:04 HTTP_Server-Two_Page\User\
文件 1285 2017-08-03 11:37 HTTP_Server-Two_Page\User\config.h
文件 3363 2017-08-09 14:50 HTTP_Server-Two_Page\User\jtxdweb.h
文件 1006 2017-08-05 08:53 HTTP_Server-Two_Page\User\main.c
文件 3259 2011-04-04 19:03 HTTP_Server-Two_Page\User\stm32f10x_conf.h
文件 4405 2011-04-04 19:03 HTTP_Server-Two_Page\User\stm32f10x_it.c
文件 2086 2011-04-04 19:03 HTTP_Server-Two_Page\User\stm32f10x_it.h
文件 2235 2014-09-25 13:39 HTTP_Server-Two_Page\User\types.h
文件 2874 2017-08-09 15:01 HTTP_Server-Two_Page\User\webpge.h
目录 0 2018-10-22 16:04 HTTP_Server-Two_Page\flib\
目录 0 2018-10-22 16:04 HTTP_Server-Two_Page\flib\inc\
文件 8982 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\misc.h
文件 21690 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_adc.h
文件 7555 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_bkp.h
文件 27559 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_can.h
文件 6573 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_cec.h
文件 2162 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_crc.h
文件 15233 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_dac.h
文件 3818 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_dbgmcu.h
文件 20754 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_dma.h
文件 6824 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_exti.h
文件 25445 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_flash.h
文件 27016 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_fsmc.h
文件 20175 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_gpio.h
文件 30029 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_i2c.h
文件 3828 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_iwdg.h
文件 4383 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_pwr.h
文件 30452 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_rcc.h
文件 3857 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_rtc.h
文件 21863 2011-03-10 10:47 HTTP_Server-Two_Page\flib\inc\stm32f10x_sdio.h
............此处省略169个文件信息
- 上一篇:fm1701原C程序及资料
- 下一篇:TM4C123自带LCD.rar
相关资源
- 很好用的网站前端页面爬取工具
- NetApp NetCache助HypoVereinsbank实现安全快
- 最新WebShell管理工具增强版3.0
- IBM日本和东京三菱银行基于Web服务开
- 基于web的图书馆运营系统
- AdminLTE完整版
- 使用delphi+intraweb进行微信开发1~4代码
- springboot+webflux+mongodb+freemarker
- swift-swift版本的简易WKWebview浏览器带加
- duilib webkit内核浏览器控件
-
A web-ba
sed interview platform with geospat - WebSphere MQ工作原理
- IBM Websphere MQ 教程之备份与恢复
- 通过IBM WebSphere技术Intrix解决方案中已
- 海康摄像头+web3.0开发包SDK的demo
- 2018 传智播客 黑马 web前端视频
- 快速搭建嵌入式Web服务器.pdf
- 戴尔Inspiron笔记本 摄像头工具webcam
- 非常好整合的web后台框架 功能十分强
- CSS权威指南中文第三版高清完整.pdf版
- hackbar.rar
- Web Scraper 爬虫 网页抓取 Chrome插件
- Web大作业 童叟无欺
- Webgame银河帝国OGameCN v1.4 bulid 090109.r
- AR150-S&AR160-S&AR200-S&AR1200-S&AR2200-S&AR32
- 《黑客攻防技术宝典Web实战篇第2版》
- sms短信平台源码webForm
- 黑客攻防技术宝典 浏览器+Web+反病毒
- web-派出所案件管理系统
- weboffice_V7.0.0.2
评论
共有 条评论