techtravels.org

On speed optimization

The theoretical limit, assuming 300rpm drives, is 200ms per track. Or 400ms per cylinder, or 32 seconds per disk. Most attempts read slightly more than one track. I read 16,384 bytes, or 262ms worth. Right now, if I...

working cause of bit errors

I think I’ve stumbled on something. I don’t think I’m capturing enough data. 13,824 has been my magic number forever.  It was larger than the 13,800 that Marco used in afr.c.  But I’m beginning...

first .adf written

Well, I’ve written my first .adf tonight! I threw together a quick routine on the PC side to query the SX for both sides and all the tracks. It generated a 901,120 byte .ADF file of a disk I had called...

new isr thoughts

While this new ISR is indeed easier to understand and much more simple, I can’t help but remember what else my ISR used to do for me. The four things I really lose are: 1> Any type of double 1’s protection...

Timeline

I’ve put together a time line of events starting from November 2004, the initial idea.

CLICK THE ABOVE IMAGE FOR A FULL SIZE VERSION.

adding more commands

Now that I *think* I’ve got a handle on the reading portion, I’ve been adding a couple more commands. I added support so that the SX knows what cylinder number it is on.  The F and B commands increase and...

Found one issue

Well, within an hour or so of getting my new LogicPort logic analyzer hooked up, I’m at least noticing some symptoms that I haven’t seen before. The drive is putting out(or the logic analyzer and my sx is...

Intronix LA1034

I’m seriously looking at the Intronix LA1034 logic analyzer. It’s a USB PC-based logic analyzer.  34 channels, samples up to 500mhz, and has nice trigger options, etc.  I’ve downloaded the software...

pullups

These are all 2us per division on the scope.  Top trace is the actual MFM, bottom trace is the entering and exiting of my ISR.  You should see an entry into the ISR for every falling edge, and every ~2us afterwards. 1k...

mid-january status

So here’s where I’m at: I know my memory read and write routines are good.  I calculate a checksum as I’m writing the data, and on the output of that data to the PC, I also calculate the checksum. ...

revisited memory routines

I was looking over my reading and writing routines. Minimums for the fram are Clock high min. 28ns Clock low min. 28ns Data setup min 5ns I write in two places: First, when bits are coming in from the drive, and the ISR...

simplified ISR

It looks as if I spoke too soon. I’m still having reading problems.  The data used to be forced into an MFM mold, but all that’s done in some cases, is to further corrupt the corrupt data. I rewrote my ISR...