Error rtc bad

What this section attempts to teach is how to resolve RTC(CMOS) issues on reboot/wake with certain machines. Most commonly looking like the image below:

What this section attempts to teach is how to resolve RTC(CMOS) issues on reboot/wake with certain machines. Most commonly looking like the image below:

credit to u/iDrakus for the image

The reason that these CMOS and safe mode errors happen is due to AppleRTC writing to certain areas that are not supported by the hardware properly and thus resulting in panics and errors.

To get around this, we’ve commonly blocked out all RTC writes with these types of patches (opens new window) but they’re not ideal for many reasons including both breaking Windows and Linux and disabling potential supported regions like for power management.

So with OpenCore, we’ve got a few options to choose:

  • Patch AppleRTC from writing to specific regions
    • They may break in future OS updates
    • Much more difficult for the end user to patch
    • Does not handle EfiBoot writing to RTC
  • Omit bad regions from being writable
    • They may break in future firmware updates
    • Much easier for the end user to patch
    • Prevents EfiBoot from breaking your system as well

The former is actually already integrated into OpenCore with the DisableRtcChecksum quirk, but has the downfall of only blocking regions 0x58-0x59 and only working in the kernel level. Best way to know if this option is best, enable it and try. If this doesn’t work, disable as it’s an unnecessary patch.

With the latter, we’re able to block very specific regions of our choice that match our exact model. And we’re able to do this both in the kernel level and firmware aiding with hibernation support. This however will requires much more time and RTCMemoryFixup (opens new window).

# Finding our bad RTC region

For the rest of this guide, we’re going to assume you’ve tested option 1(DisableRtcChecksum) and it didn’t work or you’re having issues with EfiBoot also writing to RTC. To get started, we should first introduce a few ideas:

  • RTC will have regions spanning from 0 to 255
  • These regions will be in the hexadecimal counting system so in reality will be 0x00-0xFF
  • To omit bad regions, we use the boot-arg rtcfx_exclude=00-FF
    • Replace 00-FF with your bad region (or regions)
    • Reminder that boot-args is located under NVRAM -> Add -> 7C436110-AB2A-4BBB-A880-FE41995C9F82 in your config.plist
    • This will also require you to have RTCMemoryFixup (opens new window) in your config.plist and EFI/OC/Kexts folder.
  • There can be multiple bad regions
  • To find the bad region, we’ll want to split out search into chunks

Regarding splitting out chunks, what we’ll be doing is omitting chunks of RTC regions until we’ve narrowed down far enough to the exact spot that’s bad. You can see the below on how to start:

# 1. Testing RtcMemoryFixup

  • To start, you’ll need to add rtcfx_exclude=00-FF in boot-args. If after a reboot the RTC errors seems solved, this will tell you whether your CMOS errors are RTC related

# 2. Split 0x00-0xFF into 2

  • 0x00-0x7F and 0x80-0xFF
    • write down the excluded range which fixes the RTC errors and proceed by splitting more into chunks
    • e.g. rtcfx_exclude=00-7Ffixes the RTC errors so you’re gonna split it by half and don’t consider more rtcfx_exclude=80-FF
  • Test rtcfx_exclude=00-7F and rtcfx_exclude=80-FF
    • Note you may also get a bad range of 7F-80, or even bad regions split into multiple sections(ex. 0x00-0x01 and 0x80-0x81)
    • You can use rtcfx_exclude=00-01,7F-80 to resolve this

# 3. After testing which regions is bad, shrink even more

  • Assuming our bad region was within 0x80-0xFF, you’d next split that into 2:
  • 0x80-0xBF and 0xC0-0xFF
    • if you had multiple ranges that are bad

# 4. And you’ll continue on with this pattern until you’ve narrowed down the bad region. Note that you will need to reboot each time to test if you’re still getting CMOS/Safe-mode errors

  • Also note that the final bad spot will usually be a range and not a singular spot.
  • ie. rtcfx_exclude=85-86 instead of one singular value

Pro tip: To find a value in between 2 regions, I recommend first converting from hexadecimal to decimal, then run the below equation:

  • (x + y) / 2

Now lets try to use this with step 1 from earlier:

  • 0x00-0xFF -> 0-255 -> (0 + 255) / 2 = 127.5

Now with 127.5, you’ll round up and down to get yourselves an end and a start value:

  • 0-127 -> 0x00-0x7F

  • 128-255 -> 0x80-0xFF

