STM32F103 - USART Interrupt 소스
stm32f103 / usart / usart interrupt USART Polling 방식은 이전의 포스팅에서 구현을 했으니 이번엔 Interrupt 방식을 구현 할 차례이다. 쿼드콥터의 제어 코드가 돌아가는 중에 조종 데이터를 전송 받아야 하니 Polling 방식은 부적절 하다고 볼 수 있다. 그래서 Interrupt 방식의 USART 통신을 구현해야 한다. #include "stm32f10x_conf.h" //stm32f10x_conf.h 파일에는 필요한 각종 헤더를 포함시키는 코드를 삽입 //stm32f10x_gpio.h ~_usart.h ~_rcc.h //misc.h void USART2_IRQHandler(void); int putchar(int ch); u16 tmp; int main() ..
Development/Embedded
2020. 1. 20. 12:18