We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I have 8031 connected with 64KB external EPROM and 8KB external RAM.
I around 15 C files and after compiling all the files my xdata size is - 4450 and code - 37750.
But i face a problem in executing a particular block of a program.
the block has one for loop, and after completing the for loop has a sprintf function.
both the routines are correct but i dont understand if i remove the forloop only my sprintf is executing.
if i put my for loop the spritnf is not working. the function i do inside the forloop is very correct.
since this type of routine that is the for loop + sprintf is used in 4 places. The first 3 places there is no problem but the problem comes in last place.
i do not know y the compiler is behaving in a peculiar manner?
can anybody help me regarding this?
"Arr[r][s] = fMonDevVol;"
Is 's' initialized before its use?
ya i found the error.
Actually i declared Arr[81][10] globally and in the function passed arr[87].
Thank you very much.