aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/src/hal_ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/src/hal_ext.c')
-rw-r--r--os/hal/src/hal_ext.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/os/hal/src/hal_ext.c b/os/hal/src/hal_ext.c
index 9d0c6ff33..658640e31 100644
--- a/os/hal/src/hal_ext.c
+++ b/os/hal/src/hal_ext.c
@@ -106,10 +106,14 @@ void extStop(EXTDriver *extp) {
osalDbgCheck(extp != NULL);
osalSysLock();
+
osalDbgAssert((extp->state == EXT_STOP) || (extp->state == EXT_ACTIVE),
"invalid state");
+
ext_lld_stop(extp);
- extp->state = EXT_STOP;
+ extp->config = NULL;
+ extp->state = EXT_STOP;
+
osalSysUnlock();
}