野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 13885|回复: 3

向各位高手请教一个问题 !!!

[复制链接]
发表于 2016-12-9 13:50:09 | 显示全部楼层 |阅读模式



请问 最后 为什么    bitstatus = GPIO_PIN_SET ,  一个 变量 可以赋值给  一个具有两个成员的枚举变量呢?


typedef enum
{
  GPIO_PIN_RESET = 0,
  GPIO_PIN_SET
}GPIO_PinState;


  ##### IO operation functions #####
===============================================================================

@endverbatim
  * @{
  */

/**
  * @brief  Read the specified input port pin.
  * @param  GPIOx: where x can be (A..H) to select the GPIO peripheral for STM32L4 family
  * @param  GPIO_Pin: specifies the port bit to read.
  *         This parameter can be GPIO_PIN_x where x can be (0..15).
  * @retval The input port pin value.
  */
GPIO_PinState HAL_GPIO_ReadPin(GPIO_TypeDef* GPIOx, uint16_t GPIO_Pin)
{
  GPIO_PinState bitstatus;

  /* Check the parameters */
  assert_param(IS_GPIO_PIN(GPIO_Pin));

  if((GPIOx->IDR & GPIO_Pin) != (uint32_t)GPIO_PIN_RESET)
  {
    bitstatus = GPIO_PIN_SET;
  }
  else
  {
    bitstatus = GPIO_PIN_RESET;
  }
  return bitstatus;
}







回复

使用道具 举报

发表于 2016-12-9 14:18:53 | 显示全部楼层
枚举变量的值就是0或1,一个变量赋值为0或1,完全没问题
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-1-16 09:32:10 | 显示全部楼层
flyleaf 发表于 2016-12-9 14:18
枚举变量的值就是0或1,一个变量赋值为0或1,完全没问题

多谢指教!
回复 支持 反对

使用道具 举报

发表于 2017-1-21 10:49:01 | 显示全部楼层
枚举变量的值就是0或1,一个变量赋值为0或1,完全没问题
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-13 14:11 , Processed in 0.033115 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表