aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal_dac.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/src/hal_dac.c')
-rw-r--r--os/hal/src/hal_dac.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/src/hal_dac.c b/os/hal/src/hal_dac.c
index 3496bead5..0297f9bd4 100644
--- a/os/hal/src/hal_dac.c
+++ b/os/hal/src/hal_dac.c
@@ -125,7 +125,8 @@ void dacStop(DACDriver *dacp) {
"invalid state");
dac_lld_stop(dacp);
- dacp->state = DAC_STOP;
+ dacp->config = NULL;
+ dacp->state = DAC_STOP;
osalSysUnlock();
}