Advanced Distributed Systems module at HSLU
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
* 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_ */
|
|
|