81
Comments
  • 10
    @FrodoSwaggins
  • 2
    @Root was gonna comment something about him lol
  • 5
    That was just Boeing's warm-up for the 737 max.
  • 4
    That kind of sounds like Y2K. Can someone explain why it matters (if it does)?
  • 16
    @kamen You have two ways of checking time intervals with unsigned integers: one doesn't work upon roll-over, and one does. Boeing went for the first option - typical noob mistake.
  • 16
  • 7
    @kamen

    2^32 = 4,294,967,296
    51 * 24 * 60 * 60 * 1000 = 4,406,400,000

    I am not an expert in aviation, but it probably works like a mileage car log.
    Thus "display of misleading data" to the pilots, with that data including airspeed, attitude, altitude and engine operating indications.
  • 9
    @cho-uc It's the internal system time in microcontrollers, driven by its timer interrupt. Basically just a 32 bit unsigned int with the milliseconds since power-up of the component.

    You need that for all sorts of time intervals like "check that this switch here has been pressed for at least 5 seconds" or "switch this motor here on for 3 minutes".
  • 8
    I know nothing about planes - but are they usually left "on" for 51 days?! I would have thought they'd be powered off each night if they weren't being used. Or do they work more like a car battery in that they're always on standby?
  • 8
    @AlmondSauce That's what Boeing maybe thought, too. On the other hand, aircraft are being cleaned and maintained at night so that they don't get to sleep that much.

    If there even is a night on ground, that is - if you fly e.g. Delhi-London in the evening, you arrive in the morning.
  • 6
    @Fast-Nop I'm still wondering if it's an issue at all for that reason - I get not all planes would have a rest each night, but more than a month without ever having a rest?! That seems a bit much.

    There's massive problems at Boeing, definitely. But the register is kind of the idiotic tabloid of the tech world which loves to publish crap... so I'm really not sure whether it's a big problem or not.
  • 12
    @AlmondSauce Of course the engines won't be running 24/7, but if it's powered via ground power plug or battery, the computers keep running.

    Especially in cold climate, you don't want to leave it standing in the night because it takes quite some time to warm everything up again.

    Also, in avionics, you can't just say "most aircraft get switched off". If this is mandatory for safe operation, there has to be a well-defined process for that to make sure airlines actually follow that.
  • 6
    Every minute costs, so airlines want their planes as much as possible in the air. they want the downtime as low as possible, since it needs time to boot an plane. If an onboard system on an train needs less than two hours to boot up, and trains have much less computers than airplanes today, an modern 787 would need much more time, since it has many computers that depend on each other.
  • 4
    @stop What the heck, which train needs two hours to boot up?
    I have seen multiple reboots of different trains and all of them were up running in less than a minute, most of the time it was only a matter of seconds.
  • 2
    Well That sounds bad and all, but let's focus on the important thing, here: I hope they were able to save money thanks to that little thing. Right...?
  • 2
    Sounds a bit like the integer overflow of the esa rocket a-something, a similar fuck up that resulted in a crash because the trajectory got messed up
  • 7
    @matt-jd The rocket integer overflow was different because that was a bug in itself. With the system timer, overflow itself isn't a bug, that's just the normal wrap-around - the bug is in mishandling that.
  • 0
    @Benedikt some german trains frim bombardier buyed by the DB.
  • 0
    There’ll be a lot of time for them to rest now with the pandemic. Laid to rest.
  • 1
    @Fast-Nop as I first read your 'does not work doing rollover' I first imagined a clock that stops working when the plain does a barrel roll.. Rip.
Add Comment