首页 > 其他 > 详细

STM32库中自定义的数据类型

时间:2014-02-28 00:03:48      阅读:502      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
在头文件 <stdint.h> 中

1
/* exact-width signed integer types */ 2 typedef signed char int8_t; 3 typedef signed short int int16_t; 4 typedef signed int int32_t; 5 typedef signed __int64 int64_t; 6 7 /* exact-width unsigned integer types */ 8 typedef unsigned char uint8_t; 9 typedef unsigned short int uint16_t; 10 typedef unsigned int uint32_t; 11 typedef unsigned __int64 uint64_t;
bubuko.com,布布扣

STM32库中自定义的数据类型,布布扣,bubuko.com

STM32库中自定义的数据类型

原文:http://www.cnblogs.com/flyheart33/p/3570758.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!