Merge pull request #7081 from OpenNuvoton/nuvoton_fix_crc

Fix mbed_crc_ctor is missing in some MbedCRC constructor
pull/7080/merge
Martin Kojtal 2018-06-05 14:17:09 +02:00 committed by GitHub
commit 74aec930e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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<>