How to convert eCWPK to dCWPK

int pin = 13; // LED PIN

const int stbPin = A1; // stb trigger input ( RESET )
const int A20Pin = A2; // Axx pin output


int x = 10;
int y = 10;
int done = 0;


void setup()
{

Serial.begin(9600);
pinMode(LED_BUILTIN, OUTPUT);
pinMode(stbPin, INPUT);
pinMode(A20Pin, OUTPUT);
pinMode(13, OUTPUT); // setup glitch point
delay(2000); // time to glitch begin after stb start
digitalWrite(pin, HIGH); // glitch ON
delay(1000); // wait 1000 = 1 second left
digitalWrite(pin, LOW); // glitch OFF

}




void loop()
{

if (digitalRead(stbPin) == HIGH && done == 0 && x <= 2000 && y <=1000 )
{
Serial.write("STB POWERED ON ...\n");

// Begin Glitch
Serial.write("Delay_X: ");
Serial.print(x);
Serial.write(" ");
digitalWrite(A20Pin, HIGH);
delay(x);
digitalWrite(A20Pin, LOW);

x = x+5;

digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // 1 seconde de delai
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(5000); // wait for 5 seconds

}

}
Hi Man , this glitch is for Sti 7105 or 7111 ?
 
Good morning all
I relaunch the post, I have uart access on a soc7105jud, how to calculate the cwpk
of course I have the flash dump
Thanks for your help
Hi Gazoil12 please help me to open UART on a 7105JUD I am stuck ,need nelp
 
and can you do something yourself? eat, drink? :D

your username is not on skype
 
The photo you attached is of the Sambas script.

To work with nuid starting with B5 or B6, you have to change the script.
 
You are all scammers, you collect information from other members and then say you know and charge a fortune, only to not respond after receiving the amounts. Instead of helping, they keep it a secret and then take it to the cemetery.
 
Back
Top