Compare commits
No commits in common. "0a829abe346afc2f9dd8f4330e4894786d62947c" and "dac1f3c39785865a9e2e28fedec1ae35e54fa7cd" have entirely different histories.
0a829abe34
...
dac1f3c397
|
|
@ -31,9 +31,9 @@ static _Noreturn void Mma_Thread(tMma *env) {
|
||||||
for (;;) {
|
for (;;) {
|
||||||
|
|
||||||
// GpioPinSet(&env->gpios->Led.ledR, true);
|
// GpioPinSet(&env->gpios->Led.ledR, true);
|
||||||
SystemDelayMs(5000);
|
SystemDelayMs(500);
|
||||||
// GpioPinSet(&env->gpios->Led.ledR, false);
|
// GpioPinSet(&env->gpios->Led.ledR, false);
|
||||||
SystemDelayMs(5000);
|
SystemDelayMs(500);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ static void Mma_InitSubSystems(tMma *env) {
|
||||||
|
|
||||||
Mma_InitComIntLog(env);
|
Mma_InitComIntLog(env);
|
||||||
LoggerInfoStatic(&env->slog.logger, LOG_TASK_MAIN, "Инициализация подсистем")
|
LoggerInfoStatic(&env->slog.logger, LOG_TASK_MAIN, "Инициализация подсистем")
|
||||||
/*
|
|
||||||
bool result = DeviceStorage_Init(&env->storage, &env->flash->interface_calib, &env->flash->interface_param,
|
bool result = DeviceStorage_Init(&env->storage, &env->flash->interface_calib, &env->flash->interface_param,
|
||||||
&env->slog.logger);
|
&env->slog.logger);
|
||||||
|
|
||||||
|
|
@ -85,7 +85,7 @@ static void Mma_InitSubSystems(tMma *env) {
|
||||||
|
|
||||||
|
|
||||||
LoggerInfoStatic(&env->slog.logger, LOG_TASK_MAIN, "Конец инициализации подсистем")
|
LoggerInfoStatic(&env->slog.logger, LOG_TASK_MAIN, "Конец инициализации подсистем")
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,11 +6,11 @@
|
||||||
|
|
||||||
|
|
||||||
void InitPeripheralInterfaces() {
|
void InitPeripheralInterfaces() {
|
||||||
// Gpios_Init();
|
Gpios_Init();
|
||||||
// Adcs_Init();
|
Adcs_Init();
|
||||||
SerialPorts_Init();
|
SerialPorts_Init();
|
||||||
// CanPorts_Init();
|
CanPorts_Init();
|
||||||
// Rtcs_Init();
|
Rtcs_Init();
|
||||||
// StorageOnFlash_Init();
|
StorageOnFlash_Init();
|
||||||
// Pwms_Init();
|
Pwms_Init();
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue