-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#e519e4 Left row 1 | ||
#a6cee3 Left row 2 | ||
#2078b4 Left row 3 | ||
#33a02c Right row 1 | ||
#fb9a99 Right row 2 | ||
#e31a1c Right row 3 | ||
#b2df8a Right row 4 | ||
#fdbf6f Left column 1 | ||
#cab2d6 Left column 2 | ||
#b15928 Left column 3 | ||
#ff7f00 Right column 1 | ||
#6a3c9a Right column 2 | ||
#ffff99 Right column 3 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
<html> | ||
<body> | ||
<h1>Trace debugging</h1> | ||
|
||
|
||
<div style="position: relative; width: 98%"> | ||
<img src="pcb.jpg" style="width: 98%"> | ||
<img src="darken.png" class="layer" style="opacity: 0.5"> | ||
<img src="left_column_1.png" class="layer" id="lc1"> | ||
<img src="left_column_2.png" class="layer" id="lc2"> | ||
<img src="left_column_3.png" class="layer" id="lc3"> | ||
<img src="left_row_1.png" class="layer" id="lr1"> | ||
<img src="left_row_2.png" class="layer" id="lr2"> | ||
<img src="left_row_3.png" class="layer" id="lr3"> | ||
<img src="right_column_1.png" class="layer" id="rc1"> | ||
<img src="right_column_2.png" class="layer" id="rc2"> | ||
<img src="right_column_3.png" class="layer" id="rc3"> | ||
<img src="right_row_1.png" class="layer" id="rr1"> | ||
<img src="right_row_2.png" class="layer" id="rr2"> | ||
<img src="right_row_3.png" class="layer" id="rr3"> | ||
<img src="right_row_4.png" class="layer" id="rr4"> | ||
</div> | ||
|
||
<table> | ||
<theader> | ||
<th colspan="2">Left</th> | ||
<th colspan="2">Right</th> | ||
</theader> | ||
<tbody> | ||
<tr> | ||
<th>Rows</th> | ||
<th>Columns</th> | ||
<th>Rows</th> | ||
<th>Columns</th> | ||
</tr> | ||
<tr> | ||
<td><input type="checkbox" id="cb_lr1" checked><label for="cb_lr1">One</label></td> | ||
<td><input type="checkbox" id="cb_lc1" checked><label for="cb_lc1">One</label></td> | ||
<td><input type="checkbox" id="cb_rr1" checked><label for="cb_rr1">One</label></td> | ||
<td><input type="checkbox" id="cb_rc1" checked><label for="cb_rc1">One</label></td> | ||
</tr> | ||
<tr> | ||
<td><input type="checkbox" id="cb_lr2" checked><label for="cb_lr2">Two</label></td> | ||
<td><input type="checkbox" id="cb_lc2" checked><label for="cb_lc2">Two</label></td> | ||
<td><input type="checkbox" id="cb_rr2" checked><label for="cb_rr2">Two</label></td> | ||
<td><input type="checkbox" id="cb_rc2" checked><label for="cb_rc2">Two</label></td> | ||
</tr> | ||
<tr> | ||
<td><input type="checkbox" id="cb_lr3" checked><label for="cb_lr3">Three</label></td> | ||
<td><input type="checkbox" id="cb_lc3" checked><label for="cb_lc3">Three</label></td> | ||
<td><input type="checkbox" id="cb_rr3" checked><label for="cb_rr3">Three</label></td> | ||
<td><input type="checkbox" id="cb_rc3" checked><label for="cb_rc3">Three</label></td> | ||
</tr> | ||
<tr> | ||
<td></td> | ||
<td></td> | ||
<td><input type="checkbox" id="cb_rr4" checked><label for="cb_rr4">Four</label></td> | ||
<td></td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<a onclick="toggleAll(false);" href="#">Hide all</a> | ||
<a onclick="toggleAll(true);" href="#">Show all</a> | ||
|
||
<p> | ||
If you are having problems with a row or a column, try to hide all others. When you only have the problematic columns or rows left, you can check all the highlighted solder joints. | ||
</p> | ||
<p> | ||
You might try to short a column/row combo at the mcu(preferably out of socket). | ||
If this does not work, the mcu might be broken. | ||
</p> | ||
<p> | ||
Next try at the left RJ45 socket, if this does not work, you should reflow the socket pins, and if that does not help, check for scratched traces...(you might get away with running a bodge wire if thats the case.) | ||
</p> | ||
<p> | ||
Next try at the right RJ45 socket, if that does not work, try a few other cables, and next try to re-flow the pins. | ||
</p> | ||
<p> | ||
Next try at the solder bridge points right above the logo on the right side. | ||
</p> | ||
|
||
<style> | ||
.layer { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 98%; | ||
} | ||
body { | ||
background-color: black; | ||
color: white; | ||
font-size: 1.5em; | ||
padding: 2em; | ||
} | ||
table, th, td { | ||
border: solid; | ||
} | ||
</style> | ||
|
||
<script> | ||
var ids = ["lc", "lr", "rc", "rr"]; | ||
for (var ix = 0; ix<=4; ix++) { | ||
let id_ix = 0; | ||
while (id_ix < ids.length) { | ||
var id = `${ids[id_ix]}${ix}`; | ||
console.log(id); | ||
var input = document.querySelector(`input[id=cb_${id}`); | ||
if (input) { | ||
input.addEventListener('change', function() { | ||
console.log(id); | ||
var imgId = this.id.substr(3); | ||
var img = document.querySelector(`#${imgId}`); | ||
img.style.visibility = this.checked ? "visible" : "hidden"; | ||
}); | ||
} | ||
id_ix++; | ||
} | ||
} | ||
|
||
function toggleAll(shown) { | ||
Array.from(document.getElementsByTagName("input")) | ||
.forEach(e => {e.checked = shown; e.dispatchEvent(new Event("change"))}) | ||
} | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.