aboutsummaryrefslogtreecommitdiff
path: root/dac.h
blob: f1494f40271ec7a197a8c998c0973f4523f64811 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _H_DAC
#define _H_DAC

#include <stdint.h>

void dac_init(void);
inline void dac_set(uint8_t value);

#endif