newbie1212
Newbie level 5
- Joined
- Apr 7, 2014
- Messages
- 10
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 57
Hello every body,
I am trying to write in the eeprom, the code example is provided by Micoship. The code works fine, but i want to change the writing adress EE_addr and increment it by 13 each cycle.
any idea how i can change the starting writing adress?
thank you in advance.
I am trying to write in the eeprom, the code example is provided by Micoship. The code works fine, but i want to change the writing adress EE_addr and increment it by 13 each cycle.
Code C - [expand] 1 2 3 4 5 6 7 8 _prog_addressT EE_addr; /* initialize a variable to represent the Data EEPROM address */ _init_prog_address(EE_addr, fooArrayInDataEE); I have read that it is not equivalent to c pointer, indeed i tried: EE_addr= EE_addr+13; EE_addr=*(EE_addr+13);
any idea how i can change the starting writing adress?
thank you in advance.
Last edited by a moderator: