|
|
|
|
|
by iasay
1431 days ago
|
|
Crazy shit like this happens all the time. However assigning a cause is a little early. Years ago I wrote a firmware loader for an industrial Z80 system. All it did was read a file over the serial port into RAM, jump into it and then overwrite the EEPROM. I got a page quantity calculation completely wrong. It didn't update all the memory pages. Because the changes were fairly small and the code was assembled rather than compiled and the test cases were fairly light, it was released to clients. It still worked absolutely fine but the status LED didn't work on the device in a specific situation because the update CALL never got executed because it was neatly in a previous page that didn't exist any more. Of course this was reported as (1) hardware had completely failed (2) the LED had broken and (3) it only works sometimes. All of which weren't true. No one had even mentioned that they had recently updated it. So I can see how it happens. Thus the tyranny of unexpected behaviour is a deep and dark passage lined with monsters, misinformation and bad assumptions. You have to tread very carefully and not say things too soon because it makes you look even more of an idiot when you have to backtrack later. |
|