Segemtation Fault while trying to acess WeimNor memory in QT

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Segemtation Fault while trying to acess WeimNor memory in QT

跳至解决方案
1,617 次查看
nishad_kamdar
Contributor IV

Hi all,

 

I have a custom board having iMX6q processor and i am using Ltib L3.0.35_4.1.0

 

i have a Weimnor connected to it, at the base address 0x08000000.

 

I am able to read and write to it using memtools. However when i write try reading the same memory location using QT application,  it gives me a Segmentation fault.

 

I guess it does not allow me to access the location. Can anyone suggest how i can read the Weim Nor flash using the Qt?

 

I have attached the Qt code.

 

Help would be appreciated.

 

regards,

nishad

Original Attachment has been moved to: mainwindow.cpp.zip

标签 (2)
0 项奖励
回复
1 解答
1,441 次查看
fabio_estevam
NXP Employee
NXP Employee

The NOR flash should be probed under /dev/mtdx block. In order to read/write in userspace you should open a file descriptor that points to the correct node and then perform read/write operations into the NOR flash: For example:

cat  file.bin > /dev/mtd0


Regards,


Fabio Estevam

在原帖中查看解决方案

0 项奖励
回复
1 回复
1,442 次查看
fabio_estevam
NXP Employee
NXP Employee

The NOR flash should be probed under /dev/mtdx block. In order to read/write in userspace you should open a file descriptor that points to the correct node and then perform read/write operations into the NOR flash: For example:

cat  file.bin > /dev/mtd0


Regards,


Fabio Estevam

0 项奖励
回复