Начало

This commit is contained in:
cfif 2026-03-16 15:06:05 +03:00
parent 9db1cec7f1
commit 00be00c155
3 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,7 @@ static void Mma_InitSubSystems(tMma *env) {
TaskSerialUART_Init(&env->TaskSerialUART,
0,
1,
&env->serialPorts->Rs232_IO,
&env->canPorts->Can1_IO
);

View File

@ -8,5 +8,6 @@
void InitPeripheralInterfaces() {
Gpios_Init();
SerialPorts_Init(&GPIOS.comIntDir);
CanPorts_Init();
Rtcs_Init();
}

View File

@ -7,6 +7,7 @@
#include "Gpios.h"
#include "SerialPorts.h"
#include "CanPorts.h"
#include "Rtcs.h"
void InitPeripheralInterfaces();