17 lines
299 B
C
17 lines
299 B
C
|
/*
|
||
|
* PusPacketCreator.h
|
||
|
*
|
||
|
* Created on: 21.03.2019
|
||
|
* Author: gaisser
|
||
|
*/
|
||
|
|
||
|
#ifndef MISSION_UTILITY_PUSPACKETCREATOR_H_
|
||
|
#define MISSION_UTILITY_PUSPACKETCREATOR_H_
|
||
|
|
||
|
class PusPacketCreator {
|
||
|
public:
|
||
|
static void createPusPacketAndPrint();
|
||
|
};
|
||
|
|
||
|
#endif /* MISSION_UTILITY_PUSPACKETCREATOR_H_ */
|