14 lines
271 B
C
14 lines
271 B
C
/**
|
|
* @file ad9833_device.h
|
|
* @brief AD9833 waveform generator control helpers.
|
|
*/
|
|
|
|
#ifndef AD9833_DEVICE_H
|
|
#define AD9833_DEVICE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void ad9833_apply(uint8_t enabled, uint8_t triangle_mode, uint32_t frequency_word);
|
|
|
|
#endif /* AD9833_DEVICE_H */
|