CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

use of internal eeprom

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
MCUprogrammer



Joined: 08 Sep 2020
Posts: 221

View user's profile Send private message

use of internal eeprom
PostPosted: Sun Jan 15, 2023 5:28 am     Reply with quote

Hello
Again I am facing a problem. I am trying to save EepromVal value to internal eeprom. But I am having a problem.
In the program I added, if I compile the program and load it into the processor without assigning a value to the float EepromVal variable, the button and the + and - buttons do not increase or decrease the EepromVal value. However, if the float assigns EepromVal = 0.0, the value increases and decreases very smoothly with the +/- buttons. But this time it does not record to eeprom. What is the reason of this.

Also, even if I don't write 0 to the variable value you assigned in the global namespace, doesn't that mean 0? In standard C, static and global variables are initialized to 0. Auto-lived variables are initialized with a garbage value. Even using a variable with a garbage value causes undefined behavior.
Code:


#include <18F45K22.h>
#device ADC=10

#FUSES NOWDT                   

#use delay(internal=64MHz)


#use fast_io(c)


#include <internal_eeprom.c>

#define OLED_FAST_DRAW

#include <math.h>
#include <SSD1306_UPDATED.c>

#define incBUTTON                      PIN_C0
#define minBUTTON                      PIN_C1
#define resBUTTON                      PIN_C2

char textBUF[9];
float EepromVal = 0.0;

void Print_Eeprom_To_Screen(void)
{
   read_float_eeprom(0x00);
   sprintf(textBUF, "%2.1f ",EepromVal);
   textBUF[4] = '\0';     
   oled_text57(80,45, textBUF, 2, 1);
}

void main()
{

   char Eeprom[]="Eeprom:";
   

   set_tris_c(0x1F);

   
   oled_init();
   oled_clearScreen();
   
   oled_rect(1, 1,127,63, 0, 1);
   oled_line(0,22,127,22,1);
   oled_line(0,42,127,42,1);
   oled_text57(5,45,Eeprom,2, 1);

   //write_float_eeprom(0x00,EepromVal) ;
   Print_Eeprom_To_Screen();

   while(TRUE)
   {
     
     
      if(input(incBUTTON)) {
         EepromVal+=.1;
         write_float_eeprom(0x00,EepromVal) ;
         Print_Eeprom_To_Screen(); 
      }
     
      if(input(minBUTTON)) {
         EepromVal-=.1;
         write_float_eeprom(0x00,EepromVal) ;
         Print_Eeprom_To_Screen(); 
      }
     
      if(input(resBUTTON)){
         delay_ms(20);
         while(input(resBUTTON));
         reset_cpu();
      }

      oled_flush();
   }

}



_________________
Best Regards...
MCUprogrammer
_______________________________
Work Hard
Ttelmah



Joined: 11 Mar 2010
Posts: 19219

View user's profile Send private message

PostPosted: Sun Jan 15, 2023 5:54 am     Reply with quote

An empty (erased) EEPROM cell contains 0xFF. The value 0xFFFFFFFF
is defines as 'NAN' (not a number). So when you first program the chip
the EEPROM read will not return an accepted number.

You can include a default number into your code, by assigning a value to
the EEPROM using #ROM. Look at the internal define for the
EEPROM_ADDRESS. This will be written back when the chip is reprogrammed.
Alternatively turn off erasing the EEPROM in your programmer, then the
values here will be retained when you reprogram.
MCUprogrammer



Joined: 08 Sep 2020
Posts: 221

View user's profile Send private message

PostPosted: Sun Jan 15, 2023 6:46 am     Reply with quote

Ok, don't return a known number. But when I press the + button, I thinks that the value should increase. There is no action. Also using #ROM I can start the eeprom from yes 0 or any value I want. I've tried. When I start it as 0, the problem is solved. But why do we need such a thing? Why doesn't the increment operation succeed without initializing it with a value. or registration to eeprom does not occur
Normally how should the sequence be to use the internal eeprom.
For example.

1-) Define the variable to be registered in the eeprom.
2-) Use the eeprom writing function suitable for that type.
3-) use the read function wherever you want to read.
Is it true?

How do I turn this off?
"Alternatively turn off erasing the EEPROM in your programmer, then the values here will be retained when you reprogram."
The programmer I use is the ICD-U80 device.
_________________
Best Regards...
MCUprogrammer
_______________________________
Work Hard
Ttelmah



Joined: 11 Mar 2010
Posts: 19219

View user's profile Send private message

PostPosted: Sun Jan 15, 2023 7:12 am     Reply with quote

Because the existing number is so large that adding 0.1 makes no difference
to it. A FP number only has 6.5 decimal places. Now visualise you have:

1

Add 0.1 to this and it goes to 1.1

However have

10000000

Now add 0.1 to it. What happens?. It would technically become 10000000.1
but the floating point representation is only storing 6.5 decimals. So it
remains 10000000.
MCUprogrammer



Joined: 08 Sep 2020
Posts: 221

View user's profile Send private message

PostPosted: Sun Jan 15, 2023 7:44 am     Reply with quote

Smile okay. I understand. Thank you very much. Then if my variable was of type int I wouldn't need to use #ROM. But do you think using #ROM is a better option?

I also asked something based on our previous mail. How do I turn this off?
Quote:

Alternatively turn off erasing the EEPROM in your programmer, then the
values here will be retained when you reprogram.

_________________
Best Regards...
MCUprogrammer
_______________________________
Work Hard
Ttelmah



Joined: 11 Mar 2010
Posts: 19219

View user's profile Send private message

PostPosted: Sun Jan 15, 2023 8:23 am     Reply with quote

Depends on the program used to control your programmer.

If you look in CCSLoad (the CCS control program), it has:
Top right corner of window, 'options'. Hit the expand button for this and
you get a window with options to tick 'Program memory', 'Data EE',
'Config bits'. Turn Data EE off, and select Erase mode (right of this), to
'erase only blocks in hex file'. Then so long as you do not include a #ROM
pointing to the EEPROM, it's contents will be left unchanged.
temtronic



Joined: 01 Jul 2010
Posts: 9102
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Sun Jan 15, 2023 9:15 am     Reply with quote

just a comment....

PICs are well known to NOT do 'floating point math' very well. FPM consumes a lot of code space and time to execute, giving less precise results compared to 'scaled integers'.

It may be worth exploring the use of 'scaled integers', depending on program requirements.
Ttelmah



Joined: 11 Mar 2010
Posts: 19219

View user's profile Send private message

PostPosted: Mon Jan 16, 2023 4:16 am     Reply with quote

Also, if you have an int32 for example, the default value from the erased
EEPROM for this will be 4294967295. If you are using a button to count
this down in 1's, you'd need several weeks to count this down to a sensible
value.
Having the code detect there is no legitimate value there and set a
starting point, or using #ROM to fill in a starting point, is essential in
both cases.
My normal method is to have the value stored as a structure, with a
'legit_value' flag, which is something like AA55. Then if when the value
is read, if this flag is not found, have the code fill in default values for
all the numbers stored in the EEPROM.
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group