6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Fri Nov 15, 2024 5:02 am

All times are UTC




Post new topic Reply to topic  [ 41 posts ]  Go to page Previous  1, 2, 3
Author Message
PostPosted: Sun Jun 19, 2016 6:51 pm 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8487
Location: Midwestern USA
Dr Jefyll wrote:
BigDumbDinosaur wrote:
Well, I am ex-Navy. :) :D 8) :lol:
Is that why in that thread last week you were trying to convince us that during VPA=VDA=0 those '816 control signals were FLOATING ? :wink: <groan>

Man overboard!!! :lol:

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Sun Jun 19, 2016 6:54 pm 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8541
Location: Southern California
From my RS-232 primer: "If the speed of the transmitter and receiver disagree by more than 2-3%, the errors will start showing up. 5% would be a half bit time by the end of the frame. If the transmitting end were 1% below the intended speed and the receiving end were 1% above the intended speed, you would have just about all the error the system could tolerate and keep working reliably under ideal conditions."

Happy Fathers' Day to all the fathers. Both our sons and our daughter-in-law , plus my parents, will be here in less than an hour.

_________________
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?


Top
 Profile  
Reply with quote  
PostPosted: Sun Jun 19, 2016 7:09 pm 
Offline
User avatar

Joined: Fri Dec 11, 2009 3:50 pm
Posts: 3367
Location: Ontario, Canada
BigDumbDinosaur wrote:
The NXP 28L92 I am currently using in POC V1.1 can be configured for either an Intel or Motorola bus interface. Ironically, the Intel interface proved to be less a hassle to adapt to the 65C816.
For anyone who's wondering, "Motorola bus interface" could mean two things, both distinct from the Intel approach. The Motorola 6800 bus matches that of the 6502, but the Motorola 68000 bus is something else entirely. I remember getting momentarily tripped up by this ambiguity, perhaps in a datasheet from NXP; I don't recall.

BigDumbDinosaur wrote:
your baud rate clock should be either 1.8432 MHz or 18.432 MHz
[Edit:] Integer multiples of the exact rate do eliminate error, but 10X 1.8432 MHz isn't the only option -- you can go 3X or 5X the 1.8432 MHz, for example, and still have zero error.

BTW and FWIW, the SC16IS750 I'm playing with accepts rates up to 80 MHz on its 16X input clock. At that rate you get pretty fine resolution, so even if the math won't allow you to get your exact desired rate, you're bound to have an error that's darn small. A degree of error is tolerable anyway, as Garth noted. But running a higher input clock lets you do slightly better, FWIW.

srowe wrote:
Latching /ADS from /IO2 and Φ2 ORed together gives me reliable register reads.
I don't find your meaning clear, I'm afraid. Any chance you can post an up dated schematic, please?

_________________
In 1988 my 65C02 got six new registers and 44 new full-speed instructions!
https://laughtonelectronics.com/Arcana/ ... mmary.html


Last edited by Dr Jefyll on Sun Jun 19, 2016 7:30 pm, edited 2 times in total.

Top
 Profile  
Reply with quote  
PostPosted: Sun Jun 19, 2016 7:19 pm 
Offline
User avatar

Joined: Thu May 28, 2009 9:46 pm
Posts: 8487
Location: Midwestern USA
Dr Jefyll wrote:
BigDumbDinosaur wrote:
The NXP 28L92 I am currently using in POC V1.1 can be configured for either an Intel or Motorola bus interface. Ironically, the Intel interface proved to be less a hassle to adapt to the 65C816.

For anyone who's wondering, "Motorola bus interface" could mean two things, both distinct from the Intel approach. The Motorola 6800 bus matches that of the 6502, but the Motorola 68000 bus is something else entirely. I remember getting momentarily tripped up by this ambiguity, perhaps in a datasheet from NXP; I don't recall.

Right you are; I should have clarified that. The "Motorola bus" in this case means the 68000, not 6800, something that NXP doesn't explicitly state in the data sheets.

_________________
x86?  We ain't got no x86.  We don't NEED no stinking x86!


Top
 Profile  
