Add missing files.

This commit is contained in:
David Given
2019-11-29 18:49:22 +01:00
parent 1e012699af
commit 3094c5c919
5 changed files with 247 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#include "cyfitter_cfg.h"
#include "cydevice_trm.h"
#include "cyfitter.h"
#include "`$INSTANCE_NAME`_h.h"
void `$INSTANCE_NAME`_Start()
{
`$INSTANCE_NAME`_Init();
}
void `$INSTANCE_NAME`_Stop()
{
`$INSTANCE_NAME`_Disable();
}
void `$INSTANCE_NAME`_Init()
{
`$INSTANCE_NAME`_Enable();
}
void `$INSTANCE_NAME`_Enable()
{
}
void `$INSTANCE_NAME`_Disable()
{
}
/* [] END OF FILE */