Work on 80-bit protocol

* Fixes issue #11 TX Power is now persisted to NVS
* Increase timing for tilt motors from 7 to 15 beats. #1
* Add time to frame log.
* Allow RX and TX pins to be shared and multiplexed
This commit is contained in:
Robert Strouse 2023-03-29 11:41:11 -07:00
parent ab7cdba519
commit 5f5ac9fa32
9 changed files with 66 additions and 20 deletions

View file

@ -704,6 +704,7 @@ div.frame-header > span {
}
div.frame-row > span {
text-align:right;
text-decoration:inherit;
}
div.frame-row > span:nth-child(1),
div.frame-header > span:nth-child(1) {
@ -728,9 +729,14 @@ div.frame-header > span {
}
div.frame-row > span:nth-child(6),
div.frame-header > span:nth-child(6) {
width: 47px;
width: 27px;
text-align:center;
}
div.frame-row > span:nth-child(7),
div.frame-header > span:nth-child(7) {
text-align: right;
white-space:nowrap;
}
div.frame-list > div:nth-child(2n+1) {
background: beige;
@ -740,6 +746,10 @@ div.frame-row {
width:100%;
background:white;
}
div.frame-row[data-valid="false"] {
text-decoration:line-through;
color:red;
}
div.frame-pulses {
width:100%;
padding-left:7px;