STM32F0xx Standard Peripherals Firmware Library
|
STM32F0xx_StdPeriph_Examples/USART/USART_Printf/stm32f0xx_it.c File Reference
#include "stm32f0xx_it.h"
#include "main.h"
Go to the source code of this file.
Defines | |
#define | countof(a) (sizeof(a) / sizeof(*(a))) |
#define | RXBUFFERSIZE 0x20 |
#define | TXBUFFERSIZE (countof(TxBuffer) - 1) |
Functions | |
void | HardFault_Handler (void) |
This function handles Hard Fault exception. | |
void | NMI_Handler (void) |
This function handles NMI exception. | |
void | PendSV_Handler (void) |
This function handles PendSVC exception. | |
void | SVC_Handler (void) |
This function handles SVCall exception. | |
void | SysTick_Handler (void) |
This function handles SysTick Handler. | |
void | USART2_IRQHandler (void) |
This function handles PPP interrupt request. | |
Variables | |
uint8_t | NbrOfDataToRead = RXBUFFERSIZE |
uint8_t | NbrOfDataToTransfer = TXBUFFERSIZE |
uint8_t | RxBuffer [RXBUFFERSIZE] |
__IO uint16_t | RxCount = 0 |
uint8_t | TxBuffer [] |
__IO uint8_t | TxCount = 0 |