Live & Learn
发布时间:2015-08-28 17:02:21
<b style="margin:0px;color:#333333;font-family:Arial, Helvetica, sans-serif, 脣脦脤氓;font-size:12px;line-height:20px;white-space:normal;background-color:#FFFFFF;"><span style="margin:0px;color:#3D85C6;"><b style="margin:0px;"><b style="margin:0px;"><span style="margin:0px;color:#FF0000;">声明:本文.........【阅读全文】
发布时间:2015-08-27 10:20:11
<span style="color:#666666;font-family:宋体, Arial;line-height:26px;white-space:normal;background-color:#FFFFFF;"> 因为需要读取配置文件,我的配置文件采用xml;因此编写了使用qt读取xml文件内容的代码,xml文件</span><br style="color:#666666;font-family:宋体, Arial;line-height:26px;white-space:normal.........【阅读全文】
发布时间:2015-08-27 10:18:09
<p style="color:#333333;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#FFFFFF;">通常,为了保存各种系统配置,我们可以通过写注册表或者写ini文件的方式来进行。这里,我就来举例说明如何用qt来实现ini文件的写入和读取。</p><p style="color:#333333;font-family:Arial;.........【阅读全文】
config20102009-11-19 19:38
外设fpga做的8k的memory,用arm9去读写它,在linux2.6系统下;这样做对吗?
实际地址映射到虚拟内存中,用得到的虚拟地址去读写。
地址总线:a1-a14 数据总线:d0-d15
#define FPGA_BASE_ADDR (0x18000000)//片选为nGCS3
#define BWSCON (0x48000000)
#define BANKCON3 (0x48000010)
#define IP_SIZE (0x1FFF)//13根地址线8K的物理空间
static void *bwscon,*bankcon3,*fpga_base_addr;
bwscon = ioremap_nocache(BWSCON,0x0000004);
bankcon3 = ioremap_nocache(BANKCON3,0x0000004);
fpga_base_addr = ioremap_nocache(FPGA_BASE_ADDR,IP_SIZE);
writel(readl(bwscon)|0xD000,bwscon);
writel(0x7FFC,bankcon3);
for(i=0;i