??? 07/31/05 10:47 Read: times |
#98503 - connections and timings Responding to: ???'s previous message |
hi,
the first question: is pin 15 (Clock Inhibit) connected correct? This pin should be tied to GND. Now about the code: clr port0.1 ;clock nop nop setb port0.1 mov c,port0.0 As I understand these NOPs are required by TW timing. But what is about propagation delay TPLH? Data comes to output after rising clock edge + propagation delay. In your code there is no NOPs between rising edge and data loading. I suggest you to insert appropriate number of NOPs: setb port0.1 ; insert NOPs here mov c,port0.0 Regards, Oleg |