diff options
Diffstat (limited to 'os/hal/src/hal_gpt.c')
-rw-r--r-- | os/hal/src/hal_gpt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/os/hal/src/hal_gpt.c b/os/hal/src/hal_gpt.c index cd08a2779..b224fc5fb 100644 --- a/os/hal/src/hal_gpt.c +++ b/os/hal/src/hal_gpt.c @@ -104,10 +104,14 @@ void gptStop(GPTDriver *gptp) { osalDbgCheck(gptp != NULL);
osalSysLock();
+
osalDbgAssert((gptp->state == GPT_STOP) || (gptp->state == GPT_READY),
"invalid state");
+
gpt_lld_stop(gptp);
- gptp->state = GPT_STOP;
+ gptp->config = NULL;
+ gptp->state = GPT_STOP;
+
osalSysUnlock();
}
|