eprom memory location


Results 1 to 5 of 5

Threaded View

  1. #3
    malc-c's Avatar
    malc-c Guest


    Did you find this post helpful? Yes | No

    Default

    Thank you for the prompt reply,

    There is only one lookup section in the rtc code

    Code:
    FindDays:
    	LookUp SetMonth-1,[31,28,31,30,31,30,31,31,30,31,30,31],CounterA
    I assume I change this to

    Code:
    FindDays:
    	LookUp SetMonth-150,[31,28,31,30,31,30,31,31,30,31,30,31],CounterA
    EDIT: Tried that, and which the PID code now runs fine, the month is shown as hieroglyphics 27 hieroglyphics 2010

    I also have this code which I gather would read the values

    Code:
    DisplayMonth:
    	CounterB=CounterB*3-3	' Convert BCD Month to EEPROM Start Address
    DisplaySequence:
    	For CounterA=CounterB to CounterB+2
    				' Read and Display Month
    		Read CounterA,CounterD
    		LCDOut CounterD
    		Next CounterA
    	Return
    What would I need to change ?
    Last edited by malc-c; - 27th March 2010 at 23:20.

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts