error: #136: struct ""has no field "AHBSTR"

1397 단어 stm32
RL-TCPNet을 이식할 때 공식 이더넷 DP83848칩의 구동을 추가하여 컴파일할 때 계속 오류를 보고하였다
error:  #136: struct ""has no field "AHBSTR"
사용한 것은 처음에 #include'stm32f10x_cl.h'는 문제가 없었지만 저는 나중에 #include'stm32f10x.h'를 사용하려고 했는데 계속 틀렸습니다. 매크로 정의가 작용하지 않은 줄 알았는데 비교를 한 것은 #include'stm32f10x.h'의 _IO uint32_t AHBRSTR;및 #include "stm32f10x_cl.h"의 __IO uint32_t AHBSTR;다르다
#include "stm32f10x.h"
typedef struct
{
  __IO uint32_t CR;
  __IO uint32_t CFGR;
  __IO uint32_t CIR;
  __IO uint32_t APB2RSTR;
  __IO uint32_t APB1RSTR;
  __IO uint32_t AHBENR;
  __IO uint32_t APB2ENR;
  __IO uint32_t APB1ENR;
  __IO uint32_t BDCR;
  __IO uint32_t CSR;

#ifdef STM32F10X_CL  
  __IO uint32_t AHBRSTR;
  __IO uint32_t CFGR2;
#endif /* STM32F10X_CL */ 

#if defined (STM32F10X_LD_VL) || defined (STM32F10X_MD_VL) || defined (STM32F10X_HD_VL)   
  uint32_t RESERVED0;
  __IO uint32_t CFGR2;
#endif /* STM32F10X_LD_VL || STM32F10X_MD_VL || STM32F10X_HD_VL */ 
} RCC_TypeDef;

/** 

#include "stm32f10x_cl.h
typedef struct
{
  __IO uint32_t CR;
  __IO uint32_t CFGR;
  __IO uint32_t CIR;
  __IO uint32_t APB2RSTR;
  __IO uint32_t APB1RSTR;
  __IO uint32_t AHBENR;
  __IO uint32_t APB2ENR;
  __IO uint32_t APB1ENR;
  __IO uint32_t BDCR;
  __IO uint32_t CSR;
  __IO uint32_t AHBSTR;
  __IO uint32_t CFGR2;
} RCC_TypeDef;

좋은 웹페이지 즐겨찾기