This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.

28 lines
452 B
C
Raw Normal View History

2023-08-24 17:26:42 +02:00
#include "mcc_generated_files/mcc.h"
#include "xf/xf.h"
#include "app/factory/factory.h"
2023-08-22 09:22:00 +02:00
void main(void)
{
2023-09-05 17:43:41 +02:00
2023-08-22 09:22:00 +02:00
SYSTEM_Initialize();
XF_init();
Factory_init();
Factory_build();
Factory_start();
2023-09-05 11:06:23 +02:00
//WWDT_SoftEnable();
2023-09-05 17:43:41 +02:00
2023-08-22 09:22:00 +02:00
TMR0_SetInterruptHandler(XF_decrementAndQueueTimers);
2023-09-05 17:43:41 +02:00
2023-08-29 15:18:04 +02:00
INTERRUPT_GlobalInterruptEnable();
2023-08-22 09:22:00 +02:00
while (1)
{
2023-09-05 17:43:41 +02:00
2023-09-05 11:06:23 +02:00
WWDT_TimerClear();
2023-08-22 09:22:00 +02:00
XF_executeOnce();
2023-09-05 17:43:41 +02:00
2023-08-22 09:22:00 +02:00
}
}