1 2 3 4 5 6 7 8 9 10
#ifndef HAL_H #define HAL_H #include "rcc.h" void hal_init() { rcc_init(); } #endif