diff options
| author | Michal Hanus <hanus.michal@divelit.cz> | 2025-05-21 20:58:52 +0200 |
|---|---|---|
| committer | Michal Hanus <hanus.michal@divelit.cz> | 2025-05-21 20:58:52 +0200 |
| commit | a407db2d45286f37eff10710c9a8e43755cedfc6 (patch) | |
| tree | b2451cf76bad9d2ee8f80df9f9df32f176c1e5eb /nrfdemo/dectvypocet | |
| parent | 85f4aadd7382eec843a02f513f6933abba6e5d02 (diff) | |
bck
Diffstat (limited to 'nrfdemo/dectvypocet')
| -rw-r--r-- | nrfdemo/dectvypocet | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nrfdemo/dectvypocet b/nrfdemo/dectvypocet new file mode 100644 index 0000000..28b5132 --- /dev/null +++ b/nrfdemo/dectvypocet @@ -0,0 +1,20 @@ +T_u_symb = 41.667 us / u + +N_symb = 10 * u +N_subslot = 2 * u + +// Npacket = PackLen * N_symb / N_subslot +Npacket = PackLen * N_symb + +T = Npacket * T_u_symb + +// type 1 +T = PackLen * 10u * 41.667 us / u +T = packLen * 416.67 us + +// type 0 +T = PackLen * N_symb / N_subslot * T_u_symb + +T = PackLen * 10u / 2u * 41.667 us / u + +T = PackLen * 333 us / u
\ No newline at end of file |
