A brief discussion on the application of RTC clock in smart cockpit

Publisher:馥睿堂Latest update time:2022-12-19 Source: elecfansKeywords:RTC  clock Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

With the development of technology, more and more in-vehicle electronic devices are emerging. In order to provide drivers and passengers with a better experience, smart cockpits have come into being.

poYBAGOcGEKAa9MSAAGNta-ywAU847.jpg

Updates and iterations of car cockpits: The first generation was relatively simple, with a car radio and tape player, providing users with simple entertainment functions such as radio and music. The second generation added more electronic products, including a central control screen, a car system, and a navigation system to provide convenience for users' travel. The third generation introduced intelligent technology, including a larger central control screen, an LCD instrument panel, HUD (head-up display), a streaming media rearview mirror, etc., as well as in-car audio, seats, lights, displays and other equipment, providing users with human-computer interaction, visual perception, and richer entertainment functions. Main components of the smart cockpit: The smart cockpit consists of three parts: hardware (instrument panel, streaming media rearview mirror, HUD, central control screen, rear seat entertainment system, air conditioning, seats, audio, etc.), software, and human-computer interaction (voice, face, touch, gesture, biometrics, etc.), integrating T-Box, DMS system, ADAS system, high-precision positioning system and future V2X, providing users with a more convenient, intelligent, warm and comfortable experience.

poYBAGOcGEyALsKvAADXk0Ny7yM162.jpg

Typical functions of smart cockpit

With so many functions in the smart cockpit, problems such as high energy consumption and safety of the system will inevitably arise. How to reduce energy consumption and ensure safety is one of the primary issues facing automakers. Therefore, automakers hope to reduce energy consumption as much as possible while maximizing energy utilization through power management systems. Based on the intelligent operating system of the car, there needs to be internal operation logs and diagnostic data to present information to customers in real time, so that users can understand the vehicle condition in real time and solve problems quickly. For this reason, the smart cockpit system needs to use multiple high-precision, high-reliability, miniaturized, and low-power real-time clock chips (RTC). Functions of RTC in the smart cockpit:

Energy consumption management: When the smart cockpit enters sleep mode, the RTC keeps working normally and wakes up the main system periodically through the timing function, thereby reducing the energy consumption of the system.


Safety management: RTC provides high-precision timestamps for event recording, system operation logs, power consumption, mileage calculation and other functions to ensure the safety and reliability of the entire vehicle system.


Comfort experience: RTC provides accurate time for car instruments, central control display, entertainment system, etc., providing drivers with convenient, diverse functions and comfortable experience.


Dapu Communication has been focusing on the research and development of high-stability clocks for nearly 20 years. It also has rich experience in chip design and is committed to closely integrating high-stability clocks with semiconductors. It has launched a number of high-precision, wide temperature range, low power consumption, miniaturization, fast startup, and high shock resistance high-performance RTC chips that can meet the differentiated needs of different application fields. It has passed the certification of multiple industry leading customers and entered the list of high-quality supply chains.


For automotive intelligent cockpit, instrument, central control and other subsystems, Dapu has specially launched:

poYBAGOcGFyABwryAAJCtz3AdnM236.jpg

pYYBAGOcGGaAKeV3AAIWRgQbbFQ523.jpg

At the same time, the company has also launched a full range of clock products for new energy vehicles, including: Crystal, SPXO, TCXO, Buffer, etc. The diversified products facilitate users to select and combine, providing a "one-stop" solution.


Keywords:RTC  clock Reference address:A brief discussion on the application of RTC clock in smart cockpit

Previous article:Domestic SIT1042 is perfectly compatible with TJA1042 (NXP brand)
Next article:Engine ignition timing fault

Recommended ReadingLatest update time:2024-11-16 11:44

STM8S003F3 internal clock initialization and timer delay usage
The STM8S003F3 internal crystal oscillator initialization code is as follows:   CLK_DeInit();   CLK_LSICmd(ENABLE);   CLK_HSICmd(ENABLE);   while(SET != CLK_GetFlagStatus(CLK_FLAG_HSIRDY));     CLK_SYSCLKConfig(CLK_PRESCALER_CPUDIV1);    CLK_HSIPrescalerConfig(CLK_PRESCALER_HSIDIV1); //HSI = 16M (divide by 1) Here I
[Microcontroller]
About S3C2440 RTC real-time clock driver configuration and modification under Linux
  The support for S3C2440 RTC under Linux is very complete. We only need to make simple modifications to use RTC        1. vi arch/arm/mach-s3c2440/mach-smdk2440.c        static struct platform_device *smdk2440_devices __initdata = {        &s3c_device_usb,        &s3c_device_lcd,        &s3c_device_wdt,    
[Microcontroller]
LCD1602 clock displays time and date with alarm and can be adjusted cyclically
#include #include intrins.h #define uchar unsigned char #define uint unsigned int sbit lcdrs=P2^6; sbit lcden=P2^7; sbit lcdrw=P2^5; sbit key1=P2^0;//欢迎开屏/显示时间日期/显示闹铃切换 sbit key3=P2^1;   //循环调节 sbit key4=P2^2;//加 sbit key5=P2^3;//减 uchar flag1,flag,flag3,num1,shi,fen,miao,nian,yue,ri,zhou; uchar _fen,_shi;
[Microcontroller]
Application design of RTC module based on S3C2410
introduction Based on the introduction of S3C2410, this paper analyzes the internal structure and working mechanism of RTC, and finally gives the application development dedicated to RTC function. Hardware Structure Introduction to S3C2410 Processor S3C2410 is a 16/32-bit RISC microprocessor launched by Samsung. It
[Microcontroller]
Application design of RTC module based on S3C2410
Explanation of the code for configuring the system clock of STM32
By default, ST configures the system clock to 72MHZ.  The following seven steps are the function of setting the system clock, which is taken from the library file system_stm32f10x.c. The interconnection-related code is deleted for easy analysis and numbered. There are seven steps in total. This order is also the syste
[Microcontroller]
STM3210X external clock configuration and frequency multiplication selection
The system defaults to using 8MHZ clock to multiply the frequency to 72MHZ Note: If the external clock is 8MHZ, no change is required first step: Change the external clock Assuming the external clock is 12MHZ, then change to #define HSI_VALUE ((uint32_t)12000000) /*! Value of the Internal oscillator in Hz*/ Ste
[Microcontroller]
Introduction to 51 MCU - (New) Simple Digital Clock
Design requirements The hours (two digits), minutes (two digits), and seconds (two digits) should be displayed correctly and stably, and the digital tube should not flicker. The hour and minute information can be adjusted by pressing buttons, making it convenient for users to calibrate the time. Add an alarm funct
[Microcontroller]
Introduction to 51 MCU - (New) Simple Digital Clock
LCD1602 liquid crystal display can display the clock and modify the time
CODE: /*************************************** Program function: The LCD display screen displays the clock and can modify the time ****************************************/ #include reg52.h #define uint unsigned int #define uchar unsigned char sbit K1=P1^0;//Set up three independent keyboards sbit K2=P1^3; s
[Microcontroller]
Latest Embedded Articles
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号