完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
鲍勃马洛伊扬扬
我需要一个简单的命令集,在我的PRO-012011模块上写一个32位的值给Sflash。这是存储太多的用户选择的配对代码。我需要能够写、读和清除32位值,这是相当紧急的,而且文档还不清楚。 有一个简单的Sflash例子,一个32位字? 以上来自于百度翻译 以下为原文 bob.marlowegyan I need a simple set of commands to write a 32bit value to the SFLASH on my PROC-012011 module. This is too store the users selected pairing code. I need to be able to write, read and clear the 32 bit value, this is rather urgent, and the documentation is not clear. Is there a simple SFLASH example for one 32 bit word? |
|
相关推荐
1个回答
|
|
草本植物,
这是我写的一个程序而回的一个项目,它使用的最后一个用户排SFLASH存储数据,应该很容易修改的32位值,我的例子显示8位和16位的变量被存储和读取SFLASH。 /*定义最后排SFLASH * / #定义cy_test_sflash_row(cy_sflash_number_userrows - 1U)/ *定义绝对地址行* / #定义cy_test_sflash_addr(cy_sflash_userbase + cy_test_sflash_row * cy_sflash_sizeof_userrow)/ *标志指示写发生* / #定义flash_write_flag 0xaa 卡片一; uint8 B; 卡片C; 卡片D; uint8 E; uint8 F; uint16 g; updateflashvalues虚空(void) { / *********************************************************************** *删除一行,并与rowpattern SFLASH程序。 *注释行下面程序HEX文件到目标设备 *检查后可重新编程SFLASH DataRow的装置。 *********************************************************************** / cy_sflash_sizeof_userrow uint8 FlashArray [ ]; FlashArray [0 ] =一; FlashArray [ 1 ] = B; FlashArray [ 2 ] = C; FlashArray [ 3 ] = D; FlashArray [ 4 ] = E; FlashArray [ 5 ] = F; [ 6 ] =(FlashArray uint8)G; FlashArray [ 7 ] =(卡片)(G >;>;8); CySysSFlashWriteUserRow(cy_test_sflash_row,FlashArray); } readflashvalues虚空(void) { /*定义源值*/ =(*((uint8 *)(cy_test_sflash_addr))); B =(*((uint8 *)(cy_test_sflash_addr + 1))); C =(*((uint8 *)(cy_test_sflash_addr + 2))); D =(*((uint8 *)(cy_test_sflash_addr +3))); E =(*((uint8 *)(cy_test_sflash_addr +4))); F =(*((uint8 *)(cy_test_sflash_addr + 5))); G =(*((uint8 *)(cy_test_sflash_addr + 7))); G =(G <;<;8)|(*((uint8 *)(cy_test_sflash_addr + 6))); } 以上来自于百度翻译 以下为原文 Herb, Here is a routine I wrote a while back for a project, it uses the last user row of SFLASH to store data, should be easy to modify to 32bit value, my example shows 8bit and 16 bit variables being stored and read back from SFLASH. /* Defines last ROW of SFlash */#define CY_TEST_SFLASH_ROW (CY_SFLASH_NUMBER_USERROWS - 1u)/* Defines absolute address of ROW */#define CY_TEST_SFLASH_ADDR (CY_SFLASH_USERBASE + CY_TEST_SFLASH_ROW * CY_SFLASH_SIZEOF_USERROW)/* FLAG indicating flash write occurred */#define FLASH_WRITE_FLAG 0xAA [size=13.3333px]uint8 A; [size=13.3333px]uint8 B; [size=13.3333px]uint8 C; [size=13.3333px]uint8 D; [size=13.3333px]uint8 E; [size=13.3333px]uint8 F; [size=13.3333px]uint16 G; void updateFlashValues(void) { /*********************************************************************** * Erases a row of SFlash and programs it with the rowPattern. * Comment line below and program the hex file into the target device * to check if SFlash dataRow is available after device reprogramming. ***********************************************************************/ uint8 flashArray[CY_SFLASH_SIZEOF_USERROW]; flashArray[0] = A; flashArray[1] = B; flashArray[2] = C; flashArray[3] = D; flashArray[4] = E; flashArray[5] = F; flashArray[6] = (uint8)G; flashArray[7] = (uint8)(G >> 8); CySysSFlashWriteUserRow(CY_TEST_SFLASH_ROW, flashArray); } void readFlashValues(void) { /* Define source value */ [size=13.3333px] A = (*((uint8 *) (CY_TEST_SFLASH_ADDR))); B = (*((uint8 *) (CY_TEST_SFLASH_ADDR + 1))); C = (*((uint8 *) (CY_TEST_SFLASH_ADDR + 2))); D = (*((uint8 *) (CY_TEST_SFLASH_ADDR + 3))); E = (*((uint8 *) (CY_TEST_SFLASH_ADDR + 4))); F = (*((uint8 *) (CY_TEST_SFLASH_ADDR + 5))); G = (*((uint8 *) (CY_TEST_SFLASH_ADDR + 7))); G = (G << 8 )|(*((uint8 *) (CY_TEST_SFLASH_ADDR + 6))); } |
|
|
|
只有小组成员才能发言,加入小组>>
752个成员聚集在这个小组
加入小组2071 浏览 1 评论
1827 浏览 1 评论
3642 浏览 1 评论
请问可以直接使用来自FX2LP固件的端点向主机FIFO写入数据吗?
1762 浏览 6 评论
1513 浏览 1 评论
CY8C4025LQI在程序中调用函数,通过示波器观察SCL引脚波形,无法将pin0.4(SCL)下拉是什么原因导致?
511浏览 2评论
CYUSB3065焊接到USB3.0 TYPE-B口的焊接触点就无法使用是什么原因导致的?
362浏览 2评论
CX3连接Camera修改分辨率之后,播放器无法播出camera的画面怎么解决?
410浏览 2评论
357浏览 2评论
使用stm32+cyw43438 wifi驱动whd,WHD驱动固件加载失败的原因?
860浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-26 04:20 , Processed in 0.648586 second(s), Total 45, Slave 39 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号