Merge branch 'prepare_for_master' of https://git.trustie.net/xuos/xiuos into develop

This commit is contained in:
Wang_Weigen
2022-04-21 16:46:15 +08:00
157 changed files with 25274 additions and 1029 deletions

View File

@@ -40,6 +40,7 @@ extern int FlashW25qxxSpiDeviceInit(void);
extern int LoraSx12xxSpiDeviceInit(void);
extern int FatfsInit(void);
extern int Ch376fsInit(void);
extern int Lwext4Init(void);
extern int LibcSystemInit(void);
extern int RtcNtpSyncInit(void);
extern int MountSDCard(void);

View File

@@ -95,6 +95,9 @@ struct InitSequenceDesc components_init[] =
#endif
#ifdef FS_CH376
{ "ch376", Ch376fsInit },
#endif
#ifdef FS_LWEXT4
{ "lwext4", Lwext4Init },
#endif
{ "libc_system", LibcSystemInit },
#ifdef RTC_SYNC_USING_NTP