mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-22 01:27:11 +08:00
feat(mbedtls): remove util algorithm and add them to esp8266 rom and mbedtls
This commit is contained in:
@ -2,7 +2,7 @@ if(BOOTLOADER_BUILD)
|
||||
# For bootloader, all we need from esp8266 is headers
|
||||
set(COMPONENT_ADD_INCLUDEDIRS include)
|
||||
# set(COMPONENT_REQUIRES ${COMPONENTS})
|
||||
set(COMPONENT_SRCS source/ets_printf.c)
|
||||
set(COMPONENT_SRCS source/ets_printf.c source/crc.c)
|
||||
register_component(esp8266)
|
||||
|
||||
# as cmake won't attach linker args to a header-only library, attach
|
||||
@ -29,6 +29,7 @@ else()
|
||||
"source/esp_wifi_os_adapter.c"
|
||||
"source/esp_wifi.c"
|
||||
"source/ets_printf.c"
|
||||
"source/crc.c"
|
||||
"source/phy_init.c"
|
||||
"source/reset_reason.c"
|
||||
"source/startup.c"
|
||||
@ -52,7 +53,7 @@ else()
|
||||
set(include_dirs "include" "include/driver")
|
||||
|
||||
set(requires "esp_common" "esp_event")
|
||||
set(priv_requires "wpa_supplicant" "log" "spi_flash" "tcpip_adapter" "esp_ringbuf" "bootloader_support" "nvs_flash" "util")
|
||||
set(priv_requires "wpa_supplicant" "log" "spi_flash" "tcpip_adapter" "esp_ringbuf" "bootloader_support" "nvs_flash")
|
||||
set(fragments linker.lf ld/esp8266_fragments.lf ld/esp8266_bss_fragments.lf)
|
||||
|
||||
idf_component_register(SRCS "${srcs}"
|
||||
@ -63,7 +64,7 @@ else()
|
||||
REQUIRED_IDF_TARGETS esp8266)
|
||||
|
||||
target_link_libraries(${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib" "-lstdc++")
|
||||
|
||||
target_compile_definitions(${COMPONENT_LIB} PUBLIC -DUSING_IBUS_FASTER_GET)
|
||||
if(NOT CONFIG_NO_BLOBS)
|
||||
set(blobs "gcc" "hal" "core" "net80211" "phy" "rtc" "clk" "pp" "smartconfig" "ssc" "wpa" "espnow" "wps" "wpa2")
|
||||
foreach(blob ${blobs})
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Component Makefile
|
||||
#
|
||||
ifdef IS_BOOTLOADER_BUILD
|
||||
COMPONENT_OBJS := source/ets_printf.o
|
||||
COMPONENT_OBJS := source/ets_printf.o source/crc.o
|
||||
COMPONENT_SRCDIRS := source
|
||||
else
|
||||
COMPONENT_ADD_INCLUDEDIRS += include
|
||||
@ -20,6 +20,7 @@ LIBS += gcc hal core_dbg net80211_dbg \
|
||||
endif
|
||||
endif
|
||||
|
||||
CFLAGS += -DUSING_IBUS_FASTER_GET
|
||||
#Linker scripts used to link the final application.
|
||||
#Warning: These linker scripts are only used when the normal app is compiled; the bootloader
|
||||
#specifies its own scripts.
|
||||
|
138
components/esp8266/include/esp_crc.h
Normal file
138
components/esp8266/include/esp_crc.h
Normal file
@ -0,0 +1,138 @@
|
||||
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef __CRC_H_
|
||||
#define __CRC_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/** \defgroup uart_apis, uart configuration and communication related apis
|
||||
* @brief uart apis
|
||||
*/
|
||||
|
||||
/** @addtogroup uart_apis
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
||||
/* Standard CRC8/16/32 algorithms. */
|
||||
// CRC-8 x8+x2+x1+1 0x07
|
||||
// CRC16-CCITT x16+x12+x5+1 1021 ISO HDLC, ITU X.25, V.34/V.41/V.42, PPP-FCS
|
||||
// CRC32:
|
||||
//G(x) = x32 +x26 + x23 + x22 + x16 + x12 + x11 + x10 + x8 + x7 + x5 + x4 + x2 + x1 + 1
|
||||
//If your buf is not continuous, you can use the first result to be the second parameter.
|
||||
|
||||
/**
|
||||
* @brief Crc32 value that is in little endian.
|
||||
*
|
||||
* @param uint32_t crc : init crc value, use 0 at the first use.
|
||||
*
|
||||
* @param uint8_t const *buf : buffer to start calculate crc.
|
||||
*
|
||||
* @param uint32_t len : buffer length in byte.
|
||||
*
|
||||
* @return None
|
||||
*/
|
||||
uint32_t crc32_le(uint32_t crc, uint8_t const *buf, uint32_t len);
|
||||
|
||||
/**
|
||||
* @brief Crc32 value that is in big endian.
|
||||
*
|
||||
* @param uint32_t crc : init crc value, use 0 at the first use.
|
||||
*
|
||||
* @param uint8_t const *buf : buffer to start calculate crc.
|
||||
*
|
||||
* @param uint32_t len : buffer length in byte.
|
||||
*
|
||||
* @return None
|
||||
*/
|
||||
uint32_t crc32_be(uint32_t crc, uint8_t const *buf, uint32_t len);
|
||||
|
||||
/**
|
||||
* @brief Crc16 value that is in little endian.
|
||||
*
|
||||
* @param uint16_t crc : init crc value, use 0 at the first use.
|
||||
*
|
||||
* @param uint8_t const *buf : buffer to start calculate crc.
|
||||
*
|
||||
* @param uint32_t len : buffer length in byte.
|
||||
*
|
||||
* @return None
|
||||
*/
|
||||
uint16_t crc16_le(uint16_t crc, uint8_t const *buf, uint32_t len);
|
||||
|
||||
/**
|
||||
* @brief Crc16 value that is in big endian.
|
||||
*
|
||||
* @param uint16_t crc : init crc value, use 0 at the first use.
|
||||
*
|
||||
* @param uint8_t const *buf : buffer to start calculate crc.
|
||||
*
|
||||
* @param uint32_t len : buffer length in byte.
|
||||
*
|
||||
* @return None
|
||||
*/
|
||||
uint16_t crc16_be(uint16_t crc, uint8_t const *buf, uint32_t len);
|
||||
|
||||
/**
|
||||
* @brief Crc8 value that is in little endian.
|
||||
*
|
||||
* @param uint8_t crc : init crc value, use 0 at the first use.
|
||||
*
|
||||
* @param uint8_t const *buf : buffer to start calculate crc.
|
||||
*
|
||||
* @param uint32_t len : buffer length in byte.
|
||||
*
|
||||
* @return None
|
||||
*/
|
||||
uint8_t crc8_le(uint8_t crc, uint8_t const *buf, uint32_t len);
|
||||
|
||||
/**
|
||||
* @brief Crc8 value that is in big endian.
|
||||
*
|
||||
* @param uint32_t crc : init crc value, use 0 at the first use.
|
||||
*
|
||||
* @param uint8_t const *buf : buffer to start calculate crc.
|
||||
*
|
||||
* @param uint32_t len : buffer length in byte.
|
||||
*
|
||||
* @return None
|
||||
*/
|
||||
uint8_t crc8_be(uint8_t crc, uint8_t const *buf, uint32_t len);
|
||||
|
||||
/**
|
||||
* @brief A crc8 algorithm used in efuse check.
|
||||
*
|
||||
* @param uint8_t const *p : Pointer to original data.
|
||||
*
|
||||
* @param uint32_t len : Data length in byte.
|
||||
*
|
||||
* @return uint8_t: Crc value.
|
||||
*/
|
||||
uint8_t esp_crc8(uint8_t const *p, uint32_t len);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
202
components/esp8266/include/esp_sha.h
Normal file
202
components/esp8266/include/esp_sha.h
Normal file
@ -0,0 +1,202 @@
|
||||
// Copyright 2019-2020 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
uint32_t state[5];
|
||||
uint32_t total[2];
|
||||
uint8_t buffer[64];
|
||||
} esp_sha1_t;
|
||||
|
||||
typedef struct {
|
||||
uint32_t total[2];
|
||||
uint32_t state[8];
|
||||
uint8_t buffer[64];
|
||||
|
||||
int is224;
|
||||
} esp_sha256_t;
|
||||
|
||||
typedef struct {
|
||||
uint64_t total[2];
|
||||
uint64_t state[8];
|
||||
uint8_t buffer[128];
|
||||
|
||||
int is384;
|
||||
} esp_sha512_t;
|
||||
|
||||
typedef esp_sha256_t esp_sha224_t;
|
||||
|
||||
typedef esp_sha512_t esp_sha384_t;
|
||||
|
||||
/**
|
||||
* @brief initialize the SHA1 contex
|
||||
*
|
||||
* @param ctx SHA1 contex pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha1_init(esp_sha1_t *ctx);
|
||||
|
||||
/**
|
||||
* @brief initialize the SHA224 contex
|
||||
*
|
||||
* @param ctx SHA224 contex pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha224_init(esp_sha224_t *ctx);
|
||||
|
||||
/**
|
||||
* @brief initialize the SHA256 contex
|
||||
*
|
||||
* @param ctx SHA256 contex pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha256_init(esp_sha256_t *ctx);
|
||||
|
||||
/**
|
||||
* @brief initialize the SHA384 contex
|
||||
*
|
||||
* @param ctx SHA384 contex pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha384_init(esp_sha384_t *ctx);
|
||||
|
||||
/**
|
||||
* @brief initialize the SHA512 contex
|
||||
*
|
||||
* @param ctx SHA512 contex pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha512_init(esp_sha512_t *ctx);
|
||||
|
||||
/**
|
||||
* @brief calculate input data for SHA1
|
||||
*
|
||||
* @param ctx SHA1 contex pointer
|
||||
* @param src input data buffer pointer
|
||||
* @param size input data bytes
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha1_update(esp_sha1_t *ctx, const void *src, size_t size);
|
||||
|
||||
/**
|
||||
* @brief calculate input data for SHA224
|
||||
*
|
||||
* @param ctx SHA224 contex pointer
|
||||
* @param src input data buffer pointer
|
||||
* @param size input data bytes
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha224_update(esp_sha224_t *ctx, const void *src, size_t size);
|
||||
|
||||
/**
|
||||
* @brief calculate input data for SHA256
|
||||
*
|
||||
* @param ctx SHA256 contex pointer
|
||||
* @param src input data buffer pointer
|
||||
* @param size input data bytes
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha256_update(esp_sha256_t *ctx, const void *src, size_t size);
|
||||
|
||||
/**
|
||||
* @brief calculate input data for SHA384
|
||||
*
|
||||
* @param ctx SHA384 contex pointer
|
||||
* @param src input data buffer pointer
|
||||
* @param size input data bytes
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha384_update(esp_sha384_t *ctx, const void *src, size_t size);
|
||||
|
||||
/**
|
||||
* @brief calculate input data for SHA512
|
||||
*
|
||||
* @param ctx SHA512 contex pointer
|
||||
* @param src input data buffer pointer
|
||||
* @param size input data bytes
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha512_update(esp_sha512_t *ctx, const void *src, size_t size);
|
||||
|
||||
/**
|
||||
* @brief output SHA1 calculation result
|
||||
*
|
||||
* @param ctx SHA1 contex pointer
|
||||
* @param dest output data buffer pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha1_finish(esp_sha1_t *ctx, void *dest);
|
||||
|
||||
/**
|
||||
* @brief output SHA224 calculation result
|
||||
*
|
||||
* @param ctx SHA224 contex pointer
|
||||
* @param dest output data buffer pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha224_finish(esp_sha224_t *ctx, void *dest);
|
||||
|
||||
/**
|
||||
* @brief output SHA256 calculation result
|
||||
*
|
||||
* @param ctx SHA256 contex pointer
|
||||
* @param dest output data buffer pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha256_finish(esp_sha256_t *ctx, void *dest);
|
||||
|
||||
/**
|
||||
* @brief output SHA384 calculation result
|
||||
*
|
||||
* @param ctx SHA384 contex pointer
|
||||
* @param dest output data buffer pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha384_finish(esp_sha384_t *ctx, void *dest);
|
||||
|
||||
/**
|
||||
* @brief output SHA512 calculation result
|
||||
*
|
||||
* @param ctx SHA512 contex pointer
|
||||
* @param dest output data buffer pointer
|
||||
*
|
||||
* @return 0 if success or fail
|
||||
*/
|
||||
int esp_sha512_finish(esp_sha512_t *ctx, void *dest);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
99
components/esp8266/include/ibus_data.h
Normal file
99
components/esp8266/include/ibus_data.h
Normal file
@ -0,0 +1,99 @@
|
||||
// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
/**
|
||||
* @brief ESP8266's IBus(instruction bus) only can read data of word type by 4 bytes align,
|
||||
* so if users' code read a bytes or half word from IBus, an load/store exception will occure.
|
||||
*
|
||||
* The exception function will read the word by align and transform it to be the right
|
||||
* data that users' code want to read.
|
||||
*
|
||||
* CPU read data from IRAM or flash by IBus. And "const" type value or string will locate at flash by default.
|
||||
* So users' code read "const" type data whose type is byte or half word should lead to exception,
|
||||
* and the exception operation is so slow.
|
||||
*
|
||||
* For example:
|
||||
*
|
||||
* static const char s_output[] = "123456789";
|
||||
*
|
||||
* char get_byte(int index)
|
||||
* {
|
||||
* return s_output(index);
|
||||
* }
|
||||
*
|
||||
* By above way, reading data may be not by 4 bytes align and word type.
|
||||
*
|
||||
* For this reason, we add the following function to read byte or half word without leading to exception. Firstly the function reads
|
||||
* a word and then transform it to be the right data that users' code want to read. Users can modify above code to be following:
|
||||
*
|
||||
* static const char s_output[] = "123456789";
|
||||
*
|
||||
* char get_byte(int index)
|
||||
* {
|
||||
* return ESP_IBUS_GET_U8_DATA(index, s_output);
|
||||
* }
|
||||
*/
|
||||
|
||||
#ifdef USING_IBUS_FASTER_GET
|
||||
|
||||
#include "esp_attr.h"
|
||||
|
||||
#ifndef DISABLE_IBUS_INLINE_FUNC
|
||||
#define IBUS_INLINE inline
|
||||
#else
|
||||
#define IBUS_INLINE
|
||||
#endif
|
||||
|
||||
typedef union _ibus_data {
|
||||
uint32_t u32_data[1];
|
||||
uint16_t u16_data[2];
|
||||
uint8_t u8_data[4];
|
||||
} ibus_data_t;
|
||||
|
||||
#define __ESP_IBUS_GET_DATA(_type) \
|
||||
static IBUS_INLINE _type __esp_ibus_get_## _type ## _data(size_t index, const void *pbuf) \
|
||||
{ \
|
||||
ibus_data_t data; \
|
||||
const uint8_t num = index / (sizeof(uint32_t) / sizeof(_type)); \
|
||||
const uint8_t off = index % (sizeof(uint32_t) / sizeof(_type)); \
|
||||
const uint32_t *ptable = (const uint32_t *)pbuf; \
|
||||
\
|
||||
data.u32_data[0] = ptable[num]; \
|
||||
\
|
||||
if (sizeof(_type) == sizeof(uint8_t)) \
|
||||
return data.u8_data[off]; \
|
||||
else if (sizeof(_type) == sizeof(uint16_t)) \
|
||||
return data.u16_data[off]; \
|
||||
}
|
||||
|
||||
__ESP_IBUS_GET_DATA(uint8_t)
|
||||
__ESP_IBUS_GET_DATA(uint16_t)
|
||||
|
||||
#define ESP_IBUS_ATTR WORD_ALIGNED_ATTR
|
||||
|
||||
#define ESP_IBUS_GET_U8_DATA(_index, _pbuf) __esp_ibus_get_uint8_t_data(_index, _pbuf)
|
||||
#define ESP_IBUS_GET_U16_DATA(_index, _pbuf) __esp_ibus_get_uint16_t_data(_index, _pbuf)
|
||||
#else
|
||||
#define ESP_IBUS_ATTR
|
||||
|
||||
#define ESP_IBUS_GET_U8_DATA(_index, _pbuf) ((const uint8_t *)_pbuf)[_index]
|
||||
#define ESP_IBUS_GET_U16_DATA(_index, _pbuf) ((const uint16_t *)_pbuf)[_index]
|
||||
#endif
|
||||
|
||||
|
24
components/esp8266/include/util_assert.h
Normal file
24
components/esp8266/include/util_assert.h
Normal file
@ -0,0 +1,24 @@
|
||||
// Copyright 2018-2019 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "sdkconfig.h"
|
||||
#include "assert.h"
|
||||
|
||||
#ifdef CONFIG_UTIL_ASSERT
|
||||
#define util_assert(_e) assert(_e)
|
||||
#else
|
||||
#define util_assert(_e)
|
||||
#endif
|
145
components/esp8266/source/crc.c
Normal file
145
components/esp8266/source/crc.c
Normal file
@ -0,0 +1,145 @@
|
||||
// Copyright 2018 Espressif Systems (Shanghai) PTE LTD
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "rom/crc.h"
|
||||
#include "ibus_data.h"
|
||||
|
||||
static const uint32_t crc32_le_table[256] = {
|
||||
0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, 0x706af48fL, 0xe963a535L, 0x9e6495a3L,
|
||||
0x0edb8832L, 0x79dcb8a4L, 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, 0x90bf1d91L,
|
||||
0x1db71064L, 0x6ab020f2L, 0xf3b97148L, 0x84be41deL, 0x1adad47dL, 0x6ddde4ebL, 0xf4d4b551L, 0x83d385c7L,
|
||||
0x136c9856L, 0x646ba8c0L, 0xfd62f97aL, 0x8a65c9ecL, 0x14015c4fL, 0x63066cd9L, 0xfa0f3d63L, 0x8d080df5L,
|
||||
0x3b6e20c8L, 0x4c69105eL, 0xd56041e4L, 0xa2677172L, 0x3c03e4d1L, 0x4b04d447L, 0xd20d85fdL, 0xa50ab56bL,
|
||||
0x35b5a8faL, 0x42b2986cL, 0xdbbbc9d6L, 0xacbcf940L, 0x32d86ce3L, 0x45df5c75L, 0xdcd60dcfL, 0xabd13d59L,
|
||||
0x26d930acL, 0x51de003aL, 0xc8d75180L, 0xbfd06116L, 0x21b4f4b5L, 0x56b3c423L, 0xcfba9599L, 0xb8bda50fL,
|
||||
0x2802b89eL, 0x5f058808L, 0xc60cd9b2L, 0xb10be924L, 0x2f6f7c87L, 0x58684c11L, 0xc1611dabL, 0xb6662d3dL,
|
||||
0x76dc4190L, 0x01db7106L, 0x98d220bcL, 0xefd5102aL, 0x71b18589L, 0x06b6b51fL, 0x9fbfe4a5L, 0xe8b8d433L,
|
||||
0x7807c9a2L, 0x0f00f934L, 0x9609a88eL, 0xe10e9818L, 0x7f6a0dbbL, 0x086d3d2dL, 0x91646c97L, 0xe6635c01L,
|
||||
0x6b6b51f4L, 0x1c6c6162L, 0x856530d8L, 0xf262004eL, 0x6c0695edL, 0x1b01a57bL, 0x8208f4c1L, 0xf50fc457L,
|
||||
0x65b0d9c6L, 0x12b7e950L, 0x8bbeb8eaL, 0xfcb9887cL, 0x62dd1ddfL, 0x15da2d49L, 0x8cd37cf3L, 0xfbd44c65L,
|
||||
0x4db26158L, 0x3ab551ceL, 0xa3bc0074L, 0xd4bb30e2L, 0x4adfa541L, 0x3dd895d7L, 0xa4d1c46dL, 0xd3d6f4fbL,
|
||||
0x4369e96aL, 0x346ed9fcL, 0xad678846L, 0xda60b8d0L, 0x44042d73L, 0x33031de5L, 0xaa0a4c5fL, 0xdd0d7cc9L,
|
||||
0x5005713cL, 0x270241aaL, 0xbe0b1010L, 0xc90c2086L, 0x5768b525L, 0x206f85b3L, 0xb966d409L, 0xce61e49fL,
|
||||
0x5edef90eL, 0x29d9c998L, 0xb0d09822L, 0xc7d7a8b4L, 0x59b33d17L, 0x2eb40d81L, 0xb7bd5c3bL, 0xc0ba6cadL,
|
||||
|
||||
0xedb88320L, 0x9abfb3b6L, 0x03b6e20cL, 0x74b1d29aL, 0xead54739L, 0x9dd277afL, 0x04db2615L, 0x73dc1683L,
|
||||
0xe3630b12L, 0x94643b84L, 0x0d6d6a3eL, 0x7a6a5aa8L, 0xe40ecf0bL, 0x9309ff9dL, 0x0a00ae27L, 0x7d079eb1L,
|
||||
0xf00f9344L, 0x8708a3d2L, 0x1e01f268L, 0x6906c2feL, 0xf762575dL, 0x806567cbL, 0x196c3671L, 0x6e6b06e7L,
|
||||
0xfed41b76L, 0x89d32be0L, 0x10da7a5aL, 0x67dd4accL, 0xf9b9df6fL, 0x8ebeeff9L, 0x17b7be43L, 0x60b08ed5L,
|
||||
0xd6d6a3e8L, 0xa1d1937eL, 0x38d8c2c4L, 0x4fdff252L, 0xd1bb67f1L, 0xa6bc5767L, 0x3fb506ddL, 0x48b2364bL,
|
||||
0xd80d2bdaL, 0xaf0a1b4cL, 0x36034af6L, 0x41047a60L, 0xdf60efc3L, 0xa867df55L, 0x316e8eefL, 0x4669be79L,
|
||||
0xcb61b38cL, 0xbc66831aL, 0x256fd2a0L, 0x5268e236L, 0xcc0c7795L, 0xbb0b4703L, 0x220216b9L, 0x5505262fL,
|
||||
0xc5ba3bbeL, 0xb2bd0b28L, 0x2bb45a92L, 0x5cb36a04L, 0xc2d7ffa7L, 0xb5d0cf31L, 0x2cd99e8bL, 0x5bdeae1dL,
|
||||
0x9b64c2b0L, 0xec63f226L, 0x756aa39cL, 0x026d930aL, 0x9c0906a9L, 0xeb0e363fL, 0x72076785L, 0x05005713L,
|
||||
0x95bf4a82L, 0xe2b87a14L, 0x7bb12baeL, 0x0cb61b38L, 0x92d28e9bL, 0xe5d5be0dL, 0x7cdcefb7L, 0x0bdbdf21L,
|
||||
0x86d3d2d4L, 0xf1d4e242L, 0x68ddb3f8L, 0x1fda836eL, 0x81be16cdL, 0xf6b9265bL, 0x6fb077e1L, 0x18b74777L,
|
||||
0x88085ae6L, 0xff0f6a70L, 0x66063bcaL, 0x11010b5cL, 0x8f659effL, 0xf862ae69L, 0x616bffd3L, 0x166ccf45L,
|
||||
0xa00ae278L, 0xd70dd2eeL, 0x4e048354L, 0x3903b3c2L, 0xa7672661L, 0xd06016f7L, 0x4969474dL, 0x3e6e77dbL,
|
||||
0xaed16a4aL, 0xd9d65adcL, 0x40df0b66L, 0x37d83bf0L, 0xa9bcae53L, 0xdebb9ec5L, 0x47b2cf7fL, 0x30b5ffe9L,
|
||||
0xbdbdf21cL, 0xcabac28aL, 0x53b39330L, 0x24b4a3a6L, 0xbad03605L, 0xcdd70693L, 0x54de5729L, 0x23d967bfL,
|
||||
0xb3667a2eL, 0xc4614ab8L, 0x5d681b02L, 0x2a6f2b94L, 0xb40bbe37L, 0xc30c8ea1L, 0x5a05df1bL, 0x2d02ef8dL
|
||||
};
|
||||
|
||||
static const uint16_t crc16_le_table[256] ESP_IBUS_ATTR = {
|
||||
0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
|
||||
0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
|
||||
0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
|
||||
0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
|
||||
0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
|
||||
0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,
|
||||
0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c,
|
||||
0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974,
|
||||
0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb,
|
||||
0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3,
|
||||
0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a,
|
||||
0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72,
|
||||
0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9,
|
||||
0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1,
|
||||
0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738,
|
||||
0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70,
|
||||
0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7,
|
||||
0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff,
|
||||
0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036,
|
||||
0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e,
|
||||
0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5,
|
||||
0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd,
|
||||
0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134,
|
||||
0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c,
|
||||
0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3,
|
||||
0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb,
|
||||
0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232,
|
||||
0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a,
|
||||
0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1,
|
||||
0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9,
|
||||
0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330,
|
||||
0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78
|
||||
};
|
||||
|
||||
static const uint8_t crc8_le_table[] ESP_IBUS_ATTR = {
|
||||
0x00, 0x5e, 0xbc, 0xe2, 0x61, 0x3f, 0xdd, 0x83, 0xc2, 0x9c, 0x7e, 0x20, 0xa3, 0xfd, 0x1f, 0x41,
|
||||
0x9d, 0xc3, 0x21, 0x7f, 0xfc, 0xa2, 0x40, 0x1e, 0x5f, 0x01, 0xe3, 0xbd, 0x3e, 0x60, 0x82, 0xdc,
|
||||
0x23, 0x7d, 0x9f, 0xc1, 0x42, 0x1c, 0xfe, 0xa0, 0xe1, 0xbf, 0x5d, 0x03, 0x80, 0xde, 0x3c, 0x62,
|
||||
0xbe, 0xe0, 0x02, 0x5c, 0xdf, 0x81, 0x63, 0x3d, 0x7c, 0x22, 0xc0, 0x9e, 0x1d, 0x43, 0xa1, 0xff,
|
||||
0x46, 0x18, 0xfa, 0xa4, 0x27, 0x79, 0x9b, 0xc5, 0x84, 0xda, 0x38, 0x66, 0xe5, 0xbb, 0x59, 0x07,
|
||||
0xdb, 0x85, 0x67, 0x39, 0xba, 0xe4, 0x06, 0x58, 0x19, 0x47, 0xa5, 0xfb, 0x78, 0x26, 0xc4, 0x9a,
|
||||
0x65, 0x3b, 0xd9, 0x87, 0x04, 0x5a, 0xb8, 0xe6, 0xa7, 0xf9, 0x1b, 0x45, 0xc6, 0x98, 0x7a, 0x24,
|
||||
0xf8, 0xa6, 0x44, 0x1a, 0x99, 0xc7, 0x25, 0x7b, 0x3a, 0x64, 0x86, 0xd8, 0x5b, 0x05, 0xe7, 0xb9,
|
||||
0x8c, 0xd2, 0x30, 0x6e, 0xed, 0xb3, 0x51, 0x0f, 0x4e, 0x10, 0xf2, 0xac, 0x2f, 0x71, 0x93, 0xcd,
|
||||
0x11, 0x4f, 0xad, 0xf3, 0x70, 0x2e, 0xcc, 0x92, 0xd3, 0x8d, 0x6f, 0x31, 0xb2, 0xec, 0x0e, 0x50,
|
||||
0xaf, 0xf1, 0x13, 0x4d, 0xce, 0x90, 0x72, 0x2c, 0x6d, 0x33, 0xd1, 0x8f, 0x0c, 0x52, 0xb0, 0xee,
|
||||
0x32, 0x6c, 0x8e, 0xd0, 0x53, 0x0d, 0xef, 0xb1, 0xf0, 0xae, 0x4c, 0x12, 0x91, 0xcf, 0x2d, 0x73,
|
||||
0xca, 0x94, 0x76, 0x28, 0xab, 0xf5, 0x17, 0x49, 0x08, 0x56, 0xb4, 0xea, 0x69, 0x37, 0xd5, 0x8b,
|
||||
0x57, 0x09, 0xeb, 0xb5, 0x36, 0x68, 0x8a, 0xd4, 0x95, 0xcb, 0x29, 0x77, 0xf4, 0xaa, 0x48, 0x16,
|
||||
0xe9, 0xb7, 0x55, 0x0b, 0x88, 0xd6, 0x34, 0x6a, 0x2b, 0x75, 0x97, 0xc9, 0x4a, 0x14, 0xf6, 0xa8,
|
||||
0x74, 0x2a, 0xc8, 0x96, 0x15, 0x4b, 0xa9, 0xf7, 0xb6, 0xe8, 0x0a, 0x54, 0xd7, 0x89, 0x6b, 0x35
|
||||
};
|
||||
|
||||
uint16_t crc16_le(uint16_t crc, const uint8_t* buf, uint32_t len)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
crc = ~crc;
|
||||
|
||||
for (i = 0; i < len; i++) {
|
||||
crc = ESP_IBUS_GET_U16_DATA((crc ^ buf[i]) & 0xff, crc16_le_table) ^ (crc >> 8);
|
||||
}
|
||||
|
||||
return ~crc;
|
||||
}
|
||||
|
||||
uint32_t crc32_le(uint32_t crc, const uint8_t* buf, uint32_t len)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
crc = ~crc;
|
||||
|
||||
for (i = 0; i < len; i++) {
|
||||
crc = crc32_le_table[(crc ^ buf[i]) & 0xff] ^ (crc >> 8);
|
||||
}
|
||||
|
||||
return ~crc;
|
||||
}
|
||||
|
||||
uint8_t esp_crc8(uint8_t const* p, uint32_t len)
|
||||
{
|
||||
uint8_t crc = 0x00;
|
||||
|
||||
while (len--) {
|
||||
crc = ESP_IBUS_GET_U8_DATA(crc ^ *p++, crc8_le_table);
|
||||
}
|
||||
|
||||
return crc;
|
||||
}
|
@ -19,7 +19,7 @@
|
||||
#include "esp_system.h"
|
||||
#include "internal/esp_system_internal.h"
|
||||
|
||||
#include "crc.h"
|
||||
#include "rom/crc.h"
|
||||
|
||||
#include "esp8266/eagle_soc.h"
|
||||
#include "esp8266/efuse_register.h"
|
||||
|
Reference in New Issue
Block a user