mirror of
https://github.com/halleysfifthinc/AVCLAN-Mockingboard.git
synced 2026-08-11 08:22:52 +00:00
20 lines
432 B
C
20 lines
432 B
C
// Copyright (C) 2026 Allen Hill <allenofthehills@gmail.com>
|
|
// 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
|