Skip to main content

black box airplane concept vs error memory in car

IS MY CAR HAVE A BLACK BOX?


The Black Box usually we heard when there have a crash in airplane. Do we know that in other things also have similar concept to black box function? Let me thinks..Hmm..Actually this is part of my job as failure analysis engineer. I have to analyze each byte or each line of error memory(together with development team when required:)..) to know what is the problem with our unit specifically and impact to user while driving? Its quite interesting task because from here we can justify what is the problem. 

Our question now Is it similar concept to Black Box is airplane?

I can said Yes and No:).

Let have a look what is concept of Black Box in airplane.

Concept Of Black Box













According to wiki, black box is a box which contain electronic recording device placed in aircraft for the purpose on analysis and investigation if there have an accident. 

There are two different flight recorder devices: 

1. The flight data recorder (FDR) preserves the recent history of the flight through the recording of dozens of parameters collected several times per second. 

2. The cockpit voice recorder (CVR) preserves the recent history of the sounds in the cockpit, including he conversation of the pilots. The two devices may be combined into a single unit. 

Concept Of Error Memory In Car

First, did the error memory is created for Car or Infotainment System in Car? My answer now is infotainment system. But I believe modern car itself have similar concept..

Infotainment System is human machine interface which is like a box working as interface between driver and car. 

What is Human Machine Interface and What is relationship with error memory?

HMI is a medium for user to interact with the machine. For instance, when user press a plus button in Steering Wheel Control(SWC), the signal will send through CAN line(low speed) to the HMI and HMI will trigger the speaker to work accordingly. 

Now, let's back to the error memory. In general, HMI contains a main memory, dram and processor. Error memory basically will stored in main memory.

Error memory contains error log including software exception, bug, and all component which connected to system power management.Media player/FM/AM/XM,Gps and etc.

In conclusion, I believed error memory is essential to know the cause of the problem and prevent any repeated failure😀

 

Comments

Popular posts from this blog

Arduino Interfacing With LCD(16x02) Without Potentiometer

All, today i gonna to share how Arduino connected to LCD(16x02). LCD 16x02 means 16 character in 2 rows. Connection between LCD and UNO Code: #include <LiquidCrystal.h> int Contrast=75;  LiquidCrystal lcd(12, 11, 5, 4, 3, 2);   void setup()  {     analogWrite(6,Contrast);      lcd.begin(16, 2);   }      void loop()  {      lcd.setCursor(0, 0);      lcd.print("ITS WORK");        lcd.setCursor(0, 1);      lcd.print("WELL DONE");  }

L298N motor with Ultrasonic Sensor using Can Bus MCP2515

Today, I will share the project where we use 2x Arduino where each Arduino act as Transmitter to measure a distance using Ultrasonic sensor and Receiver controlling L98N motor driver. Ultrasonic Sesnor L298N Motor Driver            Two output Motor Driver with Enable pin for both Motor. Requirement: 1. 2x Arduino 2. 2x MCP2515 CAN module 3. L298N Motor Driver 4. Ultrasonic Sensor 5. 12V battery 6. Download NewPing, SPI and mcp2515 into Arduino. Instruction: 1. Connect Arduino Nano to Ultrasonic sensor. 2. Connect Arduino Nano to MCP2515(1) through SPI connection. 3. Connect MCP2515(1) with MCP2515(2) using CAN-H and CAN-L wire. 4. Connect MCP2515(2) to Arduino Uno through SPI connection. 5. Connect Arduino Uno with Motor L298N. Code: Transmitter: #include <NewPing.h> #include <SPI.h>          //Library for using SPI Communication #include <mcp2515.h>      //Library for using CAN Communication #define trigPin 3 //

Ultrasonic Sensor With Arduino Uno

Yeah, Ultrasonic sensor now its working. Today i am gonna to share the code of how its work:) It quite easy. We just need to connect 4-pin which is VCC,GND,ECHO and TRG from Ultrasonic sensor to Arduino. Done:) Code : int trigger_pin = 4; int echo_pin = 2; int LED_pin = 13; int time; int distance; void setup ( ) {         Serial.begin (9600);         pinMode (trigger_pin, OUTPUT);         pinMode (echo_pin, INPUT);         pinMode (LED_pin, OUTPUT); } void loop ( ) {     digitalWrite (trigger_pin, HIGH);     delayMicroseconds (10);     digitalWrite (trigger_pin, LOW);     time = pulseIn (echo_pin, HIGH);     distance = (time * 0.034) / 2;   if (distance <= 10)         {         Serial.println (" Object Detect ");         Serial.print (" Distance= ");                      Serial.println (distance);                digitalWrite (LED_pin, HIGH);         delay (500);         }   else {         Seri