4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-03-02 09:35:28 +08:00

[Kconfig][libcpu] 增加ARCH_CPU_BIG_ENDIAN (#5547)

* [cpu] 增加ARCH_CPU_BIG_ENDIAN
- 之前RT_USING_BIG_ENDIAN的命名并不合理,予以替换为ARCH_CPU_BIG_ENDIAN
- 删除一处多余的ARCH_CPU_64BIT
- 整理了libcpu/Kconfig的格式

* [libcpu][Kconfig] Cortex-M4&7 select ARCH_ARM_CORTEX_FPU

* revert last commit
This commit is contained in:
Man, Jianting (Meco) 2022-01-25 02:00:47 -05:00 committed by GitHub
parent 382e19ccbf
commit 5a0fea6987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 14 deletions

View File

@ -41,11 +41,11 @@
#include <stdint.h> #include <stdint.h>
#ifndef BYTE_ORDER #ifndef BYTE_ORDER
#ifdef RT_USING_BIG_ENDIAN #ifdef ARCH_CPU_BIG_ENDIAN
#define BYTE_ORDER BIG_ENDIAN #define BYTE_ORDER BIG_ENDIAN
#else #else
#define BYTE_ORDER LITTLE_ENDIAN #define BYTE_ORDER LITTLE_ENDIAN
#endif /* RT_USING_BIG_ENDIAN */ #endif /* ARCH_CPU_BIG_ENDIAN */
#endif /* BYTE_ORDER */ #endif /* BYTE_ORDER */
typedef uint8_t u8_t; typedef uint8_t u8_t;

View File

@ -40,11 +40,11 @@
#include <string.h> #include <string.h>
#ifndef BYTE_ORDER #ifndef BYTE_ORDER
#ifdef RT_USING_BIG_ENDIAN #ifdef ARCH_CPU_BIG_ENDIAN
#define BYTE_ORDER BIG_ENDIAN #define BYTE_ORDER BIG_ENDIAN
#else #else
#define BYTE_ORDER LITTLE_ENDIAN #define BYTE_ORDER LITTLE_ENDIAN
#endif /* RT_USING_BIG_ENDIAN */ #endif /* ARCH_CPU_BIG_ENDIAN */
#endif /* BYTE_ORDER */ #endif /* BYTE_ORDER */
#define U16_F "hu" #define U16_F "hu"

View File

@ -40,11 +40,11 @@
#include <string.h> #include <string.h>
#ifndef BYTE_ORDER #ifndef BYTE_ORDER
#ifdef RT_USING_BIG_ENDIAN #ifdef ARCH_CPU_BIG_ENDIAN
#define BYTE_ORDER BIG_ENDIAN #define BYTE_ORDER BIG_ENDIAN
#else #else
#define BYTE_ORDER LITTLE_ENDIAN #define BYTE_ORDER LITTLE_ENDIAN
#endif /* RT_USING_BIG_ENDIAN */ #endif /* ARCH_CPU_BIG_ENDIAN */
#endif /* BYTE_ORDER */ #endif /* BYTE_ORDER */
#define U16_F "hu" #define U16_F "hu"

View File

@ -1,6 +1,9 @@
config ARCH_CPU_64BIT config ARCH_CPU_64BIT
bool bool
config ARCH_CPU_BIG_ENDIAN
bool
config ARCH_ARM config ARCH_ARM
bool bool
@ -101,10 +104,7 @@ config ARCH_MIPS
config ARCH_MIPS64 config ARCH_MIPS64
bool bool
select ARCH_CPU_64BIT select ARCH_CPU_64BIT
config ARCH_CPU_64BIT
bool
config ARCH_MIPS_XBURST config ARCH_MIPS_XBURST
bool bool

View File

@ -8,10 +8,6 @@ config RT_NAME_MAX
Each kernel object, such as thread, timer, semaphore etc, has a name, Each kernel object, such as thread, timer, semaphore etc, has a name,
the RT_NAME_MAX is the maximal size of this object name. the RT_NAME_MAX is the maximal size of this object name.
config RT_USING_BIG_ENDIAN
bool
default n
config RT_USING_ARCH_DATA_TYPE config RT_USING_ARCH_DATA_TYPE
bool "Use the data types defined in ARCH_CPU" bool "Use the data types defined in ARCH_CPU"
default n default n