资源简介

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个文件信息

评论

共有 条评论