Switches from arduino-builder to arduino-cli

- This switch is done by the new script 'am2' (replacing 'am') and
  updated Makefiles.

- Also fixes a bug in RF433Debug where the buffer used to copy strings
  from PROGMEM was not big enough. To ensure such a bug does not
  re-occur, now RF433Debug lib checks this condition and should that be
  the case, it prints out a fatal error and stops.
This commit is contained in:
Sébastien Millet 2022-09-20 20:39:05 +02:00
parent 9071e2d9d2
commit 68f0d89732
63 changed files with 222 additions and 222 deletions

View File

@ -1,10 +1,18 @@
ARDUINO_DIR = /usr/share/arduino ALL:
ARDUINO_LIBS =
ARDMK_DIR = /home/sebastien/.arduino_mk
# USER_LIB_PATH = /home/sebastien/travail/cpp/seb/arduino/libraries clean:
make -C examples/01_main/ $@
make -C examples/02_output-received-code/ $@
make -C examples/03_output-signal-timings/ $@
make -C examples/04_react_on_code/ $@
make -C examples/05_callback/ $@
make -C extras/testplan/test/ $@
BOARD_TAG = uno mrproper:
MCU = atmega328 make -C examples/01_main/ $@
make -C examples/02_output-received-code/ $@
make -C examples/03_output-signal-timings/ $@
make -C examples/04_react_on_code/ $@
make -C examples/05_callback/ $@
make -C extras/testplan/test/ $@
include $(ARDMK_DIR)/Arduino.mk

View File

