15 lines
306 B
C
15 lines
306 B
C
/**
|
|
* @file stm32_dac_output.h
|
|
* @brief STM32 internal DAC helper for PA4 output generation.
|
|
*/
|
|
|
|
#ifndef STM32_DAC_OUTPUT_H
|
|
#define STM32_DAC_OUTPUT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void stm32_dac_output_init(void);
|
|
void stm32_dac_output_set(uint16_t dac_code, uint8_t enabled);
|
|
|
|
#endif /* STM32_DAC_OUTPUT_H */
|