安卓玩机----展讯芯片机型解锁 读写分区工具 操作步骤解析

本文主要是介绍安卓玩机----展讯芯片机型解锁 读写分区工具 操作步骤解析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

国内机型大都使用高通和MTK芯片。展讯芯片使用的较少。相对来说高通和mtk机型解锁以及读取分区工具较多。展讯的几乎没有。目前有大佬开发出了一款展讯芯片解锁 与读写分区工具.开源的tools

官方分享说明:

是一款专为 Windows 计算机设计的免费、用户友好的工具,可让您刷新固件、解锁 FRP 以及擦除展讯设备上的分区。
展讯闪存解锁工具特点:
闪存固件支持 PAC 固件以及直接 SPD 模式闪存。
支持操作方法: 读取GPT,擦除分区,然后下载Flash。
解锁使用方法: 首先读取GPT,然后选择删除分区(例如擦除FRP分区以解锁FRP)。然后,对分区使用 PAC 固件地址格式。
连接: 诊断通道、串行端口、libusb Win32、加载的 FDL
Mahar 的展讯闪存备份工具 3.0 版是一款免费的开源工具,可以备份、恢复和擦除展讯设备的闪存。它可以与各种展讯设备配合使用,例如SC9820E。

写入、读取或擦除闪存
支持多种展讯设备
用户界面友好
开源且免费
已知错误:
它正在开发中,可能无法像其他技术一样快速地分析数据。
串口速度慢。
LibUSBDotNet MonoUSBApi 无法分离/激活内核驱动程序,这可能导致 USB IO 缓慢且不稳定。
改进建议:
创建者 Mahar Mahr 建议用户研究修复 LibUSBDotNet MonoUSBApi,以确保它可以分离并使内核驱动程序加速。

Unisoc 闪存/解锁直接协议 SPD 模式工具
功能
读取 GPT
擦除分区
格式地址
闪光
联系
诊断通道
串行端口
libusb-win32
FDL 已加载


展讯 Adob​​e Flash Lock 工具指南:
安装并下载展讯(SPD)闪存解锁工具。
确保使用 USB 线将展讯设备连接到您的 PC。
从展讯(SPD)闪存解锁工具开始。
通过从下拉菜单中选择适当的连接方法来选择最佳的连接方法。
选择“ 读取 GPT ”按钮。
读取 GPT 后,选择您想要刷新或擦除的分区。
如果要擦除整个分区,则需要单击“ 擦除分区”按钮。
如果您要刷新分区,请按“下载闪存”“ 下载闪存”按钮,然后选择要刷新的固件文件。
点击“ 确定”按钮启动该过程。
该过程完成后,应锁定设备、使用最新固件刷新或删除分区。

原版界面展示

目前有大神汉化了此款软件 以此方便国人使用 

汉化界面如下

安装后目录会根据pac固件读写分区

<?xml version="1.0"?>

-<doc>


-<assembly>

<name> UniFlash </name>

</assembly>


-<members>


-<member name="T:UniFlash.My.Resources.Resources">

<summary>A strongly-typed resource class, for looking up localized strings, etc. </summary>

</member>


-<member name="P:UniFlash.My.Resources.Resources.ResourceManager">

<summary>Returns the cached ResourceManager instance used by this class. </summary>

</member>


-<member name="P:UniFlash.My.Resources.Resources.Culture">

<summary>Overrides the current thread's CurrentUICulture property for allresource lookups using this strongly typed resource class. </summary>

</member>

</members>

</doc>

部分源代码如下

