20X2 - hi2cin / hi2cout

MTO-33F

New Member
hello,

Is it possible , when using hi2cin / hi2cout ( in page mode ) , to directly - store / read - DATA - in / from - scratchpad instead of RAM ?

if yes , how do ?

Thank you in advance for your answers ...
 

hippy

Ex-Staff (retired)
Simply use @ptrinc as the variables to store into or output from. For example these two achieve the same ....

HI2cIn 0, ( b10, b11, b12 )

ptr = 0
HI2cIn 0, ( @ptrinc, @ptrinc, @ptrinc )
Get 0, b10
Get 1, b11
Get 2, b12
 
Top