]> granicus.if.org Git - esp-idf/commitdiff
Oops, left in a debugging break.n. Removed.
authorJeroen Domburg <git@j0h.nl>
Mon, 22 Aug 2016 09:41:55 +0000 (17:41 +0800)
committerJeroen Domburg <git@j0h.nl>
Mon, 22 Aug 2016 09:41:55 +0000 (17:41 +0800)
components/freertos/port.c

index 0be29c19073eaaff67cf778587dcef316bb628e5..8f0a617af1c0eb414a88ad28d5630d78418018e0 100644 (file)
@@ -298,7 +298,6 @@ void vPortCPUAcquireMutex(portMUX_TYPE *mux) {
        uint32_t cnt=(1<<16);
        if ( (mux->mux & portMUX_MAGIC_MASK) != portMUX_MAGIC_VAL ) {
                ets_printf("ERROR: vPortCPUAcquireMutex: mux %p is uninitialized (0x%X)! Called from %s line %d.\n", mux, mux->mux, fnName, line);
-               asm("break.n 1");
                mux->mux=portMUX_FREE_VAL;
        }
 #endif