I have a 56 byte register available on some eeprom that I'd like to store engine hours with. Currently I just use 3 bytes to increment a 60 second timer and then download the information (the number rarely exceeds 9999 minutes before it transmits).
The problem is that I need to associate a date with this. Every time the vehicle is started I need to start my hours recording, but I need to determine which hour that hour was incremented on.
So if I have a byte[56] array, what would the be the easiest way to store a date (or just an hour of the date), followed by a number, and be able to tell them apart?
For transmitting, I'd need a way to iterate through the array and extract the date or hour, and the hours count.
Any ideas for this would be great, thanks a ton.
End results on a report would look similar to:
06:00 - 38 minutes 09:00 - 60 minutes 10:00 - 60 minutes etc
Okay here is an idea of a scheme to fit all the data you need in your 56 bytes (in fact we can fit upto 11 dates and times into 56 bytes):
Assuming you don't expect this system to last more than a thousand years we can define the first part of the year as i.e. year 2013 is split into two, the epoch and year.
Now you could simply use 7 bytes and increment the values of each and would allow you to store upto 8 dates and times but you could create a struct and bit bang the individual bits to compact it down further allowing you to cramm it into 40 bits (or 5 bytes) allwing you 11 dates.
You could also drop the epoch if you are really cramming but the above scheme will allow you to work with dates upto 3199.
I am sure there are other and more compact ways i.e. number of milliseconds since 01.01.1970 upto say a few years in the future might reduce it by a few bits but reduce the longevity of your code but I haven't had a look at the actual values.
Some example code (Have updated to use BitArray as bool is internally a byte(?!) but BitArray is actually bits... Very important in OPS case.:
OP should note that I believe you are wanting to store the amounts of minutes driven in each hour BUT this would then require a whole lot more space (a record for each hour they have driven in or a start and stop record for each day indicating the minute they started and stopped (a stop has to come after a start afterall). The code below will allow you to record how many minutes have been driven in a given day.