Looks like Csabo has put a link to the Xeo3 video on to a new site which has generated a few comments; some good ones....
Check it out here: digg.com
Friday, February 09, 2007
Monday, February 05, 2007
Scrolly message impass...
Damn....My new 4028 chips arrived at the weekend (the BCD to Decimal ones), and I got all excited and rewired my breadboard prototype to try it out. Once it was all wired up, I switched it on and....bugger....didnt work.... I spent the next day or so trying to figure out why!
Here's which I think is going wrong... The old chips had a LOW TTL level output of around .6volts, where as these actually output 0volts. The problem being, that since I use pull up resisters to increase the brightness I need some sort of voltage there so that the power from the pullup doesn't power the LCD matrix when I dont want it to. But with 0volts, the pull up supplies power to both. Damn.
So, next thing to try is a few transistors, although Im almost at the point where I'm thinking sod the extra expense... get the slightly larger PIC (which will probably cost about 50-60pence more per unit, but save power, complexity and wiring - it almost has to be worth it.
Here's which I think is going wrong... The old chips had a LOW TTL level output of around .6volts, where as these actually output 0volts. The problem being, that since I use pull up resisters to increase the brightness I need some sort of voltage there so that the power from the pullup doesn't power the LCD matrix when I dont want it to. But with 0volts, the pull up supplies power to both. Damn.
So, next thing to try is a few transistors, although Im almost at the point where I'm thinking sod the extra expense... get the slightly larger PIC (which will probably cost about 50-60pence more per unit, but save power, complexity and wiring - it almost has to be worth it.
Thursday, February 01, 2007
Plus/4 flash ROM
I was going to put OS96 on some EPROM's so that I could do some bits for Solder, when he suggested that I get a larger ROM and use a switch to toggle back and forth. After thinking about it for a little, I decided to go one step further and put in a single 128K FLASH ROM. This needs a larger socket, a NOR gate and a switch, but will allow me to update the ROM with a little more ease than EPROM's.
I guess I could allow the Plus/4 itself to reprogram it, but I think that might be taking it too far as no one else but me will be using it, and I have a lovely EPROM/FLASHROM programmer. It will mean I could have 4 different ROM's on here if I wanted though - although only 2 are needed just now....but you never know!
I guess I could allow the Plus/4 itself to reprogram it, but I think that might be taking it too far as no one else but me will be using it, and I have a lovely EPROM/FLASHROM programmer. It will mean I could have 4 different ROM's on here if I wanted though - although only 2 are needed just now....but you never know!
Sunday, January 28, 2007
Making tracks....

More scrolly messages

After doing that, I rebuilt the circuit from scratch using the diagram to verify that it does work before I solder 1,000,000 wires wrongly! Because I now have a spare transmit wire on each unit, Im going to forward the packets form the master to each slave which in turn saves me from giving each an ID.


SO, it'll prbably take me most of this week to solder up the board, but I still need to add the new comm's forwarding from panel to panel which I'll do once the board is complete - as its a minor change.
Tuesday, January 23, 2007
Scrolly messages.....

This has forced me to multiplex some lines and currently I need 2 chips to do this. a 3 to 8 demultiplexor, and an invertor. The demultilexor outputs inverted lines so for now I need an invertor, but I can use a 4028 BCD to decimal decoder which doesn't appear to require this - and its reasonably cheap. It's either this or use a PIC with more control lines, but that costs double at just over £2 per PIC, rather than $0.30 more. The 8bit serial to parallel shift register that was suggested earlier would also work, but is more expensive at $0.49, although it is more versitile and could free up lots of lines, but I don't appear to require that so I'll probably plump for the cheaper option.
I've also started coding my PIC's in "C", and things are moving much quicker than using assembler. Its also interesting to see just how much code you get for 2K space. If I was really stuck, I could drop down to ASM again, but so far "C" is working out great and does all the really tricky stuff for me without having to worry about it.
So, what I currently have is a scrolling bitmap through a single matrix unit. I'll build perhaps a 5 unit module with a message/bitmap scrolling over this and then take it into work to test lighting etc. and see how its going to look. After that, I'll need to start looking at getting actual boards made up so I can produce a fair number of them.
I also fixed my USB experimenter box so that it outputs reasonable voltages, so I'll use that to control it, getting the master PIC to do the comms and send on any data the PC sends. Being USB it should be pretty quick and if needs be, you can have 4 of them connected at once.
Sunday, January 14, 2007
Plus4 memory