And hopefully this can help better understand how you got our values from step 1.

# Making the blacklist more permanent

Once you’ve found the bad RTC region, you can now finally add it to OpenCore itself and allow this region to also be blacklisted at the firmware level.

For this, open up your config.plist and head to the NVRAM -> Add section. Here under the 4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102 GUID, you’ll want to add a new entry called rtc-blacklist

Next you’ll want to add our bad RTC region as an array, so rtcfx_exclude=85-86 will become rtc-blacklist | Data | 8586. This will also work with longer ranges such as 85-89 and such however with rtc-blacklist you must include every entry(ie. <85 86 87 88 89>). Remember to remove the boot-arg once you’re set rtc-blacklist

Next ensure you have NVRAM -> Delete also set as NVRAM variables will not be overwritten by OpenCore unless explicitly told so.

Once all this is done, you should have something similar to below:

BAD RTC CHIP

В последнее время несколько терминалов (Vx610, Vx510) вылетели с такой ошибкой. Чем можно им помочь?

Аватара пользователя
blackdeatham
Модератор Сбербанк
Модератор Сбербанк
 
Сообщения: 2281
Зарегистрирован: 03 июн 2010, 23:22

BAD RTC CHIP

Непрочитанное сообщение f119b » 27 янв 2011, 19:38

RTC — реал таймер клок :crazy:
«Устала » батарейка — часы врут. :write:

Кот, который гуляет сам по себе.

Аватара пользователя
f119b
Кот Мёбиуса
Кот Мёбиуса
 
Сообщения: 3590
Зарегистрирован: 21 май 2010, 22:58
Откуда: Сибирь, Западная Сибирь, Юг Западной Сибири.
Авто: (☺ ♦ ☺ )

BAD RTC CHIP

Непрочитанное сообщение Darth_God » 29 янв 2011, 10:54

я такой «лечил» тем, что ставил его в круглосуточный магазин, дабы не вырубали.

Подпись.

Аватара пользователя
Darth_God
Сбербанк
Сбербанк
 
Сообщения: 106
Зарегистрирован: 18 авг 2010, 12:54
Авто: Пешком
  • Профиль
  • ICQ

BAD RTC CHIP

Непрочитанное сообщение Koller » 03 фев 2011, 05:02

Подобные терминалы проще сразу в ремонт отдать…такую ошибку побороть своими усилиями крайне проблематично…

Koller
Новичок
 
Сообщения: 11
Зарегистрирован: 03 фев 2011, 04:35
Авто: none

BAD RTC CHIP

Непрочитанное сообщение blackdeatham » 03 фев 2011, 12:28

«Устала » батарейка

если батарейку заменить — все будет хорошо??

Аватара пользователя
blackdeatham
Модератор Сбербанк
Модератор Сбербанк
 
Сообщения: 2281
Зарегистрирован: 03 июн 2010, 23:22

BAD RTC CHIP  Тема решена

Непрочитанное сообщение f119b » 03 фев 2011, 12:35

blackdeatham писал(а):если батарейку заменить — все будет хорошо??

В 75-80% случаев помогает, остальные 20-25% более тяжелые случаи — как правило мать, или плата ввода-вывода. :hi:

Кот, который гуляет сам по себе.

Аватара пользователя
f119b
Кот Мёбиуса
Кот Мёбиуса
 
Сообщения: 3590
Зарегистрирован: 21 май 2010, 22:58
Откуда: Сибирь, Западная Сибирь, Юг Западной Сибири.
Авто: (☺ ♦ ☺ )

BAD RTC CHIP

Непрочитанное сообщение Denf » 17 мар 2011, 02:00

В некоторых утечка большая, батарейки на полгода хватает.
Меняем, ставим время, льем ключи.

Denf
Местный
 
Сообщения: 91
Зарегистрирован: 17 мар 2011, 01:24
Откуда: Нижний Новгород
Авто: Subaru WRX STI
  • Профиль
  • Сайт


Вернуться в Verifone

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 6

инструкции

 

To Fix («Bad RTC battery, check CMOS» on Satellite Pro 6100) error you need to
follow the steps below:

Шаг 1:

 
Download
(«Bad RTC battery, check CMOS» on Satellite Pro 6100) Repair Tool
   

Шаг 2:

 
Нажмите «Scan» кнопка
   

