打印
[STM8]

单键作业

[复制链接]
527|3
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
Listate|  楼主 | 2016-8-22 16:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
pi, IO, gp, GPIO, TE
/* Includes ------------------------------------------------------------------*/

#include "stm8s.h"

/* Private defines -----------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------*/
/* Private functions ---------------------------------------------------------*/

BitStatus bit_status;
void Delay(uint16_t nCount)
{
  /* Decrement nCount value */
  while (nCount != 0)
  {   
    nCount--;
  }
}
void main(void)
{
  /* Initialize I/Os in Output Mode */

  GPIO_Init(GPIOE, GPIO_PIN_5, GPIO_MODE_OUT_PP_HIGH_FAST);
  GPIO_Init(GPIOD, GPIO_PIN_ALL, GPIO_MODE_OUT_OD_LOW_FAST);
  GPIO_Init(GPIOA, GPIO_PIN_2, GPIO_MODE_IN_PU_NO_IT);
  GPIO_ExternalPullUpConfig(GPIOA, GPIO_PIN_2, ENABLE);

  while (1)
  {
    /* Toggles LEDs */
/*
    GPIO_Write(GPIOE, 0x20);
    GPIO_Write(GPIOD, 0xFE);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0xFD);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0xFB);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0xF7);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0xEF);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0xDF);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0xBF);
    Delay(0xFFFF);
    GPIO_Write(GPIOD, 0x7F);
    Delay(0xFFFF);
    GPIO_Write(GPIOE, 0x00);
    Delay(0xFFFF);
    Delay(0xFFFF);
    Delay(0xFFFF);
    */
    bit_status = GPIO_ReadInputPin(GPIOA, GPIO_PIN_2);
    if (bit_status == RESET)  //SET or RESET
    {
      GPIO_Write(GPIOE, 0x00);

    }
      GPIO_Write(GPIOE, 0x20);
  }

}

#ifdef USE_FULL_ASSERT

/**
  * @brief  Reports the name of the source file and the source line number
  *   where the assert_param error has occurred.
  * @param file: pointer to the source file name
  * @param line: assert_param error line source number
  * @retval : None
  */
void assert_failed(u8* file, u32 line)
{
  /* User can add his own implementation to report the file name and line number,
     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */

  /* Infinite loop */
  while (1)
  {
  }
}
#endif
沙发
androidbus| | 2016-8-22 16:47 | 只看该作者
看看,怎么没有提供电路图呢?

使用特权

评论回复
板凳
xyz549040622| | 2016-8-22 22:08 | 只看该作者
    if (bit_status == RESET)  //SET or RESET
    {
      GPIO_Write(GPIOE, 0x00);

    }
      GPIO_Write(GPIOE, 0x20);

后面是不是少了个else呢?

使用特权

评论回复
地板
Thethree| | 2016-8-23 09:09 | 只看该作者
单键是什么意思呢,不是矩阵,有个电路图就好了

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

161

主题

1233

帖子

1

粉丝