1// Copyright © 2025 David Haig
2// SPDX-License-Identifier: MIT
3
4pub mod double_buffer;
5pub mod hardware;
6pub mod rcc_setup;
7
8use embedded_alloc::Heap;
9
10#[global_allocator]
11pub static ALLOCATOR: Heap = Heap::empty();
12