下降沿
void HAL_GPIO_EXTI_Falling_Callback(uint16_t GPIO_Pin)
{
switch(GPIO_Pin)
{
case GPIO_PIN_7:
HAL_GPIO_TogglePin(GPIOF,GPIO_PIN_10);
printf("key2 down!!!\n");
break;
case GPIO_PIN_8:
HAL_GPIO_TogglePin(GPIOE,GPIO_PIN_10);
printf("key3 down!!!\n");
break;
case GPIO_PIN_9:
HAL_GPIO_TogglePin(GPIOE,GPIO_PIN_8);
printf("key1 down!!!\n");
break;
}
}
上升沿
void HAL_GPIO_EXTI_Rising_Callback(uint16_t GPIO_Pin)
{
switch(GPIO_Pin)
{
case GPIO_PIN_12:
HAL_GPIO_TogglePin(GPIOF,GPIO_PIN_10);
printf("key2 down!!!\n");
break;
case GPIO_PIN_15:
HAL_GPIO_TogglePin(GPIOE,GPIO_PIN_10);
printf("key3 down!!!\n");
break;
case GPIO_PIN_5:
HAL_GPIO_TogglePin(GPIOE,GPIO_PIN_8);
printf("key1 down!!!\n");
break;
}
}
fputc重写
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;
}