Second shift register in chain outputs lower voltage

What should I do?

  • Change resistor values and/or add/remove resistors

    Votes: 0 0.0%
  • Change capacitor values and/or number of capacitors

    Votes: 0 0.0%
  • Ditch all 74HC164's and buy new 74HCT164s

    Votes: 0 0.0%

  • Total voters
    0

dannyf

Joined Sep 13, 2015
2,197
That's probably my problem
not likely.

here is the code I showed earlier performing in simulation.

12f675_eprom.PNG

the code is:

Code:
        eprom_write(0x5522);                //send test value 1
        delay(100);                            //waste some time
        eprom_write(0x2255);                //send test value 2
        delay(200);                            //waste some time
the first value being sent is 0x5522, and then 0x2255. You can compare those values with the output on the shift registers.
 

Thread Starter

testuserabcdef

Joined Jul 12, 2016
127
not likely.

here is the code I showed earlier performing in simulation.

View attachment 118715

the code is:

Code:
        eprom_write(0x5522);                //send test value 1
        delay(100);                            //waste some time
        eprom_write(0x2255);                //send test value 2
        delay(200);                            //waste some time
the first value being sent is 0x5522, and then 0x2255. You can compare those values with the output on the shift registers.
The reason why I believe the HCT is the answer is because my EEPROM might require more current on its inputs to run properly and the HC version wouldn't provide enough current. I think its worth switching since HCT provides 5x more current compared to HC according to that link I showed
 

dl324

Joined Mar 30, 2015
18,337
The reason why I believe the HCT is the answer is because my EEPROM might require more current on its inputs to run properly and the HC version wouldn't provide enough current.
AT28C256 input current is 10uA max. You already established that the EEPROM wasn't the problem when you removed it from the circuit.
 
Top