Skip to content

Commit

Permalink
config/web: more rate tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
oxplot committed Sep 1, 2020
1 parent 316fad9 commit b0f436d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configurer/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ <h3><label for="pd-req">Fallback</label></h3>
i => i.toString(2).padStart(8, "0")
).join("") + "0";
pulses = Array.from(bits).map(
x => (x == "0") ? "1100" : "11110000"
x => (x == "0") ? "100" : "111000"
).join("") + "1";
curPulse = 0;
progEl.disabled = true;
Expand Down

0 comments on commit b0f436d

Please sign in to comment.