资源简介
STM32F103C8T6核心板 + ENC28J60 调试成功,连接网络可以Ping通,TCP调试OK,UDP调试OK
1.串口1 比特率 19200 , 发送TCP/IP 接收数据,UDP接收数据 ,串口接收数据
* 硬件连接:------------------------
* | PA9 - USART1(Tx) |
* | PA10 - USART1(Rx) |
* ------------------------
2.SPI1 硬件连接 /* 双线双向全双工 */ /* 主机模式 */
* 硬件连接: ------------------------------------
* |PB13 :ENC28J60-INT (没用到)|
* |PA6-SPI1-MISO:ENC28J60-SO |
* |PA7-SPI1-MOSI:ENC28J60-SI |
* |PA5-SPI1-SCK :ENC28J60-SCK |
* |PA4-SPI1-NSS :ENC28J60-CS |
* |PE1 :ENC28J60-RST (没用) |
* ------------------------------------
代码片段和文件信息
/******************************************************************************
* @file: core_cm3.c
* @purpose: CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version: V1.10
* @date: 24. Feb. 2009
*----------------------------------------------------------------------------
*
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* ARM Limited (ARM) is supplying this software for use with Cortex-Mx
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* THIS SOFTWARE IS PROVIDED “AS IS“. NO WARRANTIES WHETHER EXPRESS IMPLIED
* OR STATUTORY INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
* ARM SHALL NOT IN ANY CIRCUMSTANCES BE LIABLE FOR SPECIAL INCIDENTAL OR
* CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER.
*
******************************************************************************/
#include
/* define compiler specific symbols */
#if defined ( __CC_ARM )
#define __ASM __asm /*!< asm keyword for armcc */
#define __INLINE __inline /*!< inline keyword for armcc */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for iarcc */
#define __INLINE inline /*!< inline keyword for iarcc. Only avaiable in High optimization mode! */
#define __nop __no_operation /*!< no operation intrinsic in iarcc */
#elif defined ( __GNUC__ )
#define __ASM asm /*!< asm keyword for gcc */
#define __INLINE inline /*!< inline keyword for gcc */
#endif
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/**
* @brief Return the Process Stack Pointer
*
* @param none
* @return uint32_t ProcessStackPointer
*
* Return the actual process stack pointer
*/
__ASM uint32_t __get_PSP(void)
{
mrs r0 psp
bx lr
}
/**
* @brief Set the Process Stack Pointer
*
* @param uint32_t Process Stack Pointer
* @return none
*
* Assign the value ProcessStackPointer to the MSP
* (process stack pointer) Cortex processor register
*/
__ASM void __set_PSP(uint32_t topOfProcStack)
{
msr psp r0
bx lr
}
/**
* @brief Return the Main Stack Pointer
*
* @param none
* @return uint32_t Main Stack Pointer
*
* Return the current value of the MSP (main stack pointer)
* Cortex processor register
*/
__ASM uint32_t __get_MSP(void)
{
mrs r0 msp
bx lr
}
/**
* @brief Set the Main Stack Pointer
*
* @param uint32_t Main Stack Pointer
* @return none
*
* Assign the value mainStackPointer to the MSP
* (main stack pointer) Cortex processor register
*/
__ASM void __set_MSP(uint32_t mainStackP
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
ICA.... 16249 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\CMSIS\core_cm3.c
ICA.... 42077 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\CMSIS\core_cm3.h
ICA.... 15872 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\CMSIS\startup\startup_stm32f10x_hd.s
ICA.... 12236 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\CMSIS\startup\startup_stm32f10x_ld.s
ICA.... 12564 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\CMSIS\startup\startup_stm32f10x_md.s
ICA.... 530933 2011-06-06 20:02 @stm32+ENC28J60+uart+udp\CMSIS\stm32f10x.h
ICA.... 19198 2010-03-30 14:51 @stm32+ENC28J60+uart+udp\CMSIS\stm32f10x_nvic.h
ICA.... 25000 2018-11-20 17:04 @stm32+ENC28J60+uart+udp\CMSIS\system_stm32f10x.c
ICA.... 2158 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\CMSIS\system_stm32f10x.h
ICA.... 708 2018-11-22 10:53 @stm32+ENC28J60+uart+udp\Doc\说明.txt
ICA.... 4951 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\misc.h
ICA.... 19558 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_adc.h
ICA.... 7373 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_bkp.h
ICA.... 14289 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_can.h
ICA.... 1980 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_crc.h
ICA.... 10271 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_dac.h
ICA.... 2980 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_dbgmcu.h
ICA.... 18790 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_dma.h
ICA.... 5833 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_exti.h
ICA.... 14446 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_flash.h
ICA.... 17276 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_fsmc.h
ICA.... 15199 2011-06-06 11:36 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_gpio.h
ICA.... 16923 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_i2c.h
ICA.... 3677 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_iwdg.h
ICA.... 3200 2010-03-30 14:51 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_lib.h
ICA.... 4201 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_pwr.h
ICA.... 16258 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_rcc.h
ICA.... 3659 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_rtc.h
ICA.... 18598 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_sdio.h
ICA.... 14896 2009-04-06 10:30 @stm32+ENC28J60+uart+udp\FWlib\inc\stm32f10x_spi.h
............此处省略124个文件信息
- 上一篇:War-ftp 1.65安装包
- 下一篇:arcGIS Engine应用程序打包
相关资源
- S7-1500ModbusTCP通信_内带PortalV15程序
- TCPIP协议原理课件
- IP抓包工具
- EC20状态机代码TCP传GPS数据
- 简单的RTSP RTP RTCP推送H264码流服务器实
- 网络协议分析
- stm32f103c8t6 驱动ili9341 2.8寸TFT LCD液晶显
- CodeSys如何实现TCPIP通信
- 用VC2010编写的基于TCPIP的Modbus网络通讯
- ENC28J60最全资料,含51AVRLPCSTM32程序源
- 基于stm32F103c8t6和GPS模块做的小玩意儿
- 基于tcp的异步套接字客户端服务端通
- 网络嗅探,主机扫描,端口扫描
- 串口调试助手+TCP/IP通信+源码
- Esp8266】百万条消息免费之乐鑫esp826
- 8266的所有的UDP、TCP协议的工程
- AD9959 stm32f103c8t6 驱动
- stm32f103c8t6数据手册
- TCP_IP协议分析软件(网络抓包程序)
- 西门子S7-200Smart Modbus TCP协议通讯主站
- 串口与蓝牙串口stm32f103C8T6通用系列
- 得利捷读码器通讯设置.rar
- TCP网络验证
- 基于STM32F103C8T6超声波测距源码及接线
- 安卓上位机与开发板WiFi通信 TCP协议
- 兄弟机床通信协议
- 基于STM32F103的温湿度SI7021程序
- STM32F103C8T6按键调整参数断电保护,温
- ENC28j60 STM32程序
- TCP通信存入数据库
评论
共有 条评论