@ -29,7 +29,9 @@
#include <stdarg.h> #include <stdarg.h>
static char buffer[120]; static char buffer[120];
static char progmem_reading_buffer[70]; static char progmem_reading_buffer[91];
const char *newline = "\n";
#ifdef __arm__ #ifdef __arm__
// should use uinstd.h to define sbrk but Due causes a conflict // should use uinstd.h to define sbrk but Due causes a conflict
@ -38,13 +40,36 @@ extern "C" char* sbrk(int incr);
extern char *__brkval; extern char *__brkval;
#endif // __arm__ #endif // __arm__
void dbgfunc(const char* file, long int line, const char* progmem_str) { static fatal(const char* file, long int line, short unsigned len) {
strcpy_P(progmem_reading_buffer, progmem_str); Serial.print(newline);
Serial.print(progmem_reading_buffer); Serial.print(file);
Serial.print("\n"); Serial.print(newline);
Serial.print(line);
Serial.print(newline);
Serial.print(len);
Serial.print(newline);
Serial.flush();
while (1)
;
} }
void dbgffunc(const char* file, long int line, const char* progmem_fmt, ...) { void dbgfunc(const char* file, long int line, short unsigned progmem_str_len,
const char* progmem_str) {
if (progmem_str_len >= sizeof(progmem_reading_buffer)) {
fatal(file, line, progmem_str_len);
}
strcpy_P(progmem_reading_buffer, progmem_str);
Serial.print(progmem_reading_buffer);
Serial.print(newline);
// Not useful normally (sometimes, makes analysis easier in bug fix)
// Serial.flush();
}
void dbgffunc(const char* file, long int line, short unsigned progmem_fmt_len,
const char* progmem_fmt, ...) {
if (progmem_fmt_len >= sizeof(progmem_reading_buffer)) {
fatal(file, line, progmem_fmt_len);
}
strcpy_P(progmem_reading_buffer, progmem_fmt); strcpy_P(progmem_reading_buffer, progmem_fmt);
va_list args; va_list args;
@ -55,7 +80,9 @@ void dbgffunc(const char* file, long int line, const char* progmem_fmt, ...) {
vsnprintf(buffer, sizeof(buffer), progmem_reading_buffer, args); vsnprintf(buffer, sizeof(buffer), progmem_reading_buffer, args);
va_end(args); va_end(args);
Serial.print(buffer); Serial.print(buffer);
Serial.print("\n"); Serial.print(newline);
// Not useful normally (sometimes, makes analysis easier in bug fix)
// Serial.flush();
} }
// vim: ts=4:sw=4:tw=80:et // vim: ts=4:sw=4:tw=80:et

View File

@ -23,17 +23,21 @@
#define dbg(a) \ #define dbg(a) \
{ static const char tmp[] PROGMEM = {a}; \ { static const char tmp[] PROGMEM = {a}; \
dbgfunc(__FILE__, __LINE__, tmp); \ constexpr short unsigned l = strlen(a); \
dbgfunc(__FILE__, __LINE__, l, tmp); \
} }
#define dbgf(a, ...) \ #define dbgf(a, ...) \
{ static const char tmp[] PROGMEM = {a}; \ { static const char tmp[] PROGMEM = {a}; \
dbgffunc(__FILE__, __LINE__, tmp, __VA_ARGS__); \ constexpr short unsigned l = strlen(a); \
dbgffunc(__FILE__, __LINE__, l, tmp, __VA_ARGS__); \
} }
void dbgfunc(const char* file, long int line, const char *msg); void dbgfunc(const char* file, long int line, short unsigned msg_len,
void dbgffunc(const char* file, long int line, const char *format, ...) const char *msg);
__attribute__((format(printf, 3, 4))); void dbgffunc(const char* file, long int line, short unsigned format_len,
const char *format, ...)
__attribute__((format(printf, 4, 5)));
#endif // _RF433DEBUG_H #endif // _RF433DEBUG_H

View File

@ -350,6 +350,8 @@ inline bool Rail::rail_eat(uint16_t d) {
#ifdef RF433ANY_DBG_TRACE #ifdef RF433ANY_DBG_TRACE
dbg("R> P0"); dbg("R> P0");
dbgf("R> small = %lu, small * 4 = %lu, big = %lu",
small, small << 2, big);
#endif #endif
if ((small << 2) >= big) { if ((small << 2) >= big) {

View File

@ -1,2 +1,2 @@
[0] Received 9 bits: 01 6e [0] Received 9 bits: 01 6e
T=TRI, E=0, I=9000, S=572, L=1256, P=7020, Y=0, Z=522 T=TRI, E=0, I=8960, S=568, L=1256, P=6912, Y=0, Z=512

View File

@ -1,2 +1,2 @@
[0] Received 9 bits: 01 6e [0] Received 9 bits: 01 6e
T=TRI, E=0, I=9000, S=572, L=1256, P=7020, Y=0, Z=522 T=TRI, E=0, I=8960, S=568, L=1256, P=6912, Y=0, Z=512

View File

@ -1,3 +1,3 @@
[0] Unknown encoding: 18 signal bits [0] Unknown encoding: 18 signal bits
Signal: LS:SL:LS:LS:SL:LS:LS:LS:LL:SP Signal: LS:SL:LS:LS:SL:LS:LS:LS:LL:SP
T=UNK, E=0, I=9000, S=572, L=1256, P=7020, Y=0, Z=522 T=UNK, E=0, I=8960, S=568, L=1256, P=6912, Y=0, Z=512

View File

@ -1,3 +1,3 @@
[0] Unknown encoding: 18 signal bits [0] Unknown encoding: 18 signal bits
Signal: LS:SL:LS:LS:SL:LS:LS:LS:LL:SP Signal: LS:SL:LS:LS:SL:LS:LS:LS:LL:SP
T=UNK, E=0, I=9000, S=572, L=1256, P=7020, Y=0, Z=522 T=UNK, E=0, I=8960, S=568, L=1256, P=6912, Y=0, Z=512

View File

@ -1,4 +1,4 @@
[0] Received 32 bits: b5 35 6d 00 [0] Received 32 bits: b5 35 6d 00
T=TRI, E=0, I=6908, S=598, L=1224, P=6908, Y=0, Z=560 T=TRI, E=0, I=6784, S=592, L=1216, P=6784, Y=0, Z=560
[1] Received 32 bits: b5 35 6d 00 [1] Received 32 bits: b5 35 6d 00
T=TRI, E=0, I=0, S=598, L=1224, P=6984, Y=0, Z=408 T=TRI, E=0, I=0, S=592, L=1216, P=6912, Y=0, Z=400

View File

@ -1,4 +1,4 @@
[0] Received 32 bits: b5 35 6d 00 [0] Received 32 bits: b5 35 6d 00
T=TRI, E=0, I=6908, S=598, L=1224, P=6908, Y=0, Z=560 T=TRI, E=0, I=6784, S=592, L=1216, P=6784, Y=0, Z=560
[1] Received 32 bits: b5 35 6d 00 [1] Received 32 bits: b5 35 6d 00
T=TRI, E=0, I=0, S=598, L=1224, P=6984, Y=0, Z=408 T=TRI, E=0, I=0, S=592, L=1216, P=6912, Y=0, Z=400

View File

@ -1,4 +1,4 @@
[0] Received 32 bits: 7e dc 56 78 [0] Received 32 bits: 7e dc 56 78
T=MAN, E=0, I=5436, S=1180, L=2270, P=5436, Y=0, Z=1112 T=MAN, E=0, I=5376, S=1176, L=2240, P=5376, Y=0, Z=1104
[1] Received 32 bits: 7e dc 56 78 [1] Received 32 bits: 7e dc 56 78
T=MAN, E=0, I=0, S=1180, L=2270, P=6740, Y=0, Z=1088 T=MAN, E=0, I=0, S=1176, L=2240, P=6656, Y=0, Z=1088

View File

@ -1,6 +1,6 @@
[0] Received 32 bits: 7e dc 56 78 [0] Received 32 bits: 7e dc 56 78
T=MAN, E=0, I=5436, S=1180, L=2270, P=5436, Y=0, Z=1112 T=MAN, E=0, I=5376, S=1176, L=2240, P=5376, Y=0, Z=1104
[1] Received 32 bits: 7e dc 56 78 [1] Received 32 bits: 7e dc 56 78
T=MAN, E=0, I=0, S=1180, L=2270, P=6740, Y=0, Z=1088 T=MAN, E=0, I=0, S=1176, L=2240, P=6656, Y=0, Z=1088
[2] Received 9 bits: 00 fd [2] Received 9 bits: 00 fd
T=MAN, E=0, I=0, S=1180, L=2270, P=0, Y=0, Z=1088 T=MAN, E=0, I=0, S=1176, L=2240, P=0, Y=0, Z=1088

View File

@ -1,4 +1,4 @@
[0] Received 32 bits: 8e dc 56 7f [0] Received 32 bits: 8e dc 56 7f
T=MAN, E=0, I=5568, S=1154, L=2314, P=5568, Y=0, Z=1100 T=MAN, E=0, I=5504, S=1144, L=2240, P=5504, Y=0, Z=1088
[1] Received 32 bits: 8e dc 56 7f [1] Received 32 bits: 8e dc 56 7f
T=MAN, E=0, I=0, S=1154, L=2314, P=5584, Y=0, Z=1080 T=MAN, E=0, I=0, S=1144, L=2240, P=5504, Y=0, Z=1072

View File

@ -1,6 +1,6 @@
[0] Received 32 bits: 8e dc 56 7f [0] Received 32 bits: 8e dc 56 7f
T=MAN, E=0, I=5568, S=1154, L=2314, P=5568, Y=0, Z=1100 T=MAN, E=0, I=5504, S=1144, L=2240, P=5504, Y=0, Z=1088
[1] Received 32 bits: 8e dc 56 7f [1] Received 32 bits: 8e dc 56 7f
T=MAN, E=0, I=0, S=1154, L=2314, P=5584, Y=0, Z=1080 T=MAN, E=0, I=0, S=1144, L=2240, P=5504, Y=0, Z=1072
[2] Received 11 bits: 04 76 [2] Received 11 bits: 04 76
T=MAN, E=0, I=0, S=1154, L=2314, P=0, Y=0, Z=2244 T=MAN, E=0, I=0, S=1144, L=2240, P=0, Y=0, Z=2176

View File

@ -1,4 +1,4 @@
[0] Received 32 bits: fe dc 56 78 [0] Received 32 bits: fe dc 56 78
T=MAN, E=0, I=5468, S=1154, L=2310, P=5468, Y=0, Z=1104 T=MAN, E=0, I=5376, S=1152, L=2240, P=5376, Y=0, Z=1104
[1] Received 32 bits: fe dc 56 78 [1] Received 32 bits: fe dc 56 78
T=MAN, E=0, I=0, S=1154, L=2310, P=6732, Y=0, Z=1088 T=MAN, E=0, I=0, S=1152, L=2240, P=6656, Y=0, Z=1088

View File

@ -1,6 +1,6 @@
[0] Received 32 bits: fe dc 56 78 [0] Received 32 bits: fe dc 56 78
T=MAN, E=0, I=5468, S=1154, L=2310, P=5468, Y=0, Z=1104 T=MAN, E=0, I=5376, S=1152, L=2240, P=5376, Y=0, Z=1104
[1] Received 32 bits: fe dc 56 78 [1] Received 32 bits: fe dc 56 78
T=MAN, E=0, I=0, S=1154, L=2310, P=6732, Y=0, Z=1088 T=MAN, E=0, I=0, S=1152, L=2240, P=6656, Y=0, Z=1088
[2] Received 9 bits: 01 fd [2] Received 9 bits: 01 fd
T=MAN, E=0, I=0, S=1154, L=2310, P=0, Y=0, Z=1096 T=MAN, E=0, I=0, S=1152, L=2240, P=0, Y=0, Z=1088

View File

@ -1,5 +1,5 @@
[0] Received 32 bits: 7e dc 56 78 [0] Received 32 bits: 7e dc 56 78
T=MAN, E=0, I=5436, S=1180, L=2270, P=5436, Y=0, Z=1112 T=MAN, E=0, I=5376, S=1176, L=2240, P=5376, Y=0, Z=1104
[1] Unknown encoding: 50 signal bits [1] Unknown encoding: 50 signal bits
Signal: SS:SL:SS:SS:SS:SS:SS:LL:SS:LL:SS:SS:LS:SS:SL:LL:SL:SS:LS:SL:SS:SS:SS:LS:SS:SP Signal: SS:SL:SS:SS:SS:SS:SS:LL:SS:LL:SS:SS:LS:SS:SL:LL:SL:SS:LS:SL:SS:SS:SS:LS:SS:SP
T=UNK, E=0, I=0, S=1180, L=2270, P=6740, Y=0, Z=1088 T=UNK, E=0, I=0, S=1176, L=2240, P=6656, Y=0, Z=1088

View File

@ -1,6 +1,6 @@
[0] Received 32 bits: 7e dc 56 78 [0] Received 32 bits: 7e dc 56 78
T=MAN, E=0, I=5436, S=1180, L=2270, P=5436, Y=0, Z=1112 T=MAN, E=0, I=5376, S=1176, L=2240, P=5376, Y=0, Z=1104
[1] Received 27 bits(!): 03 f6 e2 a3 [1] Received 27 bits(!): 03 f6 e2 a3
T=MAN, E=4, I=0, S=1180, L=2270, P=6740, Y=0, Z=1088 T=MAN, E=4, I=0, S=1176, L=2240, P=6656, Y=0, Z=1088
[2] Received 9 bits: 00 fd [2] Received 9 bits: 00 fd
T=MAN, E=0, I=0, S=1180, L=2270, P=0, Y=0, Z=1088 T=MAN, E=0, I=0, S=1176, L=2240, P=0, Y=0, Z=1088

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=356, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=344, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=344 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=356, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=344, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14924, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3740, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 55 bits: 29 3d 1c 2f 08 98 cf [1] Received 55 bits: 29 3d 1c 2f 08 98 cf
T=TRI, E=0, I=0, S=356, L=734, P=3000, Y=0, Z=692 T=TRI, E=0, I=0, S=344, L=728, P=2944, Y=0, Z=688

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14924, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3740, Y=0, Z=324 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=320
[1] Received 55 bits: 29 3d 1c 2f 08 98 cf [1] Received 55 bits: 29 3d 1c 2f 08 98 cf
T=TRI, E=0, I=0, S=356, L=734, P=3000, Y=0, Z=692 T=TRI, E=0, I=0, S=344, L=728, P=2944, Y=0, Z=688

View File

@ -1,8 +1,8 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 33 bits: 01 42 3c 68 c0 [1] Received 33 bits: 01 42 3c 68 c0
T=TRI, E=0, I=0, S=356, L=734, P=15284, Y=0, Z=328 T=TRI, E=0, I=0, S=344, L=728, P=15232, Y=0, Z=320
[2] Sync 11 [2] Sync 11
T=SYN, E=0, I=0, S=356, L=734, P=3740, Y=0, Z=336 T=SYN, E=0, I=0, S=344, L=728, P=3712, Y=0, Z=336
[3] Received 9 bits: 01 42 [3] Received 9 bits: 01 42
T=TRI, E=0, I=0, S=356, L=734, P=3740, Y=0, Z=336 T=TRI, E=0, I=0, S=344, L=728, P=3712, Y=0, Z=336

View File

@ -1,8 +1,8 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=344 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 33 bits: 01 42 3c 68 c0 [1] Received 33 bits: 01 42 3c 68 c0
T=TRI, E=0, I=0, S=356, L=734, P=15284, Y=0, Z=328 T=TRI, E=0, I=0, S=344, L=728, P=15232, Y=0, Z=320
[2] Sync 11 [2] Sync 11
T=SYN, E=0, I=0, S=356, L=734, P=3740, Y=0, Z=336 T=SYN, E=0, I=0, S=344, L=728, P=3712, Y=0, Z=336
[3] Received 9 bits: 01 42 [3] Received 9 bits: 01 42
T=TRI, E=0, I=0, S=356, L=734, P=0, Y=0, Z=356 T=TRI, E=0, I=0, S=344, L=728, P=0, Y=0, Z=352

View File

@ -1,8 +1,8 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 33 bits: 01 42 3c 68 c0 [1] Received 33 bits: 01 42 3c 68 c0
T=TRI, E=0, I=0, S=356, L=734, P=15284, Y=0, Z=328 T=TRI, E=0, I=0, S=344, L=728, P=15232, Y=0, Z=320
[2] Sync 11 [2] Sync 11
T=SYN, E=0, I=0, S=356, L=734, P=3740, Y=0, Z=336 T=SYN, E=0, I=0, S=344, L=728, P=3712, Y=0, Z=336
[3] Received 10 bits: 02 84 [3] Received 10 bits: 02 84
T=TRI, E=0, I=0, S=356, L=734, P=15284, Y=0, Z=328 T=TRI, E=0, I=0, S=344, L=728, P=15232, Y=0, Z=320

View File

@ -1,8 +1,8 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=344 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 33 bits: 01 42 3c 68 c0 [1] Received 33 bits: 01 42 3c 68 c0
T=TRI, E=0, I=0, S=356, L=734, P=15284, Y=0, Z=328 T=TRI, E=0, I=0, S=344, L=728, P=15232, Y=0, Z=320
[2] Sync 11 [2] Sync 11
T=SYN, E=0, I=0, S=356, L=734, P=3740, Y=0, Z=336 T=SYN, E=0, I=0, S=344, L=728, P=3712, Y=0, Z=336
[3] Received 9 bits: 01 42 [3] Received 9 bits: 01 42
T=TRI, E=0, I=0, S=356, L=734, P=0, Y=0, Z=356 T=TRI, E=0, I=0, S=344, L=728, P=0, Y=0, Z=352

View File

@ -1,5 +1,5 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Unknown encoding: 66 signal bits [1] Unknown encoding: 66 signal bits
Signal: LS:SL:LS:SL:SL:SL:SL:LS:SL:SL:SL:LS:LS:LS:LS:SL:SL:SL:LS:LS:SL:LS:SL:SL:SL:LS:LS:SL:SL:SL:SL:SL:LL Signal: LS:SL:LS:SL:SL:SL:SL:LS:SL:SL:SL:LS:LS:LS:LS:SL:SL:SL:LS:LS:SL:LS:SL:SL:SL:LS:LS:SL:SL:SL:SL:SL:LL
T=UNK, E=0, I=0, S=356, L=734, P=0, Y=0, Z=717 T=UNK, E=0, I=0, S=344, L=728, P=0, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=344 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Received 48 bits(!): a1 1e 34 60 22 63 [1] Received 48 bits(!): a1 1e 34 60 22 63
T=TRI, E=1, I=0, S=356, L=734, P=0, Y=0, Z=708 T=TRI, E=1, I=0, S=344, L=728, P=0, Y=0, Z=704

View File

@ -1,7 +1,7 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Unknown encoding: 48 signal bits [1] Unknown encoding: 48 signal bits
Signal: LS:SL:SS:SL:SL:LS:SL:SL:SL:SL:LS:LS:SL:SL:SL:LS:LS:SL:SL:LS:LS:SL:LS:LS:SP Signal: LS:SL:SS:SL:SL:LS:SL:SL:SL:SL:LS:LS:SL:SL:SL:LS:LS:SL:SL:LS:LS:SL:LS:LS:SP
T=UNK, E=0, I=0, S=356, L=736, P=15284, Y=0, Z=328 T=UNK, E=0, I=0, S=344, L=736, P=15232, Y=0, Z=320
[2] Sync 8 [2] Sync 8
T=SYN, E=0, I=0, S=356, L=736, P=3740, Y=0, Z=336 T=SYN, E=0, I=0, S=344, L=736, P=3712, Y=0, Z=336

View File

@ -1,7 +1,7 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=348, L(lo)=348, S(hi)=364, L(hi)=364, P=3724, Y=0, Z=344 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=352, L(hi)=352, P=3712, Y=0, Z=336
[1] Unknown encoding: 48 signal bits [1] Unknown encoding: 48 signal bits
Signal: LS:SL:SS:SL:SL:LS:SL:SL:SL:SL:LS:LS:SL:SL:SL:LS:LS:SL:SL:LS:LS:SL:LS:LS:SP Signal: LS:SL:SS:SL:SL:LS:SL:SL:SL:SL:LS:LS:SL:SL:SL:LS:LS:SL:SL:LS:LS:SL:LS:LS:SP
T=UNK, E=0, I=0, S=356, L=736, P=15284, Y=0, Z=328 T=UNK, E=0, I=0, S=344, L=736, P=15232, Y=0, Z=320
[2] Sync 8 [2] Sync 8
T=SYN, E=0, I=0, S=356, L=736, P=3740, Y=0, Z=336 T=SYN, E=0, I=0, S=344, L=736, P=3712, Y=0, Z=336

View File

@ -1,12 +1,12 @@
0, 5652 0, 5652
1180, 300 1180, 320
440, 924 440, 924
1164, 236 1164, 336
1136, 264 1136, 294
1156, 244 1156, 294
408, 952 408, 952
416, 948 416, 948
1144, 256 1144, 266
400, 964 400, 964
1124, 276 1124, 276
400, 968 400, 968

View File

@ -1,4 +1,4 @@
[0] Received 24 bits: b9 4d 24 [0] Received 24 bits: b9 4d 24
T=TRI, E=0, I=5652, S=338, L=1044, P=5652, Y=0, Z=364 T=TRI, E=0, I=5632, S=384, L=1032, P=5632, Y=0, Z=352
[1] Received 24 bits: b9 4d 24 [1] Received 24 bits: b9 4d 24
T=TRI, E=0, I=0, S=338, L=1044, P=10688, Y=0, Z=324 T=TRI, E=0, I=0, S=384, L=1032, P=10624, Y=0, Z=320

View File

@ -1,6 +1,6 @@
[0] Received 24 bits: b9 4d 24 [0] Received 24 bits: b9 4d 24
T=TRI, E=0, I=5652, S=338, L=1044, P=5652, Y=0, Z=364 T=TRI, E=0, I=5632, S=384, L=1032, P=5632, Y=0, Z=352
[1] Received 24 bits: b9 4d 24 [1] Received 24 bits: b9 4d 24
T=TRI, E=0, I=0, S=338, L=1044, P=10688, Y=0, Z=324 T=TRI, E=0, I=0, S=384, L=1032, P=10624, Y=0, Z=320
[2] Received 17 bits: 01 72 9a [2] Received 17 bits: 01 72 9a
T=TRI, E=0, I=0, S=338, L=1044, P=0, Y=0, Z=328 T=TRI, E=0, I=0, S=384, L=1032, P=0, Y=0, Z=320

View File

@ -1,4 +1,4 @@
[0] Received 24 bits: b9 4d 24 [0] Received 24 bits: b9 4d 24
T=TRI, E=0, I=10680, S=336, L=1036, P=10680, Y=0, Z=328 T=TRI, E=0, I=10624, S=336, L=1032, P=10624, Y=0, Z=320
[1] Received 24 bits: b9 4d 24 [1] Received 24 bits: b9 4d 24
T=TRI, E=0, I=0, S=336, L=1036, P=10708, Y=0, Z=316 T=TRI, E=0, I=0, S=336, L=1032, P=10624, Y=0, Z=304

View File

@ -1,6 +1,6 @@
[0] Received 24 bits: b9 4d 24 [0] Received 24 bits: b9 4d 24
T=TRI, E=0, I=10680, S=336, L=1036, P=10680, Y=0, Z=328 T=TRI, E=0, I=10624, S=336, L=1032, P=10624, Y=0, Z=320
[1] Received 24 bits: b9 4d 24 [1] Received 24 bits: b9 4d 24
T=TRI, E=0, I=0, S=336, L=1036, P=10708, Y=0, Z=316 T=TRI, E=0, I=0, S=336, L=1032, P=10624, Y=0, Z=304
[2] Received 17 bits: 01 72 9a [2] Received 17 bits: 01 72 9a
T=TRI, E=0, I=0, S=336, L=1036, P=0, Y=0, Z=312 T=TRI, E=0, I=0, S=336, L=1032, P=0, Y=0, Z=304

View File

@ -1,12 +1,12 @@
0, 5652 0, 5652
1180, 300 1180, 300
440, 924 440, 924
1164, 236 1164, 300
1136, 264 1136, 284
1156, 244 1156, 294
408, 952 408, 952
416, 948 416, 948
1144, 256 1144, 276
400, 964 400, 964
400, 276 400, 276
400, 968 400, 968

View File

@ -1,5 +1,5 @@
[0] Unknown encoding: 48 signal bits [0] Unknown encoding: 48 signal bits
Signal: LS:SL:LS:LS:LS:SL:SL:LS:SL:SS:SL:SL:LS:LS:SL:LS:SL:SL:LS:SL:SL:LS:SL:SL:SP Signal: LS:SL:LS:LS:LS:SL:SL:LS:SL:SS:SL:SL:LS:LS:SL:LS:SL:SL:LS:SL:SL:LS:SL:SL:SP
T=UNK, E=0, I=5652, S=338, L=1044, P=5652, Y=0, Z=364 T=UNK, E=0, I=5632, S=360, L=1032, P=5632, Y=0, Z=352
[1] Received 24 bits: b9 4d 24 [1] Received 24 bits: b9 4d 24
T=TRI, E=0, I=0, S=338, L=1044, P=10688, Y=0, Z=324 T=TRI, E=0, I=0, S=360, L=1032, P=10624, Y=0, Z=320

View File

@ -1,6 +1,6 @@
[0] Received 23 bits(!): 5c 8d 24 [0] Received 23 bits(!): 5c 8d 24
T=TRI, E=1, I=5652, S=338, L=1044, P=5652, Y=0, Z=364 T=TRI, E=1, I=5632, S=360, L=1032, P=5632, Y=0, Z=352
[1] Received 24 bits: b9 4d 24 [1] Received 24 bits: b9 4d 24
T=TRI, E=0, I=0, S=338, L=1044, P=10688, Y=0, Z=324 T=TRI, E=0, I=0, S=360, L=1032, P=10624, Y=0, Z=320
[2] Received 17 bits: 01 72 9a [2] Received 17 bits: 01 72 9a
T=TRI, E=0, I=0, S=338, L=1044, P=0, Y=0, Z=328 T=TRI, E=0, I=0, S=360, L=1032, P=0, Y=0, Z=320

View File

@ -1,8 +1,8 @@
[0] Received 12 bits: 05 55 [0] Received 12 bits: 05 55
T=TRN, E=0, I=23908, S=650, L=1348, P=23908, Y=650, Z=656 T=TRN, E=0, I=21504, S=640, L=1336, P=21504, Y=640, Z=656
[1] Received 12 bits: 05 55 [1] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23936, Y=650, Z=664 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=656
[2] Received 12 bits: 05 55 [2] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23956, Y=650, Z=628 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=624
[3] Received 12 bits: 05 55 [3] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23936, Y=650, Z=656 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=656

View File

@ -1,8 +1,8 @@
[0] Received 12 bits: 05 55 [0] Received 12 bits: 05 55
T=TRN, E=0, I=23908, S=650, L=1348, P=23908, Y=650, Z=656 T=TRN, E=0, I=21504, S=640, L=1336, P=21504, Y=640, Z=656
[1] Received 12 bits: 05 55 [1] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23936, Y=650, Z=664 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=656
[2] Received 12 bits: 05 55 [2] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23956, Y=650, Z=628 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=624
[3] Received 12 bits: 05 55 [3] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23936, Y=650, Z=656 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=656

View File

@ -1,8 +1,8 @@
[0] Received 12 bits: 05 55 [0] Received 12 bits: 05 55
T=TRN, E=0, I=23908, S=666, L=1356, P=23908, Y=666, Z=636 T=TRN, E=0, I=21504, S=664, L=1352, P=21504, Y=664, Z=624
[1] Received 12 bits: 05 55 [1] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=666, L=1356, P=23964, Y=666, Z=636 T=TRN, E=0, I=0, S=664, L=1352, P=21504, Y=664, Z=624
[2] Received 12 bits: 05 55 [2] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=666, L=1356, P=23952, Y=666, Z=640 T=TRN, E=0, I=0, S=664, L=1352, P=21504, Y=664, Z=640
[3] Received 12 bits: 05 55 [3] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=666, L=1356, P=23952, Y=666, Z=648 T=TRN, E=0, I=0, S=664, L=1352, P=21504, Y=664, Z=640

View File

@ -1,8 +1,8 @@
[0] Received 12 bits: 05 55 [0] Received 12 bits: 05 55
T=TRN, E=0, I=23908, S=666, L=1356, P=23908, Y=666, Z=636 T=TRN, E=0, I=21504, S=664, L=1352, P=21504, Y=664, Z=624
[1] Received 12 bits: 05 55 [1] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=666, L=1356, P=23964, Y=666, Z=636 T=TRN, E=0, I=0, S=664, L=1352, P=21504, Y=664, Z=624
[2] Received 12 bits: 05 55 [2] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=666, L=1356, P=23952, Y=666, Z=640 T=TRN, E=0, I=0, S=664, L=1352, P=21504, Y=664, Z=640
[3] Received 12 bits: 05 55 [3] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=666, L=1356, P=23952, Y=666, Z=648 T=TRN, E=0, I=0, S=664, L=1352, P=21504, Y=664, Z=640

View File

@ -1,10 +1,10 @@
[0] Unknown encoding: 24 signal bits [0] Unknown encoding: 24 signal bits
Signal: SS:LL:SS:LL:SS:SS:LL:LL:SS:LL:SS:LL:SP Signal: SS:LL:SS:LL:SS:SS:LL:LL:SS:LL:SS:LL:SP
T=UNK, E=0, I=23908, S=650, L=1348, P=23908, Y=0, Z=656 T=UNK, E=0, I=21504, S=640, L=1336, P=21504, Y=0, Z=656
[1] Received 12 bits: 05 55 [1] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23936, Y=650, Z=664 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=656
[2] Unknown encoding: 24 signal bits [2] Unknown encoding: 24 signal bits
Signal: SS:LL:SS:LL:SS:LL:SS:LL:SS:SL:SS:LL:SP Signal: SS:LL:SS:LL:SS:LL:SS:LL:SS:SL:SS:LL:SP
T=UNK, E=0, I=0, S=650, L=1348, P=23936, Y=0, Z=656 T=UNK, E=0, I=0, S=640, L=1336, P=21504, Y=0, Z=656
[3] Received 12 bits: 05 55 [3] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23956, Y=650, Z=628 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=624

View File

@ -1,9 +1,9 @@
[0] Unknown encoding: 24 signal bits [0] Unknown encoding: 24 signal bits
Signal: SS:LL:SS:LL:SS:SS:LL:LL:SS:LL:SS:LL:SP Signal: SS:LL:SS:LL:SS:SS:LL:LL:SS:LL:SS:LL:SP
T=UNK, E=0, I=23908, S=650, L=1348, P=23908, Y=0, Z=656 T=UNK, E=0, I=21504, S=640, L=1336, P=21504, Y=0, Z=656
[1] Received 12 bits: 05 55 [1] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23936, Y=650, Z=664 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=656
[2] Received 11 bits(!): 02 ad [2] Received 11 bits(!): 02 ad
T=TRN, E=1, I=0, S=650, L=1348, P=23936, Y=650, Z=656 T=TRN, E=1, I=0, S=640, L=1336, P=21504, Y=640, Z=656
[3] Received 12 bits: 05 55 [3] Received 12 bits: 05 55
T=TRN, E=0, I=0, S=650, L=1348, P=23956, Y=650, Z=628 T=TRN, E=0, I=0, S=640, L=1336, P=21504, Y=640, Z=624

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=2500, V=2500, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2432, V=2432, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 11 [0] Sync 11
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=2500, V=2500, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2432, V=2432, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 7 [0] Sync 7
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=2500, V=2500, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2432, V=2432, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 7 [0] Sync 7
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=2500, V=2500, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2432, V=2432, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 8 [0] Sync 8
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=2500, V=2500, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2432, V=2432, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 8 [0] Sync 8
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=2500, V=2500, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2432, V=2432, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 8 [0] Sync 8
T=SYN, E=0, I=14916, S(lo)=340, L(lo)=340, S(hi)=368, L(hi)=368, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=368, L(hi)=368, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=354, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 8 [0] Sync 8
T=SYN, E=0, I=14916, S(lo)=340, L(lo)=340, S(hi)=368, L(hi)=368, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=368, L(hi)=368, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=354, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 9 [0] Sync 9
T=SYN, E=0, I=14916, S(lo)=340, L(lo)=340, S(hi)=368, L(hi)=368, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=368, L(hi)=368, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=354, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 9 [0] Sync 9
T=SYN, E=0, I=14916, S(lo)=340, L(lo)=340, S(hi)=368, L(hi)=368, P=3724, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=368, L(hi)=368, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=354, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 10 [0] Sync 10
T=SYN, E=0, I=14916, S(lo)=340, L(lo)=340, S(hi)=368, L(hi)=368, P=3724, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=368, L(hi)=368, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=354, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 10 [0] Sync 10
T=SYN, E=0, I=14916, S(lo)=340, L(lo)=340, S(hi)=368, L(hi)=368, P=3724, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=336, L(lo)=336, S(hi)=368, L(hi)=368, P=3712, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=354, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 9 [0] Sync 9
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=3000, V=3000, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2944, V=2944, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 9 [0] Sync 9
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=3000, V=3000, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=2944, V=2944, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 10 [0] Sync 10
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=1200, V=1200, Y=0, Z=348 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=1200, V=1200, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -1,4 +1,4 @@
[0] Sync 10 [0] Sync 10
T=SYN, E=0, I=14916, S(lo)=356, L(lo)=356, S(hi)=364, L(hi)=364, P=3724, U=1200, V=1200, Y=0, Z=340 T=SYN, E=0, I=14848, S(lo)=352, L(lo)=352, S(hi)=352, L(hi)=352, P=3712, U=1200, V=1200, Y=0, Z=336
[1] Received 55 bits: 50 8f 1a 30 08 98 cf [1] Received 55 bits: 50 8f 1a 30 08 98 cf
T=TRI, E=0, I=0, S=360, L=734, P=3000, Y=0, Z=708 T=TRI, E=0, I=0, S=352, L=728, P=2944, Y=0, Z=704

View File

@ -14,8 +14,6 @@
608, 24028 608, 24028
608, 728 608, 728
1300, 1412 1300, 1412
596, 736
1288, 1424
592, 748 592, 748
1284, 1420 1284, 1420
596, 736 596, 736
@ -29,8 +27,6 @@
1268, 1420 1268, 1420
604, 736 604, 736
1300, 1412 1300, 1412
588, 744
1296, 1412
592, 748 592, 748
1276, 1428 1276, 1428
588, 752 588, 752
@ -38,12 +34,8 @@
580, 760 580, 760
1280, 1420 1280, 1420
584, 24048 584, 24048
612, 736
1260, 1440
580, 760 580, 760
1268, 1436 1268, 1436
580, 760
1256, 1440
596, 744 596, 744
1276, 1424 1276, 1424
596, 736 596, 736
@ -51,19 +43,6 @@
596, 752 596, 752
1264, 1432 1264, 1432
576, 24056 576, 24056
572, 776
1256, 1448
580, 752
1276, 1424
592, 744
1284, 1420
616, 728
1268, 1424
588, 752
1256, 1448
568, 776
1240, 1464
580, 24040
576, 764 576, 764
1260, 1440 1260, 1440
616, 716 616, 716

View File

@ -1,6 +1,6 @@
[ [
{ {
"N":138,"start":0,"end":29, "N":96,"start":0,"end":29,
"trk":TRK_RECV,"xorval":0x00000B97, "trk":TRK_RECV,"xorval":0x00000B97,
"r_low":{ "r_low":{
"bits":12,"v":0x00000D1A,"railstatus":"closed","n":2, "bits":12,"v":0x00000D1A,"railstatus":"closed","n":2,
@ -16,64 +16,48 @@
} }
} }
{ {
"N":138,"start":0,"end":55, "N":96,"start":0,"end":51,
"trk":TRK_RECV,"xorval":0x00000FFF, "trk":TRK_RECV,"xorval":0x000003FF,
"r_low":{ "r_low":{
"bits":12,"v":0x00000AAA,"railstatus":"closed","n":2, "bits":10,"v":0x000002AA,"railstatus":"closed","n":2,
"b_short":{"inf":234,"mid":624,"sup":952}, "b_short":{"inf":234,"mid":624,"sup":952},
"b_long":{"inf":953,"mid":1280,"sup":2080}, "b_long":{"inf":953,"mid":1280,"sup":2080},
"b_sep":{"inf":0,"mid":0,"sup":0} "b_sep":{"inf":0,"mid":0,"sup":0}
}, },
"r_high":{ "r_high":{
"bits":11,"v":0x00000555,"railstatus":"stop received","n":2, "bits":9,"v":0x00000155,"railstatus":"stop received","n":2,
"b_short":{"inf":264,"mid":704,"sup":1048}, "b_short":{"inf":264,"mid":704,"sup":1048},
"b_long":{"inf":1049,"mid":1392,"sup":2262}, "b_long":{"inf":1049,"mid":1392,"sup":2262},
"b_sep":{"inf":13440,"mid":21504,"sup":65535} "b_sep":{"inf":13440,"mid":21504,"sup":65535}
} }
} }
{ {
"N":138,"start":0,"end":81, "N":96,"start":0,"end":73,
"trk":TRK_RECV,"xorval":0x00000FFF, "trk":TRK_RECV,"xorval":0x000003FF,
"r_low":{ "r_low":{
"bits":12,"v":0x00000AAA,"railstatus":"closed","n":2, "bits":10,"v":0x000002AA,"railstatus":"closed","n":2,
"b_short":{"inf":234,"mid":624,"sup":952}, "b_short":{"inf":234,"mid":624,"sup":952},
"b_long":{"inf":953,"mid":1280,"sup":2080}, "b_long":{"inf":953,"mid":1280,"sup":2080},
"b_sep":{"inf":0,"mid":0,"sup":0} "b_sep":{"inf":0,"mid":0,"sup":0}
}, },
"r_high":{ "r_high":{
"bits":11,"v":0x00000555,"railstatus":"stop received","n":2, "bits":9,"v":0x00000155,"railstatus":"stop received","n":2,
"b_short":{"inf":264,"mid":704,"sup":1048}, "b_short":{"inf":264,"mid":704,"sup":1048},
"b_long":{"inf":1049,"mid":1392,"sup":2262}, "b_long":{"inf":1049,"mid":1392,"sup":2262},
"b_sep":{"inf":13440,"mid":21504,"sup":65535} "b_sep":{"inf":13440,"mid":21504,"sup":65535}
} }
} }
{ {
"N":138,"start":0,"end":107, "N":96,"start":0,"end":91,
"trk":TRK_RECV,"xorval":0x00000FFF, "trk":TRK_RECV,"xorval":0x000000FF,
"r_low":{ "r_low":{
"bits":12,"v":0x00000AAA,"railstatus":"closed","n":2, "bits":8,"v":0x000000AA,"railstatus":"closed","n":2,
"b_short":{"inf":234,"mid":624,"sup":952}, "b_short":{"inf":234,"mid":624,"sup":952},
"b_long":{"inf":953,"mid":1280,"sup":2080}, "b_long":{"inf":953,"mid":1280,"sup":2080},
"b_sep":{"inf":0,"mid":0,"sup":0} "b_sep":{"inf":0,"mid":0,"sup":0}
}, },
"r_high":{ "r_high":{
"bits":11,"v":0x00000555,"railstatus":"stop received","n":2, "bits":7,"v":0x00000055,"railstatus":"stop received","n":2,
"b_short":{"inf":264,"mid":704,"sup":1048},
"b_long":{"inf":1049,"mid":1392,"sup":2262},
"b_sep":{"inf":13440,"mid":21504,"sup":65535}
}
}
{
"N":138,"start":0,"end":133,
"trk":TRK_RECV,"xorval":0x00000FFF,
"r_low":{
"bits":12,"v":0x00000AAA,"railstatus":"closed","n":2,
"b_short":{"inf":234,"mid":624,"sup":952},
"b_long":{"inf":953,"mid":1280,"sup":2080},
"b_sep":{"inf":0,"mid":0,"sup":0}
},
"r_high":{
"bits":11,"v":0x00000555,"railstatus":"stop received","n":2,
"b_short":{"inf":264,"mid":704,"sup":1048}, "b_short":{"inf":264,"mid":704,"sup":1048},
"b_long":{"inf":1049,"mid":1392,"sup":2262}, "b_long":{"inf":1049,"mid":1392,"sup":2262},
"b_sep":{"inf":13440,"mid":21504,"sup":65535} "b_sep":{"inf":13440,"mid":21504,"sup":65535}

View File

@ -1,22 +1,18 @@
IH_max_pending_timings = 3 IH_max_pending_timings = 3
> nb_sections = 5, initseq = 8448 > nb_sections = 4, initseq = 8448
00 SSEP 00 SSEP
sep = 21504 sep = 21504
low: [2] n = 12, v = 0x00000D1A low: [2] n = 12, v = 0x00000D1A
high: [2] n = 11, v = 0x0000068D high: [2] n = 11, v = 0x0000068D
01 SSEP 01 SSEP
sep = 21504 sep = 21504
low: [2] n = 12, v = 0x00000AAA low: [2] n = 10, v = 0x000002AA
high: [2] n = 11, v = 0x00000555 high: [2] n = 9, v = 0x00000155
02 SSEP 02 SSEP
sep = 21504 sep = 21504
low: [2] n = 12, v = 0x00000AAA low: [2] n = 10, v = 0x000002AA
high: [2] n = 11, v = 0x00000555 high: [2] n = 9, v = 0x00000155
03 SSEP 03 SSEP
sep = 21504 sep = 21504
low: [2] n = 12, v = 0x00000AAA low: [2] n = 8, v = 0x000000AA
high: [2] n = 11, v = 0x00000555 high: [2] n = 7, v = 0x00000055
04 SSEP
sep = 21504
low: [2] n = 12, v = 0x00000AAA
high: [2] n = 11, v = 0x00000555