2022-08-18 21:23:53 +08:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2020-06-19 15:08:38 +08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-12-02 11:43:13 +08:00
|
|
|
#define ESP_ROM_HAS_CRC_LE (1) // ROM CRC library supports Little Endian
|
|
|
|
#define ESP_ROM_HAS_CRC_BE (1) // ROM CRC library supports Big Endian
|
2022-11-14 17:54:53 +08:00
|
|
|
#define ESP_ROM_HAS_MZ_CRC32 (1) // ROM has mz_crc32 function
|
2020-12-02 11:43:13 +08:00
|
|
|
#define ESP_ROM_HAS_JPEG_DECODE (1) // ROM has JPEG decode library
|
2023-01-30 14:01:19 +08:00
|
|
|
#define ESP_ROM_HAS_UART_BUF_SWITCH (1) // ROM has exported the uart buffer switch function
|
2022-08-18 21:23:53 +08:00
|
|
|
#define ESP_ROM_NEEDS_SWSETUP_WORKAROUND (1) // ROM uses 32-bit time_t. A workaround is required to prevent printf functions from crashing
|
2023-02-02 17:24:31 +08:00
|
|
|
#define ESP_ROM_HAS_NEWLIB_NANO_FORMAT (1) // ROM has the newlib nano version of formatting functions
|
2023-11-28 12:10:55 +08:00
|
|
|
#define ESP_ROM_HAS_SW_FLOAT (1) // ROM has libgcc software floating point emulation functions
|
2024-01-17 17:19:49 +08:00
|
|
|
#define ESP_ROM_USB_OTG_NUM (-1) // No USB_OTG CDC in the ROM, set -1 for Kconfig usage.
|
|
|
|
#define ESP_ROM_USB_SERIAL_DEVICE_NUM (-1) // No USB_SERIAL_JTAG in the ROM, set -1 for Kconfig usage.
|