diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2020-01-27 05:30:53 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2020-01-27 05:30:53 +0100 |
commit | 44cef2cb16dd2bc55ad34d0b8313f7f314b0107a (patch) | |
tree | f4be6f08748c4a759410cf7f9c48df8218ad9616 /docs/hardware.txt | |
parent | 2eeefe2db3bb9f2e54cc00e7aa657f599c2115ea (diff) | |
download | ufo-roof-temp-44cef2cb16dd2bc55ad34d0b8313f7f314b0107a.tar.gz ufo-roof-temp-44cef2cb16dd2bc55ad34d0b8313f7f314b0107a.tar.bz2 ufo-roof-temp-44cef2cb16dd2bc55ad34d0b8313f7f314b0107a.tar.xz ufo-roof-temp-44cef2cb16dd2bc55ad34d0b8313f7f314b0107a.zip |
Various docs about UFO, ROOF, and further plans
Diffstat (limited to 'docs/hardware.txt')
-rw-r--r-- | docs/hardware.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/hardware.txt b/docs/hardware.txt new file mode 100644 index 0000000..a293887 --- /dev/null +++ b/docs/hardware.txt @@ -0,0 +1,6 @@ + - Jumbo frames are not currently supported, max packet size is 1500 bytes. + * The maximum number of samples per packet can be computed as + n = (1500 - header_size) / sample_size (pixels_per_module * bpp) i.e. 46 = | 1492 / 32 | + * With 46 packets, however, we can't split a full rotation in a whole number of packets. + So, we need to find maximal number m, so that + (m <= n) and (samples_per_rotation % m = 0) i.e. 40 |