Reply with quote  
PostPosted: Sun Jun 19, 2016 8:03 pm 
Offline

Joined: Thu Jan 14, 2016 5:24 pm
Posts: 27
Dr Jefyll wrote:
srowe wrote:
Latching /ADS from /IO2 and Φ2 ORed together gives me reliable register reads.
I don't find your meaning clear, I'm afraid. Any chance you can post an up dated schematic, please?


Sure.

Attachment:
rs232-bw2.png
rs232-bw2.png [ 11.71 KiB | Viewed 982 times ]


Looking at the VIC-20 schematic again I was incorrect to say the expansion address is only valid when Φ2 is low. I still don't know why the original circuit doesn't work.


Top
 Profile  
Reply with quote  
PostPosted: Sun Jun 19, 2016 8:19 pm 
Offline
User avatar

Joined: Fri Dec 11, 2009 3:50 pm
Posts: 3367
Location: Ontario, Canada
Thanks. What are you using as a reference for the VIC-20 signals -- can you post something, or provide a link?

srowe wrote:
I still don't know why the original circuit doesn't work.
Neither do I, but we know Andrew's circuit which you linked to does. That was your starting point, but it failed. The explanation probably has to do with what the VIC-20 puts between its 6502 and the expansion port.

Footnote to the logic-level discussion: your original circuit should've used 74HCT00, not 74HC00. But it's not the sort of mistake that guarantees failure. Sometimes stuff that shouldn't work does. (Erratically, perhaps.)

_________________
In 1988 my 65C02 got six new registers and 44 new full-speed instructions!
https://laughtonelectronics.com/Arcana/ ... mmary.html


Top
 Profile  
Reply with quote  
PostPosted: Sun Jun 19, 2016 8:42 pm 
Offline

Joined: Thu Jan 14, 2016 5:24 pm
Posts: 27
Dr Jefyll wrote:
Thanks. What are you using as a reference for the VIC-20 signals -- can you post something, or provide a link?


I use this schematic (or an original paper version of it) http://www.mainbyte.com/vic20/e_schematic.pdf along with various paper and PDF books (VIC-20 Programmer's Ref, Vic Revealed).


Top
 Profile  
Reply with quote  
PostPosted: Mon Jun 20, 2016 7:55 pm 
Offline
User avatar

Joined: Sun Oct 13, 2013 2:58 pm
Posts: 491
Location: Switzerland
IO2 you connect to ~CS2 is,gates with PHI2. I would rather connect ~CS2 to ground. It is sufficient to have dedicated RD and WR to select the device.


Top
 Profile  
Reply with quote  
PostPosted: Tue Jun 21, 2016 6:12 am 
Offline

Joined: Thu Jan 14, 2016 5:24 pm
Posts: 27
Thanks for the suggestion I'll give it a try.


Top
 Profile  
Reply with quote  
PostPosted: Mon Jul 04, 2016 11:28 pm 
Offline
User avatar

Joined: Sun Dec 29, 2002 8:56 pm
Posts: 460
Location: Canada
Could the terminal be transmitting a continuous break character when there is nothing else to transmit ?
Would it be necessary to have to filter out break characters in the receiver ?
(Assuming there's no CTS/RTS hookup).

_________________
http://www.finitron.ca


Top
 Profile  
Reply with quote  
PostPosted: Sun Jul 10, 2016 8:51 pm 
Offline

Joined: Thu Jan 14, 2016 5:24 pm
Posts: 27
I've now got the board stable at 9600 now. The driver code is nearly complete, just need to handle dropping RTS when the receive buffer is nearly full. I did have some problems with the MODEM Control Reg, reading it doesn't seem reliable, sometimes bits seem to flip which causes problems when toggling the LEDs I've attached to /OUT1 & /OUT2. I've used a zero page byte to store the authoritative state. No other register, including the Scratch Reg seems to suffer from this.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 41 posts ]  Go to page Previous  1, 2, 3

All times are UTC


Who is online

Users browsing this forum: No registered users and 5 guests


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 post attachments in this forum

Search for:
Jump to: