如题.比如写入8个不同的参数。参数是16位的。假定写入11111,22222,33333,44444,55555,6666,7777,8888.
那么,如何在24C16里面将其分配到不同的存储空间存取。如何划分写入区域,如何指定地址?
假如我的写函数定义为:void AT24CXX_WriteByte(uint16_t ByteAddr,uint8_t ByteVal)
现在要写入uint16_t Write_Word = 0x1234,写到地址uint16_t Word_Addr=0x12;
则代码如下:
#ifdef __BIG_END //if the system is big-end mode
AT24CXX_WriteByte(Word_Addr,(Write_Word&0xFF00)>>8);//write the higt Byte
AT24CXX_WriteByte(Word_Addr+1,Write_Word&0xFF);//write the low Byte
#else //if the system is little-end mode
AT24CXX_WriteByte(Word_Addr,(Write_Word&0xFF);//write the low Byte
AT24CXX_WriteByte(Word_Addr+1,(Write_Word&0xFF00)>>8);//write the high Byte
#endif
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
vscode+cmake搭建雅特力AT32L021开发环境被打赏30分 | |
【换取逻辑分析仪】自制底板并驱动ArduinoNanoRP2040ConnectLCD扩展板被打赏47分 | |
【分享评测,赢取加热台】RISC-V GCC 内嵌汇编使用被打赏38分 | |
【换取逻辑分析仪】-基于ADI单片机MAX78000的简易MP3音乐播放器被打赏48分 | |
我想要一部加热台+树莓派PICO驱动AHT10被打赏38分 | |
【换取逻辑分析仪】-硬件SPI驱动OLED屏幕被打赏36分 | |
换逻辑分析仪+上下拉与多路选择器被打赏29分 | |
Let'sdo第3期任务合集被打赏50分 | |
换逻辑分析仪+Verilog三态门被打赏27分 | |
换逻辑分析仪+Verilog多输出门被打赏24分 |