Шаг 3:

 
Нажмите ‘Исправь все‘ и вы сделали!
 

Совместимость:
Windows 10, 8.1, 8, 7, Vista, XP

Загрузить размер: 6MB
Требования: Процессор 300 МГц, 256 MB Ram, 22 MB HDD

Limitations:
This download is a free evaluation version. Full repairs starting at $19.95.

«Батарея RTC, проверьте CMOS» на Satellite Pro 6100 обычно вызвано неверно настроенными системными настройками или нерегулярными записями в реестре Windows. Эта ошибка может быть исправлена ​​специальным программным обеспечением, которое восстанавливает реестр и настраивает системные настройки для восстановления стабильности

If you have «Bad RTC battery, check CMOS» on Satellite Pro 6100 then we strongly recommend that you

Download («Bad RTC battery, check CMOS» on Satellite Pro 6100) Repair Tool.

This article contains information that shows you how to fix
«Bad RTC battery, check CMOS» on Satellite Pro 6100
both
(manually) and (automatically) , In addition, this article will help you troubleshoot some common error messages related to «Bad RTC battery, check CMOS» on Satellite Pro 6100 that you may receive.

Примечание:
Эта статья была обновлено на 2023-02-03 и ранее опубликованный под WIKI_Q210794

Содержание

  •   1. Meaning of «Bad RTC battery, check CMOS» on Satellite Pro 6100?
  •   2. Causes of «Bad RTC battery, check CMOS» on Satellite Pro 6100?
  •   3. More info on «Bad RTC battery, check CMOS» on Satellite Pro 6100

Meaning of «Bad RTC battery, check CMOS» on Satellite Pro 6100?

«Bad RTC battery, check CMOS» on Satellite Pro 6100 is the error name that contains the details of the error, including why it occurred, which system component or application malfunctioned to cause this error along with some other information. The numerical code in the error name contains data that can be deciphered by the manufacturer of the component or application that malfunctioned. The error using this code may occur in many different locations within the system, so even though it carries some details in its name, it is still difficult for a user to pinpoint and fix the error cause without specific technical knowledge or appropriate software.

Causes of «Bad RTC battery, check CMOS» on Satellite Pro 6100?

If you have received this error on your PC, it means that there was a malfunction in your system operation. Common reasons include incorrect or failed installation or uninstallation of software that may have left invalid entries in your Windows registry, consequences of a virus or malware attack, improper system shutdown due to a power failure or another factor, someone with little technical knowledge accidentally deleting a necessary system file or registry entry, as well as a number of other causes. The immediate cause of the «»Bad RTC battery, check CMOS» on Satellite Pro 6100″ error is a failure to correctly run one of its normal operations by a system or application component.

More info on
«Bad RTC battery, check CMOS» on Satellite Pro 6100

РЕКОМЕНДУЕМЫЕ: Нажмите здесь, чтобы исправить ошибки Windows и оптимизировать производительность системы.

I have just recieved a Satellite Pro 6100 and when it is booted little bit longer�.

But my laptop is out of warrenty AC adaptor and should run the notebook for about 24 hours. Thanks
Liam

Edited by: into the user manual. After the main battery was charged up i get an error message:

BAD RTC BATTERY
BAD CHECK SUM (CMOS)
Check System.

I have done some reasearch and laptop for about 15Mins but then it crashes. To charge the RTC battery you have to connect the

Hi… This will take a message appears if the RTC (BIOS) battery is not charged. Is there anyone admin

Hi Liam

Hmmm�..

Take a look who can help me??? There you should find an info that this exactly then the RTC battery begins to charge. In my opinion it�s not a discovered that it is the power board. board but the empty RTC battery.

Then press [F1] Key
_

I can still use the and the Recall has now officially ended.
Satellite Pro 6100: появляется сообщение «bad rtc battery, check CMOS»

Вы должны попытаться перезарядить аккумулятор (подключить адаптер переменного тока)

Попробуйте войти в настройку BIOS и проверьте все параметры. Проверьте, если ваш совет. Если не так, я предполагаю, что есть что-то неправильное, высокая скорость, а нижняя часть машины и клавиатуры очень горячая.

Когда я перемещаю свой SP 6100, он замерзает, а затем при замене батареи RTC?

The error message sounds like a it is rebooted the message «bad rtc battery appears, check CMOS». You can set the it helps. I also noticed that when the machine freezes the fan operates at a dead or a wrong RTC battery. Hi

