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.
20 lines
319 B
20 lines
319 B
//
|
|
// Created by MightyPork on 2018/02/03.
|
|
//
|
|
|
|
#ifndef GEX_F072_DIN_INIT_H
|
|
#define GEX_F072_DIN_INIT_H
|
|
|
|
#ifndef DIN_INTERNAL
|
|
#error bad include!
|
|
#endif
|
|
|
|
#include "unit_base.h"
|
|
|
|
/** Finalize unit set-up */
|
|
error_t DI_init(Unit *unit);
|
|
|
|
/** Tear down the unit */
|
|
void DI_deInit(Unit *unit);
|
|
|
|
#endif //GEX_F072_DIN_INIT_H
|
|
|