c routine for a read a byte from flash in HCS08 family

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

c routine for a read a byte from flash in HCS08 family

852 次查看
avl
Contributor I

i wrote a byte on specific location and i want to read it.

 

 

C routine for read from flash in MC9S08AW60. 

标签 (1)
0 项奖励
回复
1 回复

613 次查看
bigmac
Specialist III

Hello,

 

Maybe the following simple function -

 

byte read_mem( const byte *addr)

{

   return (*addr);

}

 

 

Regards,

Mac

 

0 项奖励
回复