aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/include/adc.h5
-rw-r--r--os/hal/src/adc.c2
2 files changed, 4 insertions, 3 deletions
diff --git a/os/hal/include/adc.h b/os/hal/include/adc.h
index 8bc013b38..b0d6d0938 100644
--- a/os/hal/include/adc.h
+++ b/os/hal/include/adc.h
@@ -124,9 +124,10 @@ typedef enum {
*/
#define _adc_wakeup_isr(adcp) { \
if ((adcp)->thread != NULL) { \
- Thread *tp = (adcp)->thread; \
- (adcp)->thread = NULL; \
+ Thread *tp; \
chSysLockFromIsr(); \
+ tp = (adcp)->thread; \
+ (adcp)->thread = NULL; \
tp->p_u.rdymsg = RDY_OK; \
chSchReadyI(tp); \
chSysUnlockFromIsr(); \
diff --git a/os/hal/src/adc.c b/os/hal/src/adc.c
index 956c7837f..b70c46e1c 100644
--- a/os/hal/src/adc.c
+++ b/os/hal/src/adc.c
@@ -271,7 +271,7 @@ msg_t adcConvert(ADCDriver *adcp,
msg_t msg;
chSysLock();
- chDbgAssert(grpp->end_cb == NULL, "adcConvert(), #1", "has callback");
+ chDbgAssert(adcp->thread == NULL, "adcConvert(), #1", "already waiting");
adcStartConversionI(adcp, grpp, samples, depth);
(adcp)->thread = chThdSelf();
chSchGoSleepS(THD_STATE_SUSPENDED);