<?xml version="1.0" encoding="utf-8"?><span>
<doc><assembly><name>System.Buffers</name></assembly><members><member name="T:System.Buffers.ArrayPool`1"><summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary><typeparam name="T">The type of the objects that are in the resource pool.</typeparam></member><member name="M:System.Buffers.ArrayPool`1.#ctor"><summary>Initializes a new instance of the <see cref="ArrayPool{T}"></see> class.</summary></member><member name="M:System.Buffers.ArrayPool`1.Create"><summary>Creates a new instance of the <see cref="ArrayPool{T}"></see> class.</summary><returns>A new instance of the <see cref="ArrayPool{T}"></see> class.</returns></member><member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)"><summary>Creates a new instance of the <see cref="ArrayPool{T}"></see> class using the specifed configuration.</summary><param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param><param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param><returns>A new instance of the <see cref="ArrayPool{T}"></see> class with the specified configuration.</returns></member><member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"><summary>Retrieves a buffer that is at least the requested length.</summary><param name="minimumLength">The minimum length of the array.</param><returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns></member><member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"><summary>Returns an array to the pool that was previously obtained using the <see cref="Rent"></see> method on the same <see cref="ArrayPool{T}"></see> instance.</summary><param name="array">A buffer to return to the pool that was previously obtained using the <see cref="Rent"></see> method.</param><param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="bufferLength">bufferLength</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="Return"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="Rent"></see> method will not see the content of the previous caller. If <paramref name="bufferLength">bufferLength</paramref> is set to false or if the pool will release the buffer, the array's contents are left unchanged.</param></member><member name="P:System.Buffers.ArrayPool`1.Shared"><summary>Gets a shared <see cref="ArrayPool{T}"></see> instance.</summary><returns>A shared <see cref="ArrayPool{T}"></see> instance.</returns></member></members>
</doc></span>

工具fdl1-sign与fdl2-sign文件工具自带,在工具安装目录里可以找到.

由于手头没有展讯芯片的机型。无法做具体测试。但根据分享说明。可以支持展讯芯片机型的读写分区和檫除分区。解锁FRP等操作。

这篇关于安卓玩机----展讯芯片机型解锁 读写分区工具 操作步骤解析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/177427

相关文章

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

基于C#实现PDF文件合并工具

《基于C#实现PDF文件合并工具》这篇文章主要为大家详细介绍了如何基于C#实现一个简单的PDF文件合并工具,文中的示例代码简洁易懂,有需要的小伙伴可以跟随小编一起学习一下... 界面主要用于发票PDF文件的合并。经常出差要报销的很有用。代码using System;using System.Col

redis-cli命令行工具的使用小结

《redis-cli命令行工具的使用小结》redis-cli是Redis的命令行客户端,支持多种参数用于连接、操作和管理Redis数据库,本文给大家介绍redis-cli命令行工具的使用小结,感兴趣的... 目录基本连接参数基本连接方式连接远程服务器带密码连接操作与格式参数-r参数重复执行命令-i参数指定命

Python结合requests和Cheerio处理网页内容的操作步骤

《Python结合requests和Cheerio处理网页内容的操作步骤》Python因其简洁明了的语法和强大的库支持,成为了编写爬虫程序的首选语言之一,requests库是Python中用于发送HT... 目录一、前言二、环境搭建三、requests库的基本使用四、Cheerio库的基本使用五、结合req

使用Python实现批量访问URL并解析XML响应功能

《使用Python实现批量访问URL并解析XML响应功能》在现代Web开发和数据抓取中,批量访问URL并解析响应内容是一个常见的需求,本文将详细介绍如何使用Python实现批量访问URL并解析XML响... 目录引言1. 背景与需求2. 工具方法实现2.1 单URL访问与解析代码实现代码说明2.2 示例调用

SSID究竟是什么? WiFi网络名称及工作方式解析

《SSID究竟是什么?WiFi网络名称及工作方式解析》SID可以看作是无线网络的名称,类似于有线网络中的网络名称或者路由器的名称,在无线网络中,设备通过SSID来识别和连接到特定的无线网络... 当提到 Wi-Fi 网络时,就避不开「SSID」这个术语。简单来说,SSID 就是 Wi-Fi 网络的名称。比如

SpringCloud配置动态更新原理解析

《SpringCloud配置动态更新原理解析》在微服务架构的浩瀚星海中,服务配置的动态更新如同魔法一般,能够让应用在不重启的情况下,实时响应配置的变更,SpringCloud作为微服务架构中的佼佼者,... 目录一、SpringBoot、Cloud配置的读取二、SpringCloud配置动态刷新三、更新@R

使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)

《使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)》在现代软件开发中,处理JSON数据是一项非常常见的任务,无论是从API接口获取数据,还是将数据存储为JSON格式,解析... 目录1. 背景介绍1.1 jsON简介1.2 实际案例2. 准备工作2.1 环境搭建2.1.1 添加