L
L
lere2017-03-20 14:16:49
WiFi
lere, 2017-03-20 14:16:49

Where is the memory chip?

I have a programmatically killed Dlink DSL 2650 U (not successfully stitched).
Can you please tell me where the memory chip is located? There is a TL866CS programmer, I will try to restore this router with it.
6ca47f0798bb44a29092ee68f298926a.JPG

Answer the question

In order to leave comments, you need to log in

2 answer(s)
T
TyzhSysAdmin, 2017-03-20
@lere

Slava Kulpichev already answered, but for the future - any mikruha whose name starts with 25qXXX

0
0xD34F, 2018-01-16
@ivansimonov1984

You can remove all possible classes :

const classes = $buttons.get().map(n => n.dataset.set);

$buttons.click(function() {
  $('.current').removeClass('current');
  $(this).addClass('current');

  $blocks.removeClass(classes.join(' ')).addClass(this.dataset.set);
});

Or remember the last added :
let currentClass = null;

$buttons.click(function() {
  $('.current').removeClass('current');
  $(this).addClass('current');

  const newClass = this.dataset.set;
  $blocks.removeClass(currentClass).addClass(newClass);
  currentClass = newClass;
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question