idle 상태와 generating 상태 기능 수정

This commit is contained in:
2026-04-15 09:51:49 +09:00
parent ecb0c5477d
commit 65e4a102c6
7 changed files with 291 additions and 347 deletions

11
main.c
View File

@@ -125,7 +125,7 @@ int main(void)
}
else
{
CDebugModeProcedure();
CMaintenanceProcedure();
}
}
}
@@ -659,15 +659,6 @@ void CUpdateFault(Uint32 *pData, Uint16 uiIdx, Uint16 uiCond)
}
}
Uint16 CIsBitSet(Uint32 ulData, Uint16 uiIdx)
{
Uint32 ulMask;
ulMask = 1UL << (Uint32)uiIdx;
return (((ulData & ulMask) != 0UL) ? 1U : 0U);
}
void DELAY_USEC(Uint32 ulMicroSeconds)
{
Uint32 ulDelayCount;