Heres the issue in a different form:
This code works:
      for nSmsCenterPhone+1 using Index loop
          SmsCenterPhone[Index]=data_eeprom(Index+n)+48
      end loop
      SmsCenterPhone[0]=data_eeprom(n)                        -- Insert "+" 
@[0]

This should work and the same, but no... it doesn't work.
      SmsCenterPhone[0]=data_eeprom(n)                        -- Insert "+" 
@[0]   
     for nSmsCenterPhone using Index loop
          SmsCenterPhone[Index+1]=data_eeprom(Index+n+1)+48
      end loop

Very odd issue.
Any ideas?
Thank you.

Cheers,
FS
On Friday, December 16, 2022 at 6:15:16 PM UTC flyway38 wrote:

> Hello all,
>
> Have found an odd issue.
> Maybe me not doing it right, but need to ear from you about it.
> Here's the code:
>
>       for nSmsCenterPhone using Index loop
>           SmsCenterPhone[Index+1]=data_eeprom(Index+n)+48
>       end loop
>
> Situation is; I need to start filling array SmsCenterPhone[20] starting 
> from 2nd byte [1].
> It fails and don't understand why.
> EEprom data is ok. Have double checked it.
> Have found that it works if I don't add +1 do Index to 
> SmsCenterPhone[Index+1], but would like to understand why this is happening.
> Thank you very much.
>
> Kind regards,
> Filipe Santos
>

-- 
You received this message because you are subscribed to the Google Groups 
"jallib" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jallib+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jallib/a5e8729b-7dc4-4f2d-904f-7950f3b3d05cn%40googlegroups.com.

Reply via email to