mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7081 from OpenNuvoton/nuvoton_fix_crc
Fix mbed_crc_ctor is missing in some MbedCRC constructorpull/7080/merge
commit
74aec930e6
|
|
@ -53,6 +53,7 @@ MbedCRC<POLY_16BIT_CCITT, 16>::MbedCRC(uint32_t initial_xor, uint32_t final_xor,
|
|||
_initial_value(initial_xor), _final_xor(final_xor), _reflect_data(reflect_data), _reflect_remainder(reflect_remainder),
|
||||
_crc_table((uint32_t *)Table_CRC_16bit_CCITT)
|
||||
{
|
||||
mbed_crc_ctor();
|
||||
}
|
||||
|
||||
template<>
|
||||
|
|
|
|||
Loading…
Reference in New Issue