init commit

This commit is contained in:
2026-03-30 13:45:38 +03:00
commit 0b982e5d4d
570 changed files with 280071 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include "app_subghz_phy.h"
#include "subghz_phy_app.h"
#include "sys_app.h"
#include "stm32_seq.h"
void MX_SubGHz_Phy_Init(void)
{
SystemApp_Init();
SubghzApp_Init();
}
void MX_SubGHz_Phy_Process(void)
{
SubghzApp_Process();
UTIL_SEQ_Run(UTIL_SEQ_DEFAULT);
}