merging 7 lines at a time
This commit is contained in:
parent
c0234eaeb6
commit
f6a33aa014
|
@ -8,6 +8,11 @@
|
||||||
#ifndef GLOBAL_H_
|
#ifndef GLOBAL_H_
|
||||||
#define GLOBAL_H_
|
#define GLOBAL_H_
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
#include <ch.h>
|
#include <ch.h>
|
||||||
#include <hal.h>
|
#include <hal.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -129,4 +134,8 @@ typedef VirtualTimer virtual_timer_t;
|
||||||
enginePins.communicationPin.setValue(1);
|
enginePins.communicationPin.setValue(1);
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
#endif /* GLOBAL_H_ */
|
#endif /* GLOBAL_H_ */
|
||||||
|
|
Loading…
Reference in New Issue