This design allows for 16, 16K banks of RAM located at $8000 although bank 0 will also reside at $c000->$ffff. Its kind of like a Spectrum 128 deisgn I guess, where you have a single area that can page in lots of banks of RAM. However, theres still the 32K of RAM from $0000->$7fff where you can copy stuff around if you need to. The normal RAM from $8000->$ffff will just be rubbish (more or less) as its written to at the same time as the expansion, but that shouldn't matter.
You probably won't be able to put character sets etc. there (as I have no idea what will happen when it "banks", but any other kinds of data should be fine...I think. This is all guess work at the moment and I still have no idea if this will actually work...but its worth a try as all current memory expansions require you to solder onto you Plus/4 motherboard!
Saturday, January 13, 2007
More hardware fun!

I'm using a PIC16F628A to drive it, but Im running low on lines as it takes 13 to drive it directly, and I still have to get some COMM's in there to be able to talk to it. I originally used a 3 to 8 demultiplexor when I used to scan 5 pixels of 8 rows (scanning downwards), but I swapped that to scan 8 vertical pixels of 5 colums. This has helped to keep it a little brighter as the LED's aren't off for as long, but its really screwed using the 74LS138 as it outputs inverted lines and I can't use that without an invertor chip...3 chips to do a 1 chip job...Oh well, I'll see how I get on, I might manage - I still have 2 lines left, although I've had trouble with one of them before.
Oh...and on the Plus/4 LCD screen front, I also figured I could ditch all the logic chips I had and use a PIC instead...after all, its just a set of control lines going in and a 0 or 1 being set on an out going line if the condition are met...a PIC could do that in its sleep! That would get the +4 LCD down to 2 chips...I could replace the buffer chip with another PIC and that would let me return data easily, AND have even MORE actual RAM there by using the PIC's memory.... handy little thing PIC's... I'm also amazed at how people doing hardware have so many unexpected options, EPROMS or PICs being used as logic decoders... or even the 74LS138 (3 to 8 line demultiplexor) which can also be used a logic decoder... As long as you remember its lines in->lines out...then you have a whole HEAP of things you can do.
Tuesday, January 09, 2007
LCD Screen prototype - finished!

Given access to a GAL I guess it would only have been a couple of chips, and I could probably have decoded the addresses down to a single location rather than a bank of 128! But thats unimportant really.

I've never been terribly good at soldering, but I'm definitely getting better at it; practice makes perfect I guess. Although having bought a proper wire stripper I'm amazed just have vital it is! I've always just done it by hand which usually means a long chunk taken off. But with these, I can snip the plastic off a small end of the wire and using a big magnifier, solder it on easily. Its also SO quick to strip a wire, something I just didn't realise! I'd hate to have done this board's wire strippng by hand.

So with this finished, I now need to wait on my SRAM+GAL's (which are finally on its way I think!) and I can look to doing a brand new external RAM card for the Plus/4, or perhaps the MMC card which would be much more interesting I guess. Although...Xeo3 is starting to beg for some attention, so I might dabble a bit in there soon.
All that said... the very 1st thing Im doing next is a board from the expansion bus that can connect to a breadboard. This would have been much easier on a breadboard!
Edit: Okay, code can be found HERE!. Its not terribly exciting, but it completes the project (until I get around to making a circuit diagram that is...)
Sunday, January 07, 2007
Plus/4 LCD addon!!!

Of course...Its not that easy. I've missed out a lot of stuff here. For proper full speed access I need to be able to read the busy line which requires READ access. This in turn requires another buffer (I think), and some more logic to detect the READ line and then setting the datalines (at least 1 bit) to be the values it needs to be. All I've done just now is put in some big delays so I know the text will have been set.
Although...after playing a little...it looks like the Plus/4 is so slow.... the delays can more or less be taken out! Which is pretty cool...Still, its not "right", but it does work. I also have no way to reset it properly just now, which means I'd have to add some rest circuitry.
But aside from this...I don't care! It works! Its really easy to write to! And its cool!!!
Subscribe to:
Posts (Atom)