// Copyright (C) 2026 Allen Hill // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #ifdef __cplusplus extern "C" { #endif // Clock setup + GPIO/pin configuration. Call once, first thing at startup // (before any peripheral init). void board_init(void); // Globally enable interrupts. Call after all peripherals are initialized. void board_interruptsEnable(void); #ifdef __cplusplus } #endif