Compare commits

..

2 Commits

Author SHA1 Message Date
cfif 0a829abe34 Обновление 2025-12-08 15:55:51 +03:00
cfif 2d840a93bc Обновление 2025-12-08 15:51:03 +03:00
3 changed files with 10 additions and 10 deletions

View File

@ -31,9 +31,9 @@ static _Noreturn void Mma_Thread(tMma *env) {
for (;;) {
// GpioPinSet(&env->gpios->Led.ledR, true);
SystemDelayMs(500);
SystemDelayMs(5000);
// GpioPinSet(&env->gpios->Led.ledR, false);
SystemDelayMs(500);
SystemDelayMs(5000);
}
}

View File

@ -36,7 +36,7 @@ static void Mma_InitSubSystems(tMma *env) {
Mma_InitComIntLog(env);
LoggerInfoStatic(&env->slog.logger, LOG_TASK_MAIN, "Инициализация подсистем")
/*
bool result = DeviceStorage_Init(&env->storage, &env->flash->interface_calib, &env->flash->interface_param,
&env->slog.logger);
@ -85,7 +85,7 @@ static void Mma_InitSubSystems(tMma *env) {
LoggerInfoStatic(&env->slog.logger, LOG_TASK_MAIN, "Конец инициализации подсистем")
*/
}

View File

@ -6,11 +6,11 @@
void InitPeripheralInterfaces() {
Gpios_Init();
Adcs_Init();
// Gpios_Init();
// Adcs_Init();
SerialPorts_Init();
CanPorts_Init();
Rtcs_Init();
StorageOnFlash_Init();
Pwms_Init();
// CanPorts_Init();
// Rtcs_Init();
// StorageOnFlash_Init();
// Pwms_Init();
}