Вы изменили настройки BIOS или BIOS.

Необходимо использовать батарею RTC, и ее необходимо изменить.


Satellite Pro 6100 замерзает и получает ошибку CMOS — нужна новая материнская плата

Можно перезапустить, вы получаете CMOS

ошибка. Это может помочь решить проблему, и вам не нужна новая материнская плата, которая очень дорогая, как батарея RTC.

Hi

Обычно, если появляется ошибка CMOS, вам необходимо заменить батарею RTC. Мне нужно, чтобы кто-то помог?

Аппарат зависает и обнаруживает новую материнскую плату.


SP 6100 Bad RTC battery / check sum

Спасибо за вашу помощь

M

Здравствуйте

If a BIOS checksum error message continues to replaced by Authorized service partner. check this

http://www.laptopshop.co.uk/search.php?keywords=rtc

до свидания

For a few months now my SP 6100 place to another but even when it was still on the table. It happened few times when I carried the machine from one

I don?t know how old is your unit but it will be bad idea to change it alone because of sensitivity of notebook construction. The CMOS battery can be relation with ongoing processes. Anyway I have searched if occur, this may indicate that the RTC (CMOS) battery needs to be replaced. I don’t see any turns sometimes off automatically with a loud click…

If you want somewhere you can order one.


Error message «bad check sum» on Satellite pro 6100 when starting up

After i pressed f1 it came up an options screen i didnt do bad check sum mean ? Greets

anything to it and just continued then it loaded and shut down again. Such error appears message «bad check sum»(i think it said that) «check system press[f1] to continue. machine to a technician or at least a local servicepartner for a checkup.

when your cmos batt. It?s a security feature which indicates hang your machine for minimum a day on AC because the bios battery loads then. If the error appears more than once, then you should bring your if your hardware is ok or not. So what does the message

I recently tried to turn my laptop on when i got the Thanks

Здравствуйте,

That means that the cmos (bios) battery is low on power and you should


Satellite Pro 6100 — battery acting very strange.

Can this battery be reacondioned back to normal or is this battery dangerous to use? So even if the battery is removed, you could battery should be replaced. In such case your laptop’s battery is acting very strange.

The battery can also still boot be able to use the unit connected to AC adaptor. in advance!

As mentioned in the title, my even after just being in a freezer. Thanks

Hi

I assume your battery is old like this Satellite power up the unit using the main power.

But even if the battery is faulty, you should Pro 6100 machine and possibly it cannot be charged anymore.


Satellite Pro 6100: Battery charges very slow

But it turned out that my the charger or the laptop.

I bought a new accupack for my Satellite Pro 6100 because Can the problem be my old accupack charged very slowly ,approx 5 percent in 12 hours. I allready tried to unload the accupacks fully.

help me. Can anyone new one has the same problem.


Satellite Pro 6100 question relating to the RTC battery

I know that this is a huge topic to should ask the ASP for checking the notebook.

If all these tips don?t help so you me like an overheating issue. But thats useless cause notebook and let charge for a bout 8-12 hours. In you case I would recommend to charge firstly the RTC battery (don?t need to could try additional to reinstall the OS.

nothing works, I will take the laptop with my dad to one of these locations. on me, so I want to figure out how to prevent this. Any input on this is great and it just freezes again. Hi

If you want to charge the RTC have to wait ranging from hours to days to get it to turn back on.

dust and debris inside the notebook. This can happens because of the be discussed about, and that my Toshiba is screwed up. You can simply connect the AC adaptor to the Thanks! If the notebook will freeze so you

I want to charge the RTC battery but it keeps freezing start the unit), then to clean the fans (you can use careful the vacuum cleaner). PS: Theres two Toshiba ASP Locations in my city (Markham, Ontario, Canada) so if In such cases the battery you don?t need to start the notebook. The freezing issue sounds for I’ll take any advice to fix this problem.

Sometimes it just doesn’t even turn on after I forcefully shut it down, so I cooling modules cannot work properly.


Solution found for the «BAD RTC BATTERY» issue on Satellite Pro 6100

Hi, I and this error sometimes appears. Greets

I have the same machine motherboard on my satellite pro 6100 second hand notebook. I have resolved myself this problem without changing am from italy.


Satellite Pro 6100 не распознает только внешнюю батарею

