1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/debug_irq_disable/debug_irq_disable.c
2022-11-24 21:27:20 +01:00

55 lines
1.1 KiB
C

/*
* Copyright (C) 2022 ML!PA Consulting GmbH
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup debug_irq_disable
* @{
*
* @file
* @brief Helper for debug_irq_disable
*
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
* @}
*/
#include <stdbool.h>
#include "fmt.h"
#include "debug_irq_disable.h"
void debug_irq_disable_print(const char *file, unsigned line, uint32_t ticks)
{
static unsigned is_printing;
static unsigned init_skip = 10;
/* if we try to print before libc is initialized, we will hard fault */
if (init_skip && --init_skip) {
return;
}
if (is_printing) {
return;
}
if (ticks < CONFIG_DEBUG_IRQ_DISABLE_THRESHOLD) {
return;
}
/* prevent infinite recursion if stdio driver uses irq_disable() */
++is_printing;
print_str("irq disabled for ");
print_u32_dec(ticks);
print_str(" ticks in ");
print_str(file);
print_str(":");
print_u32_dec(line);
print_str("\n");
--is_printing;
}