STM32F0xx Standard Peripherals Firmware Library
|
Functions | |
void | ADC1_COMP_IRQHandler (void) |
This function handles ADC1 global interrupts requests. | |
static void | ADC_Config (void) |
ADC1 channel configuration. | |
static void | DAC_Config (void) |
Configures the DAC channel 1 with output buffer enabled. | |
void | HardFault_Handler (void) |
This function handles Hard Fault exception. | |
int | main (void) |
Main program. | |
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. | |
Variables | |
uint16_t | ADCVal = 0 |
Function Documentation
void ADC1_COMP_IRQHandler | ( | void | ) |
This function handles ADC1 global interrupts requests.
- Parameters:
-
None
- Return values:
-
None
Definition at line 115 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
References ADCVal.
static void ADC_Config | ( | void | ) | [static] |
ADC1 channel configuration.
- Parameters:
-
None
- Return values:
-
None
Definition at line 115 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/main.c.
References GPIO_InitStructure, and NVIC_InitStructure.
Referenced by main().
static void DAC_Config | ( | void | ) | [static] |
Configures the DAC channel 1 with output buffer enabled.
- Parameters:
-
None
- Return values:
-
None
Definition at line 80 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/main.c.
References DAC_InitStructure, and GPIO_InitStructure.
Referenced by main().
void HardFault_Handler | ( | void | ) |
This function handles Hard Fault exception.
- Parameters:
-
None
- Return values:
-
None
Definition at line 68 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
int main | ( | void | ) |
Main program.
- Parameters:
-
None
- Return values:
-
None
< At this stage the microcontroller clock setting is already configured, this is done through SystemInit() function which is called from startup file (startup_stm32f0xx.s) before to branch to application main. To reconfigure the default setting of SystemInit() function, refer to system_stm32f0xx.c file
Definition at line 54 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/main.c.
References ADC_Config(), and DAC_Config().
void NMI_Handler | ( | void | ) |
This function handles NMI exception.
- Parameters:
-
None
- Return values:
-
None
Definition at line 59 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
void PendSV_Handler | ( | void | ) |
This function handles PendSVC exception.
- Parameters:
-
None
- Return values:
-
None
Definition at line 90 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
void SVC_Handler | ( | void | ) |
This function handles SVCall exception.
- Parameters:
-
None
- Return values:
-
None
Definition at line 81 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
void SysTick_Handler | ( | void | ) |
This function handles SysTick Handler.
- Parameters:
-
None
- Return values:
-
None
Definition at line 99 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
Variable Documentation
uint16_t ADCVal = 0 |
Definition at line 45 of file STM32F0xx_StdPeriph_Examples/DAC/DAC_ADC/stm32f0xx_it.c.
Referenced by ADC1_COMP_IRQHandler().