MPLAB IDE 数据类型大小

发布于 2024-08-10 04:03:27 字数 148 浏览 4 评论 0原文

在 MPLAB IDE 中,数据类型的大小是多少(intunsigned intfloatunsigned float、<代码>字符...)?

In MPLAB IDE what is the sizes of data types (int, unsigned int, float, unsigned float, char...)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

亢潮 2024-08-17 04:03:27

如果不知道要为哪个 CPU 编译代码,这会很困难。例如,假设 Microchip 的 C18 编译器用于 PIC18,则用户指南说明以下内容基本类型大小:

TYPE                SIZE     RANGE
char(1,2)            8 bits  -128 127
signed char          8 bits  -128 127
unsigned char        8 bits  0 255
int                 16 bits  -32,768 32,767
unsigned int        16 bits  0 65,535
short               16 bits  -32,768 32,767
unsigned short      16 bits  0 65,535
short long          24 bits  -8,388,608 8,388,607
unsigned short long 24 bits  0 16,777,215
long                32 bits  -2,147,483,648 2,147,483,647
unsigned long       32 bits  0 4,294,967,295

请注意,这包括一些 C 中非标准类型 (short long)。

This is hard without knowing for which CPU you want to compile code. Assuming e.g. Microchip's C18 compiler for the PIC18, the User Guide states the following fundamental type sizes:

TYPE                SIZE     RANGE
char(1,2)            8 bits  -128 127
signed char          8 bits  -128 127
unsigned char        8 bits  0 255
int                 16 bits  -32,768 32,767
unsigned int        16 bits  0 65,535
short               16 bits  -32,768 32,767
unsigned short      16 bits  0 65,535
short long          24 bits  -8,388,608 8,388,607
unsigned short long 24 bits  0 16,777,215
long                32 bits  -2,147,483,648 2,147,483,647
unsigned long       32 bits  0 4,294,967,295

Note that this includes some types (short long) that are not standard in C.

你在看孤独的风景 2024-08-17 04:03:27

以下是不同 MPLAB XC 编译器上整数数据类型的实现。

  1. 8 位设备的数据类型(在 XC8 编译器上实现):
    输入图片此处描述

  2. 16 位设备的数据类型(在 XC16 编译器上实现):
    输入图片此处描述

  3. 32 位设备的数据类型(在 XC32 编译器上实现):在此处输入图像描述

Here is the implementation of integer data types on different MPLAB XC compilers.

  1. Data Types for 8-bit devices (implementation on XC8 compiler):
    enter image description here

  2. Data Types for 16-bit devices (implementation on XC16 compiler):
    enter image description here

  3. Data Types for 32-bit devices (implementation on XC32 compiler):enter image description here

2024-08-17 04:03:27

int、long 等值从未在所有编译器中进行标准定义(参考< /a>) 。因此,建议使用该库:

#include <stdint.h>

要出于您自己的目的使用该库,请尝试使用如下代码:

typedef uint8_t    BYTE
typedef uint16_t   WORD
typedef uint32_t   LONG

然后您只需使用它们来定义变量即可。此方法通常使用 integer.h 文件来存储这些定义,并包含在需要的地方。

Values for int, long, etc., are never standardly defined across all compilers(reference) . For this reason, it is advised to make use of the library:

#include <stdint.h>

To make use of this library for your own purposes, try using the code as follows:

typedef uint8_t    BYTE
typedef uint16_t   WORD
typedef uint32_t   LONG

Then you just use these to define your variables. This method usually makes use of an integer.h file to store these definitions and is included wherever needed.

浪漫之都 2024-08-17 04:03:27

我会对这种概括保持警惕。 MPLAB只是一个IDE——它适用于不同的芯片。 Microchip 有 PIC18F 等 8 位控制器、16 位和 32 位控制器。每个数据类型可能不同,并且对性能有严重影响。即,对于 8 位芯片,可以在软件中模拟 16 位和 32 位数据类型,但这并不总是您想要的。

I would be wary of such generalizations. MPLAB is just an IDE - it is suitable for different chips. Microchip has 8-bit controllers like PIC18F, 16-bit and 32-bit controllers. The data types for each may be different and hold serious implications for performance. I.e. for the 8-bit chips the 16 and 32 bit data types may be emulated in software, which isn't always what you want.

三生池水覆流年 2024-08-17 04:03:27
#include<stdint.h>
long x;

这两件事帮助我度过了难关;)
以及其余信息。已经被其他人分享了。

#include<stdint.h>
long x;

These two things helped me get through ;)
And the rest info. is already shared by other folks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文