Saturday 30 April 2016

PET Diagnostics - Upcoming Project Preview

This is an old post, preserved for reference.
The products and services mentioned within are no longer available.

This is a preview of an upcoming project. Not sure if the name will stick, but at the moment it's called PET Exerciser (UPDATE: it didn't, it's now called 6502 Diagnostics). This started when I was repairing a few PETs and was using a NOP generator. This idea of these is the hard wire the NOP instruction onto the processor databus, the end result of that is it just steps through all the addresses sequentially, continually. That is useful to check address decoding, and see if chip enable pins are pulsing in the right way. The trouble is the 1MHz 6502 based NOP generator is a bit slow to check high address bits on a scope (at least one without digital storage), but too fast to check by eye.
I got to thinking, could I adjust the clock rate fed to the 6502 to get the pulses into a more usable range? Before I started looking at that, I thought that it would be easier to just bypass the 6502 all together and use a couple of 8 bit counters to cycle through all the address bus at whatever speed I chose. I did look at a few options for that, but it was going to be a bit messy as it would have ended up with 4 x 4 bit counters and a pulse generator, which was maybe going to be an 8 pin microcontroller. I then thought I could just use a microcontroller. And lo the PET exerciser diagnostics was born.
I then got to thinking, if I had a few more pins on the microcontroller, I could access the databus and some of the control signals as well. Hmm. interesting. The prototype doesn't look as neat as that final PCB will.
Under that mass of wires is a Commodore PET, and on the breadboard is a micrcontroller, the DIP version of the one I will use on the final board. The microcontroller is connected to most of the pins in the 6502 socket. There isn't an actual 6502 involved any more. Before I got around to writing the code for the NOP generator. I was interested to see if I could actually drive the PET hardware to do anything interesting.
This is the first test was a screen of incrementing characters, but as I got the hang of writing the PET video RAM, that quickly grew into a character table. If nothing else than to help me work out what characters to write the the video RAM to show on the screen - it's PETSCII, not ASCII. Since I can now write to RAM, I can also poke things, and one useful poke on the PET is to change character sets from business mode (with uppercase and lowercase letters) to graphics mode (without lowercase but more symbols. This sets CA2 on the VIA which controls the high address line on the character ROM.
Here you can see the PET board I was testing has a faulty character ROM, some of the symbols are not displaying correctly in graphics mode. OK, this is proving rather interesting and should be very useful. What next? Well, let's test the RAM. I'm currently working on a 2001 board, so I've only set it to test the first 8K. I've split it into 1K blocks and tested by bit to help narrow down the faults.
The test algorithm I'm using is fairly simple, I'm just poking various values and reading back. I'm recording any bits that are different from the values written, and here it has picked up 2 errors on one RAM chip. This matches what BASIC was showing when the PET was running, it only detected the first 1K of RAM, so was showing around 800 bytes free. I've removed the chip I think it is, and retested.
Good, it's showing 400 errors (that's 400 hex, 1024 decimal), all in the lower nibble, which is exactly the area served by the 2114 chip removed. I tried to lay the screen out to match the orientation of the chips, so the second row of 2114 chips, right hand side is the culprit.
I replaced the chip and retested and it's now fine, and when I return this to 6502 control, it should detect all 8K of RAM again. The TMS2114L-20NL I have used there isn't an exact replacement for the TMS4045-45NL, but is enough to prove the point whilst I try to locate something better. I'll probably use one of the pair that are the video RAM, and replace both of those with faster 2114 chips.
You can see where I was also starting to test the ROMs. I've gone for a simple 16 bit checksum of the ROMs, and that seems to be working consistently. I've added a lookup table of CRC codes with descriptions for known good ROMs. I've got it plugged into one of my 6502 ROM/RAM boards for testing, so I have been able to get CRCs for most of the standard ROM sets already. This is a good way to identify faulty ROMs.
Here some of the 6540 ROM chips are working (I've given the chip numbers of the good ones), but the others are coming back with different CRCs. The CRCs have also changed on those as I have repeated the test, so I guess they are faulty, or since it is only the x000 ones that are working, there may be a problem with the BA11 line that controls the x800 ones. More testing required.
I've added in a test for video RAM before the screen is drawn, and inserted the results into the memory map. I'm testing the full 2K region, but the second 1K is a mirror of the first, apart from 80 column systems. I've also expanded the address ranges to test the 32K and 4K ROM sets on a 4032 system. These two modes may be a different build, jumper selectable, or maybe by a menu?
I'm getting a bit carried away, there are so many possibilities here, and I think this is going to turn into a very useful piece of kit. There any many more things I plan to add, such as scanning the keyboard to test the keyboard, and also to control a menu system to cycle between various tests. I can also add testing for datasettes, IEEE-488 drives and even printers. I need to look into initialising the CRTC on later PETs so they can be used as well, and also reformat the screen for 80 column use. I could even include a simple BASIC interpreter....maybe not. It would also suit many other 6502 based machines, including the VIC20, BBC micro, and maybe some of the Atari 400/800 series. Anywhere there is a 6502 processor and a display that I can work out how to drive.
So just to recap, this is being generated on a real PET, with the PET exerciser in the 6502 socket. It's a microcontroller with it's own ROM and RAM. No 6502 code is executed. No actual 6502 is used. No PETs were harmed in the testing of this product.

UPDATE: I've decided to go with PET diagnostics. I have also added a reset button and disconnected that from the onboard reset, instead monitoring that to show faults with onboard reset circuits.

UPDATE 2: I've changed the board to just 6502 diagnostics, as I will be looking at other systems to use (KIM-1, VIC20, BBC etc.), I'll keep PET diagnostics as the on screen title for the PET version of the software. I've removed the reset switch, but kept the reset monitoring. I've added some DIP switches to allow screen mode to be set and maybe some other options. The PCBs have now been ordered.

UPDATE 3: The boards have arrived, but the PCB manufacturer has managed to mess up my design and rotated the ground pad of the main IC to short out several of the pins, including the +5V rail. This is what I had designed:
This is what arrived:
Now waiting for a second batch.

UPDATE 4: Still waiting for the boards, in the mean time, I've redesigned it a bit, with a bigger microcontroller. This now appears as a USB device and shows status in a serial terminal. This also has some analogue inputs so I can check the rise time of the power and reset pins (to check problems like I had with the Oric 1 repair recently).


UPDATE 5: I'll write this up properly once I have had time to do further testing, but the V1.1 boards have now arrived, with no pads rotated as far as I can see. The first one is now built up and being tested.
This is how it would be used, plugged into the CPU socket of a Commodore PET.

UPDATE 6:
More on the testing of these new board.

UPDATE 7:
The new boards are available now.

Sunday 3 April 2016

Nissan Leaf - Three Years On

This is an old post, preserved for reference.
The products and services mentioned within are no longer available.

For the last three years, I've been driving around in a Mark I Nissan Leaf electric car, and it's been great. Three years ago, there weren't that many of them about, but they have certainly picked up. When I got it, things were a bit uncertain, there were lots of neighsayers warning the battery pack would go bad and cost half the price of the car to replace, and also that it would never be practical etc. I was pretty confident it would be fine, but to minimise the risk, I took a three year lease. At the end of that the car goes back to the leasing company and if it does need a new battery, that would be their problem.
Well, here we are three years and 9,000 miles later, and none of the doom and gloom has happened. Far from it. It's been a great car, very easy to drive, very cheap to run and maintain, and no massive battery replacement bills. Running costs have been minimal, servicing seems to be mainly replacing the pollen filter and the screen wash. Charging in many places is free (many car parks, Ikea, Metro Centre, my parents house), and checking back on my chargeyourcar charging card, I have paid in total £3.00 in the last three years. Yes, three quid. The most I have paid in one go was in a business park where a 75% charge on the Leaf's 24KWh battery pack cost £1.05, between 1p and 2p per mile. My old faithful diesel Golf was about 10p per mile (+ servicing, road tax etc.). I don't have figures for how much I spent charging it at home, but at 10p per kWh, it would cost £1.80 for a 75% charge, working out between 2p and 3p per mile. Given that, and all the free charging, I would guess the 9000 miles has cost me in total less than £100. Read that again, nine thousand miles for under one hundred pounds!
I'm quoting these as 75% charge figures as I generally try to recharge when it goes down to 25% charge. That is usually showing 25-30 miles left at that point. I have learned that the range estimates on the Leaf are frankly rubbish. Often double when you would actually get. In practice, driving with no consideration for economy, and enjoying the car and it's quite impressive acceleration, I could get around 40-60 miles before it got down to 25%. This was fine for me, I do lots of short local journeys, so this is great. From Tynemouth, I've driven down as far as Billingham, and up as far as Alnwick. These both pushed the limits a bit. However it was comfortable driving to Durham or Newcastle Airport etc. The Mark I Leaf starts in 'D' (drive) mode, which is full performance. There is an 'E' (economy) mode, that reduces the acceleration and the heater to conserve energy. It's still nice to drive like that, but that is more effort to engage (press the gear knob down twice), so I didn't use it much unless I had to. I think the newer Leafs reverse this to encourage greater use of Eco mode.
The online 'carwings' app shows charge and estimated range has got a bit better, but is still flaky, and suffers from the same poor estimates and still shows percentages that can only be one of 13 values, one for each of the 12 bars on the display, so no additional granularity. There was a bit of publicity recently about the lack of security on this. I was interested to see whether there was any more detail available in the raw data responses, but didn't want to get my IP address blocked by trying it. Credit to whoever created that animation, I wonder if I am the only Leaf owner with a collection of Commodore PETs?
Towards the end, the range has seemed to have dropped a bit. Not sure why. There are 12 bars on the side of the 'fuel' gauge which show battery condition. Mine is still showing all 12. I have seen some other Mark I Leafs for sale with 30,000 miles on the clock and the battery condition dropped to 11 bars. As an example, I was trying to work out the numbers. One day, I was down to 2 bars, so 17% charge, 83% to fill. I charged it on a 3.3kW charger (a 16A supply), and in 4 hours 15 minutes, it was full. That is 4.25h x 3.3kW = 14kHw, it should have been almost 20kWh. I suspect this is an instrumentation problem, so it may have been reading empty when there was quite a bit of charge left, but I was never confident enough of that to run it flat. As I say, the instrumentation of the fuel gauge on the Mark I Leaf is a bit rubbish.
In all that time, I never actually ran out of charge. That was always the first question, 'what happens when you run out of charge on a motorway'. Of course the answer is the same as a petrol or diesel car, people point and laugh. The trick is also the same as with a conventional fuel vehicle, plan to not run out of fuel. I won't name any names, but in the three years I've had the Leaf, another member of my family has run out of diesel twice.
So all in all a great car. I would certainly recommend a Leaf to anyone who drives less than 50 miles a day. That's about 90% of car owners apparently. Cheap to run, very easy to drive, low maintenance costs. I've got a loan of a petrol car at the moment and I'd forgotten how much more effort it was to change gear all the time, go out of your way to stand for five minutes filling the tank with foul smelling flammable chemicals and then paying £60 for the privilege. (N.B. that's £60 for a tank of petrol to maybe do about 400-500 miles, I got 9,000 miles for less and two tanks full).
Like any used cars, the prices on used Leafs are quite low these days. There aren't many of these Mark I Leafs around, but it is well worth considering a used Mark II, which has a better heater, better range etc. It is now the end of the lease, and the lease company (Arval) has messed me around quite a bit offering to sell me the car at the end, then saying they couldn't, then saying ask again 30 days before the end of the contract and so on. The final conclusion is no, they won't sell me the car. Bit of a shame as I would have been happy to buy and keep it. The car has now been collected and I am soon to take delivery of my new Electric car. No, not a Tesla model 3 (I'm waiting for the model X), it will be another Leaf, one with more batteries, bigger range, seemingly better range estimates and a better stereo. More on that when it arrives.

2022 Update: I still have the 2016 Leaf that was on order when this was written. That's nearly 10 years of driving electric cars and would not go back. I don't like the styling of the current Leaf, so I am happy to stick with this one, it recently passed it's MOT with no problems, other than the tyres which were starting to show their age. They would normally we worn out by this age, but the regenerative breaking on the Leaf puts less stress on the types than traditional breaks.