auralix / alx-202-af-10-1-auralix-c-lib

GNU General Public License v3.0
0 stars 0 forks source link

AlxRotSw - Implement AlxRotSw_CodeType_Complement & AlxRotSw_CodeType_Gray #54

Open tomazvidovic opened 9 months ago

tomazvidovic commented 9 months ago
uint8_t AlxRotSw_GetCode(AlxRotSw* me)
{
    // Assert
    ALX_ROT_SW_ASSERT(me->wasCtorCalled == true);
    ALX_ROT_SW_ASSERT(me->isInit == true);

    // TODO
    ALX_ROT_SW_ASSERT(false);

    // Return
    return 0;
}
tomazvidovic commented 8 months ago
else if (me->codeType == AlxRotSw_CodeType_Complement)
{
    // TV: TODO
    ALX_ROT_SW_ASSERT(false);
}
else if (me->codeType == AlxRotSw_CodeType_Gray)
{
    // TV: TODO
    ALX_ROT_SW_ASSERT(false);
}