diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-12-29 21:00:58 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-12-29 21:00:58 +0100 |
commit | 4c5bba5b443f205fa73792317cff48c46cd8b15c (patch) | |
tree | 00ea4390e0734c730a4db2509fe69b5908370fbd | |
parent | 766f93040a8f66c0c34e2d2c24d818f1852951fa (diff) |
fixup! simulation: Enable RX1 and RX2
-rw-r--r-- | simulation.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simulation.scm b/simulation.scm index 197f0d9..6af1357 100644 --- a/simulation.scm +++ b/simulation.scm @@ -153,7 +153,7 @@ (get-operation downstream-chn))))) (match msg ;; We got the preamble in time - (($ <radio-event> 'downlink-start message-id (= listening-to? chn)) + (($ <radio-event> 'downlink-start message-id (? listening-to? chn)) (ll "Device ~a got preamble" id) message-id) ;; No preamble in time @@ -216,7 +216,7 @@ ('wait (ll "RX window started") (get-message internal-com) - (ll "Sinking again")) + (ll "RX window finished")) (_ #f))))) (lambda () |