Приветствую на канале «Лёха Технарь»
Самоделка своими руками DIY, ЧПУ лазерный гравер laser engraver, из обычных DvD приводов и Arduino.
Кому не хочется собирать вот готовый: s.click.aliexpress.com/e/_eK7Rpr
Забыл рассказать про настройку шагов, в общем распишу тут. Шаг двигателей 20 шагов на оборот, шаг винта 3мм, следовательно 20 делим на 3 получаем 6,666666666666667 шагов на 1мм, но я использовал драйверы с микрошагом 32, поэтому 6,666666666666667 умножаем на 32, получаем округлённую цифру 213,333 шага на 1мм, что впринципе видно на видео в консоли грбл контроллера на 19:55, там как раз написано X, Y и Z, выставлять значение следует до тысячных.
Также в прошивке не забудьте всё поставить в кавычки напротив пункта include, как в видео на 18:37, иначе не пройдёт компиляция скетча.
Сегодня рассмотрим модули и датчики, которые я рекомендую купить для полного погружения в Ардуино-тематику, а также попробуем ответить на вопрос: брать кит, или нет?
Ссылки оставлены по возможности на один магазин для удобной и дешёвой доставки. Промокод alexgyver1111all300 на скидку 300р с 2400р.
► Список в виде таблицы yadi.sk/i/PANR9iU9pCvihw
(тут в описании ниже список более полный!!!!)
Про́клятый компьютер с кучей странных неисправностей — Обзор
Перегрев, тормоза, Жужа СС, глюки с USB и это ещё не считая программных глюков! В общем пообщался я с ним крепко!
Ссылка на прошивку СС49: goo.gl/gLzy6B
Примерный алгоритм восстановления опробованный на ST3100053A
_________________________________________________________________
ВНИМАНИЕ!!! ЛЮБЫЕ МАНИПУЛЯЦИИ С HDD ВЫ ДЕЛАЕТЕ НА СВОЙ СТРАХ И РИСК! ОСОБЕННО, ЕСЛИ ВЫ НЕ ПОНИМАЕТЕ, ЧТО ИМЕННО ВЫ ДЕЛАЕТЕ!!!
_________________________________________________________________
При подключении к терминалу выдает:
Rst 0x10M
(P) SATA Reset
Успеваем нажать Ctrl Z затем
F3 T V4 — читать Alt-list (G-лист)
F3 T V1 — читать Slip-лист (P-лист)
F3 T m0,2,2,,,,,22
Если V4 или V1 дают ошибку, бросаем нафиг это дело!
ВИДЕО НА ТЕМУ:
Слёт прошивки (транслятора) на HDD Seagate или битва с мухой CC — Обзор youtu.be/wm5mWWkJph8
Ремонт и профилактика вентиляторов(PC-cooler) для компьютера youtu.be/eW3UXX-iKnE
Ошибка допущенная при сборке ПК и её фатальные последствия — Обзор youtu.be/xL3f0oWpGA0
Как самостоятельно почистить компьютер от пыли или как это бывает — Обзор youtu.be/KW5onHAIhjc
The rapid expansion of software from simple text-based tools to massively complex, feature-rich, highly visual products would dominate the mass-market computing world during the 1980s and 90s. And with this push, came a higher demand on processors to both efficiently utilize more memory and grow in computing power, all while keeping costs at consumer accessible levels.
RISE OF 32-BIT
During the mid-1980s, in response to the growing demands of software, the opening moves towards the mainstream adoption of 32-bit processor architecture would begin. While 32-bit architectures have existed in various forms as far back as 1948, particularly in mainframe use, at the desktop level only a few processors had full 32-bit capabilities. Produced in speeds ranging from 12Mhz to 33Mhz, the 68020 had 32 bit internal and external data buses as well as 32-bit address buses. It’s arithmetic logic unit was also now natively 32-bit, allowing for single clock cycle 32-bit operations.
One year later, Intel would introduce its own true 32-bit processor family, the 80386. Not only did it offer a new set of 32-bit registers and a 32-bit internal architecture, but also built-in debugging capabilities as well as a far more powerful memory management unit, that addressed many of the criticisms of the 80286.
This allowed most of the instruction set to target either the newer 32-bit architecture or perform older 16-bit operations. With 32-bit architecture, the potential to directly address and manage roughly 4.2 GB of memory proved to be promising. This new scale of memory addressing capacity would develop into the predominant architecture of software for the next 15 years.
On top of this, protected mode can also be used in conjunction with a paging unit, combining segmentation and paging memory management. The ability of the 386 to disable segmentation by using one large segment effectively allowed it to have a flat memory model in protected mode. This flat memory model, combined with the power of virtual addressing and paging is arguably the most important feature change for the x86 processor family.
PIPLINING
CPUs designed around pipelining can also generally run at higher clock speeds due to the fewer delays from the simpler logic of a pipeline’s stage. The instruction data is usually passed in pipeline registers from one stage to the next, via control logic for each stage.
Data inconsistency that disrupts the flow of a pipeline is referred to as a data hazard. Control hazards are when a conditional branch instruction is still in the process of executing within the pipeline as the incorrect branch path of new instructions are being loaded into the pipeline.
One common technique to handle data hazards is known as pipeline bubbling. Operand forwarding is another employed technique in which data is passed through the pipeline directly before it’s even stored within the general CPU logic. In some processor pipelines, out-of-order execution is use to helps reduce underutilization of the pipeline during data hazard events.
Control hazards are generally managed by attempting to choose the most likely path a conditional branch will take in order to avoid the need to reset the pipeline.
CACHING
In caching a small amount of high-speed static memory, is used to buffer access to a larger amount of lower-speed but less expensive, dynamic memory.
A derived identifier, called a tag, that points to the memory region the block represents, amongst all possible mapped regions it can represent, is also stored within the cache block. While simple to implement, direct mapping creates an issue when two needed memory regions compete for the same mapped cache block.
When an instruction invokes memory access, the cache controller calculates the block set the address will reside in and the tag to look for within that set. If the block is found, and it is marked as valid, then the data requested is read from the cache. This is known as a cache hit and it is the ideal path of memory access due to its speed. If the address cannot be found within the cache then it must be fetched from slower system memory. This is known as a cache miss and it comes with a huge performance penalty as it can potentially stall an instruction cycle while a cache update is performed.
Writing data to a memory location introduces its own complication as the cache must now synchronize any changes made to it with system memory. The simplest policy is known as a write-through cache, where data written to the cache is immediately written to system memory. Another approach known as write-back or copy-back cache, tracks written blocks and only updates system memory when the block is evicted from the cache by replacement.
Всем привет, Друзья! Этот выпуск посвящен сборке пк за 40000 рублей. Как вы понимаете речь пойдет о новом железе, а не про aliexpress и авито, так мы делали сборку в прошлый раз. Многие попросили в прошлой сборке за 20к, сделать следующую на новом железе. И хоть этот ролик я записывал до той сборки за 20к, но он будет максимально в тему :)
Вкратце, вы в теории можете без проблем собрать себе компьютер и за 30000 рублей, но я не могу рекомендовать это делать, так как:
— Система будет не на SSD, а на HDD;
— Одна плашка памяти на 8ГБ;
— Более слабый процессор;
— Возможно более слабая видеокарта.
Как итог, все это очень сильно сыграет на производительности компьютера. Поэтому в данном случае имеет смысл добавить 10к и собрать сразу хороший комп :)
UPD.: Как можно улучшить эту сборку еще:
1. Берем Ryzen 5 1600 AF, а не R5 2600 (экономим 800р)
2. Берем видяху проще, с 1 вертушкой (экономим 1000р)
3. Сэкономленные деньги пускаем в материнку и получаем мать на чипсете B450
Просто и понятно покажу как установить Windows 7 с флешки на SSD или старый HDD. Нажми goo.gl/zTd1vQ подпишись на канал и нажми колокольчик, чтобы не пропустить новое видео.
Что бы не иметь проблем с интернетом после установки Виндовс 7, лучше скачать драйвера для сетевой карты. Это можно сделать на сайте производителя ноутбука или компьютера.
3. Чтобы проверить, поддерживает ли ваше железо 64-х разрядный Виндовс, скачайте маленькую утилиту: www.igorware.com/64bit-checker
Поставим Виндовс 7 на новый ССД. Благодаря этому компьютер или ноутбук будет работать существенно шустрее. Какими бы старыми и маломощными они не были.
Так же рассмотрим простую переустановку Винды на старый жёсткий диск, если на новый накопитель тратиться облом.
Так же рассмотрим настройки правильные БИОС. Можно воткнуть Семёрку на GPT раздел. Какой SATA режим правильно включить, AHCI или IDE. Нужно ли выключать Secure Boot и многое другое.
Для установки Виндовс 7 нам понадобится загрузочная флешка.
0:46 Подготовка, скачиваем драйвера сетевой карты и драйверпак.
9:27 Меняем старый жесткий диск на новый SSD.
11:54 1-й Эпизод: Установка Windows 7 с флешки на чистый SSD.
15:42 2-й Эпизод: Установка драйвера сетевой карты и браузера.
19:26 3-й Эпизод: Установка на старый HDD. Делим диск и сохраняем данные.
24:24 Как правильно настроить БИОС, включаем AHCI и CSM, выключаем Secure Boot.
Спасибо за просмотры, лайки, подписку, колокольчики и комментарии!