/* * platform.h * * Created on: 29.09.2022 * Author: jonas */ #ifndef PLATFORM_H_ #define PLATFORM_H_ /* SETTINGS */ #define APP_DEBUG /* Platform initialization */ void PL_Init(void); /* Platform de-initialization */ void PL_Deinit(void); #endif /* PLATFORM_H_ */