Code Monkey home page Code Monkey logo

Comments (4)

munjeni avatar munjeni commented on September 2, 2024

You must disconnect usb and repeat procedure to enter into flash mode instead of imediatelly trying to flash again after dumping trim area! Command "continue" is allready sent to device, so your device is no more in flash mode! What you need to do is disconnect usb cable, shutdown device, connect usb cabble while keeping right volume key button down to enter device into flash mode and it will work.

from newflasher.

A2Sumie avatar A2Sumie commented on September 2, 2024

You must disconnect usb and repeat procedure to enter into flash mode instead of imediatelly after dumping trim area trying to flash since command "continue" is allready sent so device is no more in flash mode!

I know that. I mean it's not flashing and giving the errors in flash mode , of course on an fresh connection.
The phone is an XQ-AS72.

from newflasher.

munjeni avatar munjeni commented on September 2, 2024

Can you show me log of the command lsusb ? please don't shorten the newflasher log, I need to see where excatly it started to fail

from newflasher.

munjeni avatar munjeni commented on September 2, 2024

Even you can increase log level modifying this at line 885:

#if 0
	if (ep == EP_IN && nBytesRead) {
		printf(" - Successfully read 0x%lx bytes from handle.\n", nBytesRead);
		display_buffer_hex_ascii("Raw input ", bytes, nBytesRead);
	}

	if (ep == EP_OUT && nBytesRead) {
		printf(" - Successfully write 0x%lx bytes to handle.\n", nBytesRead);
		//display_buffer_hex_ascii("Raw output ", bytes, nBytesRead);
	}
#endif

to:

#if 1
	if (ep == EP_IN && nBytesRead) {
		printf(" - Successfully read 0x%lx bytes from handle.\n", nBytesRead);
		display_buffer_hex_ascii("Raw input ", bytes, nBytesRead);
	}

	if (ep == EP_OUT && nBytesRead) {
		printf(" - Successfully write 0x%lx bytes to handle.\n", nBytesRead);
		display_buffer_hex_ascii("Raw output ", bytes, nBytesRead);
	}
#endif

that way it can help much better for indentify isue!

from newflasher.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.