mirror of
https://github.com/markqvist/OpenModem.git
synced 2024-10-01 03:15:46 -04:00
11 lines
167 B
C
11 lines
167 B
C
#ifndef VREF_H
|
|
#define VREF_H
|
|
|
|
#include <avr/io.h>
|
|
#include "device.h"
|
|
|
|
void VREF_init(void);
|
|
void vref_setADC(uint8_t value);
|
|
void vref_setDAC(uint8_t value);
|
|
|
|
#endif |