#ifndef __HARDWARE_INIT_H__ #define __HARDWARE_INIT_H__ #include "common_types.h" namespace HardwareInit { RetCode init(); void systemClockConfig(); void peripheralClockEnable(); void gpioInit(); void nvicConfig(); void mpuConfig(); } #endif