ARM day9作业

实现中断触发时,对应LED中状态取反,同时打印一句话

void HAL_GPIO_EXTI_Falling_Callback(uint16_t GPIO_Pin)
{
	switch(GPIO_Pin)
	{
		//key2--->LED2
		case GPIO_PIN_7:
			HAL_GPIO_TogglePin(GPIOF, GPIO_PIN_10);
			printf("key2,LED2\n");
			break;
		//key3--->LED1
		case GPIO_PIN_8:
			HAL_GPIO_TogglePin(GPIOE, GPIO_PIN_10);
			printf("key3,LED1\n");
			break;
		//key1--->LED3
		case GPIO_PIN_9:
			HAL_GPIO_TogglePin(GPIOE, GPIO_PIN_8);
			printf("key1,LED3\n");
			break;
	}
}
int fputc(int ch,FILE* stream)
{
	while(!(huart4.Instance->ISR&(0x1<<7)));
	huart4.Instance->TDR=ch;
	if(ch=='\n')
	{
		while(!(huart4.Instance->ISR&(0x1<<7)));
		huart4.Instance->TDR='\r';
	}
	return ch;
}

 

 

你可能感兴趣的:(arm,c语言,算法)