mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-10-01 01:45:38 -04:00
c443ef8a3e
Add clang-tidy and splint static analytics check. For now, we use only the cert-* warnings on clang-tidy and run splint with a lot of flags to allow more things. Changes to silence these analytics: - Stop returning stuff from our debug print functions. We don't check them anyway and we don't have any way of detecting transmission failure. - Declare more things static that isn't used outside of a file. - Change types to be more consistent, typically to size_t or something or to uint32_t.
26 lines
463 B
C
26 lines
463 B
C
/*
|
|
* Copyright (C) 2022, 2023 - Tillitis AB
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#include "assert.h"
|
|
#include "led.h"
|
|
#include "lib.h"
|
|
|
|
void assert_fail(const char *assertion, const char *file, unsigned int line,
|
|
const char *function)
|
|
{
|
|
htif_puts("assert: ");
|
|
htif_puts(assertion);
|
|
htif_puts(" ");
|
|
htif_puts(file);
|
|
htif_puts(":");
|
|
htif_putinthex(line);
|
|
htif_puts(" ");
|
|
htif_puts(function);
|
|
htif_lf();
|
|
|
|
forever_redflash();
|
|
// Not reached
|
|
}
|