Ai
1 Star 0 Fork 0

DFRobot/DFRobot_utility

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DF_utility.cpp 242 Bytes
一键复制 编辑 原始数据 按行查看 历史
lisper 提交于 2014-11-07 10:10 +08:00 . fix
#include "Arduino.h"
//
void fill_uint16_bigend (uint8_t *thebuf, uint16_t data) {
*thebuf = (uint8_t)(data>>8);
*(thebuf+1) = (uint8_t)data;
}
//
void fill_uint16 (uint8_t *thebuf, uint16_t data) {
*(uint16_t*)(thebuf) = data;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/dfrobot/DFRobot_utility.git
git@gitee.com:dfrobot/DFRobot_utility.git
dfrobot
DFRobot_utility
DFRobot_utility
master

搜索帮助