Home
last modified time | relevance | path

Searched refs:ucResult (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_BitConfig/
HDFreeRTOS_BitConfig_utest.c326 uint8_t ucResult; in test_ucBitConfig_read_8_fail() local
331 ucResult = ucBitConfig_read_8( pxConfig ); in test_ucBitConfig_read_8_fail()
333 TEST_ASSERT_EQUAL( 0xffU, ucResult ); in test_ucBitConfig_read_8_fail()
346 uint8_t ucResult; in test_xBitConfig_read_8_HappyPath() local
356 ucResult = ucBitConfig_read_8( pxConfig ); in test_xBitConfig_read_8_HappyPath()
358 TEST_ASSERT_EQUAL( ucContents[ 0 ], ucResult ); in test_xBitConfig_read_8_HappyPath()
371 uint16_t ucResult; in test_usBitConfig_read_16_fail() local
376 ucResult = usBitConfig_read_16( pxConfig ); in test_usBitConfig_read_16_fail()
378 TEST_ASSERT_EQUAL( 0xffffU, ucResult ); in test_usBitConfig_read_16_fail()
392 uint16_t ucResult, ucResultExpected; in test_usBitConfig_read_16_HappyPath() local
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/
HDFreeRTOS_BitConfig.c175 uint8_t ucResult = 0xffU; in ucBitConfig_read_8() local
176 const size_t uxNeeded = sizeof ucResult; in ucBitConfig_read_8()
177 uint8_t pucData[ sizeof ucResult ]; in ucBitConfig_read_8()
181 ucResult = pucData[ 0 ]; in ucBitConfig_read_8()
184 return ucResult; in ucBitConfig_read_8()