18 lines
247 B
C++
18 lines
247 B
C++
#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
|