aboutsummaryrefslogtreecommitdiff
path: root/include/panic.h
blob: e52bfc8680367e7d39e3ff8ff3acd527a10ffdc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once

#include <stdint.h>

/** flashes a code forever. */
void flash_code(uint32_t code);

/** Panics. Call this function when an error is unrrecoverable. */
void panic(uint32_t code);