• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C语言结构体赋值的方法之宏定义

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
今天发现结构体赋值可以用宏定义的办法来赋值
typedef struct {
  I2C_TypeDef           *port;          /**< Peripheral port */
  GPIO_Port_TypeDef     sclPort;        /**< SCL pin port number */
  uint8_t               sclPin;         /**< SCL pin number */
  GPIO_Port_TypeDef     sdaPort;        /**< SDA pin port number */
  uint8_t               sdaPin;         /**< SDA pin number */
#if defined(_SILICON_LABS_32B_SERIES_0)
  uint8_t               portLocation;   /**< Port location */
#elif defined(_SILICON_LABS_32B_SERIES_1)
  uint8_t               portLocationScl; /**< Port location of SCL signal */
  uint8_t               portLocationSda; /**< Port location of SDA signal */
#endif
  uint32_t              i2cRefFreq;     /**< I2C reference clock */
  uint32_t              i2cMaxFreq;     /**< I2C max bus frequency to use */
  I2C_ClockHLR_TypeDef  i2cClhr;        /**< Clock low/high ratio control */
} I2CSPM_Init_TypeDef;
 1 #define I2CSPM_INIT_DEFAULT                                                    \
 2   { I2C0,                       /* Use I2C instance 0 */                       \
 3     gpioPortC,                  /* SCL port */                                 \
 4     5,                          /* SCL pin */                                  \
 5     gpioPortC,                  /* SDA port */                                 \
 6     4,                          /* SDA pin */                                  \
 7     0,                          /* Location */                                 \
 8     0,                          /* Use currently configured reference clock */ \
 9     I2C_FREQ_STANDARD_MAX,      /* Set to standard rate  */                    \
10     i2cClockHLRStandard,        /* Set to use 4:4 low/high duty cycle */       \
11   }

 

这样定义后,结构体就可以这样赋值

 I2CSPM_Init_TypeDef I2C_Init = I2CSPM_INIT_DEFAULT;

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C语言学习感想发布时间:2022-07-13
下一篇:
C++之string学习笔记(2)发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap