14 lines
252 B
C
14 lines
252 B
C
/**
|
|
* @file laser_dac.h
|
|
* @brief Drivers for the external laser-current and TEC DAC channels.
|
|
*/
|
|
|
|
#ifndef LASER_DAC_H
|
|
#define LASER_DAC_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void laser_dac_write_channel(uint8_t channel, uint16_t value);
|
|
|
|
#endif /* LASER_DAC_H */
|