资源简介
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应用程序打包
相关资源
- Modbus协议官方文档中、英文全
- Omron ETN21模块进行modbustcp通讯
- stm32f103c8t6 4 oled.rar
- 组态王中S7-300TCP驱动
- 基于Apache Mina实现的TCP长连接和短连接
- CVI下的TCP服务器和客户端
- 代码客:G-TcpServer(IOCP) 1.0 正式版及
- TCP 发包工具(windows)
- VxWorks TCPIP协议栈
- socket小工具(可方便建立TCP UDP的soc
- vc 编写的基于TCP协议的客户/服务器
- 基于CSocket的多人聊天室
- 采用WINSOCK2 编写的TCP/UDP通信程序
- Modbus TCP Client
- STM32F103C8T6+NRF24l01无线通信
- 易语言 TCP使用HTTP、SOCKES5代理IP。
- 西门子S7-1200 MODBUS-TCP通讯编程
- 200SMART Modbus-TCP通信程序演示-轮询(多
- TCP_UDP对结构体加密数据传输
- 基于PIC的TCP/IP网络协议和zigbee无线传
- 欧姆龙PLC tcp通信工具
- 欧姆龙以太网通讯TCP/UDP及欧姆龙PLC程
- 流媒体相关协议标准RTP/RTSP/RTCP PDF文档
- 航海模拟器中DCPA TCPA的算法
- TCPMP 支持ce6.0的播放器
- TCP/IP协议详解3卷全_高清_带书签
- stm32103c8t6ESP8266串口转WIFI模块TCP服务器
- DOS下的TCP-IP协议库文件原代码.rar
- 《TCP/IP详解卷2:实现》pdf
- 《TCP/IP:协议分析与应用编程》课后
评论
共有 条评论