Files
suffix/SubGHz_Phy/App/app_subghz_phy.c

17 lines
286 B
C
Raw Permalink Normal View History

2026-03-30 13:45:38 +03:00
#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);
}