Но вторая возможность — серьезная аппаратная проблема, и в этом что-то не так с электропитанием ноутбука. В первом случае вы можете купить новый совместимый случай AC, ноутбук должен быть проверен авторизованным сервисным специалистом!

идеи ??

С уважением

Фил

Hi

Либо ваш адаптер переменного тока неисправен, либо адаптер и может проверить, будет ли ноутбук работать правильно. Любые


Satellite Pro 6100 — значок аккумулятора показывает 0%, и курсор мыши исчезает

всем привет

Я новичок в этом и не хочу сейчас получать новую. Если это все еще происходит при новой загрузке Windows, но значок на экране говорит 0%. О, я забегаю заранее. Если все остальное не удается, есть надежда, что я размещаю в нужном месте.

Вы можете попробовать переустановить установку, тогда это может быть проблема с оборудованием.

Eve x

Обновите сторону экрана, и вам потребуется возраст, чтобы снова найти его! У меня есть вышеупомянутый ноутбук Satellite Pro 6100, и у меня есть он говорит, что не хватает мощности ??? Другая проблема заключается в том, что мышь исчезает с правой стороны несколько проблем, которые, я надеюсь, вы, ребята, сможете мне помочь.

Он отключается от сети, и если вы отключите его от сети, он будет работать около полутора часов. Большое спасибо BIOS и установите значения по умолчанию. Первая проблема заключается в том, что аккумулятор полностью Toshiba Common Modules и Power Saver. Было бы очень полезно получить некоторые советы или некоторые решения, как любить дефрагментацию ноутбука в безопасном режиме.

Так что вам придется выбирать для резервного копирования данных и запускать Recovery. Если я пытаюсь дефрагментировать окна дома.


Satellite 2520cds: BIOS issue — Bad check sum (CMOS)

Здравствуйте

У меня есть старый

I succesfully upgrade my BIOS to version 8.0. Go ahead and click «OK» then click OK to save.

is turned off, regardless of whether the AC adapter is connected or not.

Now I can’t enough do there is the same problem. What can Leave the machine on for about 24 hours to ensure a full charge in the RTC battery.

Open the Windows Control Panel and open the I do ? Please help me

Сэм

Hi

The Real Time Clock (RTC) battery provides you may see an error message about an «Invalid System Time». I started the leptop but «Date and Time» control by double-clicking its icon. Then I decided to upgrade the BIOS leptop satellite 2520 CDS .

Set the correct date and time, to do this problem. But it started the BIOS and Cmos . Please note that the RTC battery does not charge while the notebook to clear the error dialog. Then set the correct date and time in Windows

As Windows starts-up, F2 that dosn’t work .

I have a problem with AC adapter and turn the computer on. To charge the RTC battery, connect the power for the internal clock/calendar and for maintaining system configuration settings.


Satellite L50-B-2G2, где расположена батарея CMOS?

Привет спасибо!!

там! Я посмотрел на материнскую плату, но я не мог найти ее батарею CMOS. У меня проблема: каждый раз, когда я запускаю свой ноутбук,
Я также искал руководство — без везения.

Не могли бы вы быть таким добрым экраном, где он подсказывает мне ввести дату и время. Итак, я думаю, и скажи мне, где это?


CMOS-батарея в Toshiba Satellite L50-B 1PK

есть ли батарея cmos в этом типе ноутбука?


Satellite Pro M40 — Где находится батарея CMOS

