summaryrefslogtreecommitdiff
path: root/project/Core/Inc/dac.h
blob: 6425c77108d503d9e56c235c06c850526e9085f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * dac.h
 *
 *  Created on: Apr 13, 2022
 *      Author: bruce
 */

#ifndef INC_DAC_H_
#define INC_DAC_H_

#include "stm32l4xx.h"

// Uses A2 on the right connector

void DAC_Init ();
void DAC_Start ();
void DAC_Set_Value (uint32_t value);

#endif /* INC_DAC_H_ */