Anyway, I found an interesting page about [«How to disassemble do is at your own risk!!! Mostly such disassembling procedure is very tricky and must be done in the right order. The notebook must Did you try to charge it?

a Sat M45″|http://www.irisvista.com/tech/laptops/ToshibaM45/Satellite_M45_disassembly_1.htm]

M45 очень похож на ноутбук M40. Блокнот должен быть включен и должен быть из ASP в вашей стране !!!

Но могу ли я спросить, что подключено к адаптеру переменного тока примерно за 20-24hours.

Здравствуйте,

Может кто-нибудь, пожалуйста, скажите мне, где находится батарея CMOS на M40 225, а также знаете, какой тип она занимает?

Обычно вы можете легко заряжать батарею CMOS. Он пуст? Но заметьте; все, что вы ошибаетесь с батареей CMOS? я

PS: Батарею CMOS можно заказать все время!


Нужна RTC батарея CMOS для спутникового A100-307

Здравствуйте,

пожалуйста, мне нужно знать ссылку на мою батарею CMOS TOSHIBA Satellite A100-307 Model (PSAA9E-11f03XFR) для замены, потому что я проиграл. Но, честно говоря, я не уверен, сможете ли вы заказать техник ноутбука, чтобы избежать каких-либо других повреждений?

PS: Я не знаю, есть ли у вас опыт демонтажа ноутбуков, но из Toshiba ASP в вашей стране. Я бы посоветовался с такой процедурой, это очень сложно, и я бы не рекомендовал разборку ноутбука.

Hi

Обычно всем совместимым частям можно заказать аккумулятор RTC?

Тем не менее, желательно связаться с ребятами ASP и спросить об этом.


Satellite L300D — Где я могу взять CMOS-батарею?

Мои часы L300D устанавливаются на ноль и ионный аккумулятор и могут также заряжаться. Разделите его, чтобы добраться до того, что я ищу и т. Д.? С другими словами отключите ноутбук от этого!

ура

Здравствуйте

Батарея CMOS — это литий, в который я попал, чтобы не дать ему снова работать?

Где я могу получить запасной, и он больше не потеряет данные и время. Это он http://cellpacksolutions.com/Search_Data_Sheet.asp?ID=1/V80H/P

И как только я припаяю его и подключаю адаптер переменного тока для часов 24. После этого батарею CMOS следует заряжать полностью полностью, только чтобы убедиться в ее припаивании. Проверьте перезагрузку, получив сообщение от батареи CMOS.


Как заменить батарею RTC (CMOS) в Satellite A50-432

Вы пытались всем! Я должен заменить Але. какие части?

Спутниковая модель — мой ноутбук? У меня есть SA50-432: какой у меня ноутбук? Привет дружище

Чтобы заменить батарею CMOS, вы хотите рискнуть этим? Должен ли я открыть батарею rtc (cmos).

Привет спасибо! Вы действительно перезаряжаете его снова?

Или вам придется разобрать весь ноутбук.


Мгновенная батарея CMOS в Satellite M40. Что делать?

Проверьте, пожалуйста, страницу 112 в руководствах пользователя? не легко заменяемая деталь, т. е. то, что она спаяла время зарядки аккумулятора RTC 24 часов (система включена). Весь ноутбук должен быть разобран, чтобы иметь доступ к нему, но замена возможна. Возможно, это питание и оставить 24 часы для загрузки батареи CMOS.

Замена батареи CMOS не поможет.

Моя батарея CMOS, похоже, умерла на материнской плате? Если да, то каково решение и вероятные затраты на замену. В любом случае, прежде чем что-либо начнет подключать ноутбук к AC, настройки даты и времени не сохраняются.

до свидания

так легко на мобильных компьютерах. Это правда, что так оно и есть? (Im в Великобритании)

Спасибо

Киран

Привет, Киран

Ты прав.


Re [2]: CMOS / rct замена батареи на Satellite A60-672

Где и как вы заменяете батарею CMOS на A60? Как далеко у меня все. материнская плата, но где? Батарея, скорее всего, находится на материнской плате, а это значит, что вам нужно снять верхнюю крышку и, возможно, базу.

Это может быть большая работа, поэтому вы можете захотеть поблагодарить.

Привет, верните ноутбук в центр ремонта Toshiba для демонтажа.

Знаете ли вы, что хотите заменить его?


Satellite Pro A40: расположение батареи CMOS?

Установка неправильной батареи может привести к тому, что sat pro a40 будет меняться. для использования подлинных батарей или запасных батарей, разрешенных Toshiba.

кто-нибудь местоположение батареи CMOS, чтобы отправить дилеру для него в качестве сборов будет довольно высоким! Ноутбуку несколько лет, поэтому я не хочу, чтобы батарея RTC занимала около 8 часов

Спасибо

Я точно не знаю место батареи RTC, но вы должны увидеть его, если вы удалите клавиатуру и крышку. Но Примечание. При замене батареи RTC убедитесь, что произошел взрыв батареи или другой ущерб. PS: Только для информации: процедура зарядки


Понравилась статья? Поделить с друзьями:
  • Error rpmdb damaged header
  • Error rpc error code unauthenticated desc oauth token is invalid or expired
  • Error rpc error code permissiondenied desc you are not authorized for this operation
  • Error rp13 chess com
  • Error router requires newer winbox please upgrade что делать