Commit graph

176 commits

Author SHA1 Message Date
Thomas Kolb 10a869d1a2 Layer 2: send Empty Packet acknowledgements if there’s nothing else to transmit 2024-07-22 22:19:23 +02:00
Thomas Kolb c9916c08da Add a simple interleaver implementation (not used yet) 2024-07-21 17:23:15 +02:00
Thomas Kolb 04f29b94bf rx: show AGC gain after preamble, header and data 2024-07-20 22:33:08 +02:00
Thomas Kolb 576cdbfac5 Added ham64.c/.h to CMakeLists.txt 2024-07-20 22:32:01 +02:00
Thomas Kolb 77b24cf591 tests: Added variant of rx_file test for layer2 debugging 2024-07-20 22:31:13 +02:00
Thomas Kolb 38010ea672 rx-debugging: always dump symbols on packet boundaries 2024-07-20 22:30:27 +02:00
Thomas Kolb 12e727be00 packet_structs: add function to dump a packet header to the log 2024-07-20 22:29:04 +02:00
Thomas Kolb 3068db1d50 Handle retransmit timeouts 2024-07-20 01:04:03 +02:00
Thomas Kolb fe684f7a1d Fixed stack overflow in transmit() 2024-07-20 01:03:31 +02:00
Thomas Kolb db2700c0f7 layer2_decode_packet_header: fixed rx_seq_nr readout 2024-07-20 01:02:42 +02:00
Thomas Kolb bfe1cce6e3 packet_queue: wrap sequence number in packet_queue_delete() 2024-07-20 01:01:55 +02:00
Thomas Kolb ac0fb54623 layer2_tx: fixed logging 2024-07-20 01:01:35 +02:00
Thomas Kolb 3b7d6baa74 layer2_tx: fixed packet size 2024-07-20 01:01:01 +02:00
Thomas Kolb bcbcf5aeff Layer 2: Added logging for retransmit handling 2024-07-20 00:26:53 +02:00
Thomas Kolb d449e31586 logger: show module name 2024-07-20 00:04:32 +02:00
Thomas Kolb 041255e15f layer2_tx: Fixed stack-use-after-return 2024-07-19 22:26:02 +02:00
Thomas Kolb 725a0ffd21 Ignore the squelch while receiving a packet
Before this commit, samples could be dropped during packet reception, which for
sure destroys the current packet and potentially the following one. Now samples
are stored even if the squelch „closes“, and decoding will potentially fail due
to high noise, but not due to missing samples.
2024-07-19 22:11:29 +02:00
Thomas Kolb 60d7fbf373 setup_tundev: limit TX queue len to 16 2024-07-19 21:59:38 +02:00
Thomas Kolb 48f061e334 Handle sequence numbers
This should enable basic retransmission handling.
2024-07-18 23:26:57 +02:00
Thomas Kolb 93aa429f4f Fixed unused variable warning 2024-07-18 22:58:13 +02:00
Thomas Kolb 9bbac6ae95 Add new files to CMakeLists.txt 2024-07-18 22:57:22 +02:00
Thomas Kolb a6464a28b8 Layer 2 received packet handling 2024-07-18 22:56:42 +02:00
Thomas Kolb 7381c7e808 Integrate new layer2 TX packet handling 2024-07-18 22:23:24 +02:00
Thomas Kolb 5adbbca786 Added functions for basic layer 2 transmission handling 2024-07-18 21:55:05 +02:00
Thomas Kolb 2348cd0c88 Implement a packet queue (incl. tests) 2024-07-11 23:23:18 +02:00
Thomas Kolb 402e36dda5 packet_structs: check data length in layer2_decode_packet_header() 2024-07-04 21:37:05 +02:00
Simon Ruderich 153ff61dcd ham64: apply improvements suggested by rudi_s 2024-07-04 21:18:57 +02:00
Simon Ruderich 62d81fc2cc test_ham64: check results using assertions 2024-07-04 21:16:20 +02:00
Thomas Kolb 9a151e0cbb Rename layer2_structs -> packet_structs 2024-07-02 20:09:56 +02:00
Thomas Kolb f17d5649fc layer2_structs: use the new HAM-64 address structure 2024-07-01 21:25:49 +02:00
Thomas Kolb 4bb4017623 HAM-64 address format implementation 2024-07-01 21:03:43 +02:00
Thomas Kolb 546d86ffb0 Implement layer 2 header packing and unpacking 2024-07-01 21:03:43 +02:00
Thomas Kolb 27e2859090 Start defining layer2 structures 2024-07-01 21:03:43 +02:00
Thomas Kolb 090dff13d6 Tune TX back-off times
See comments in config.h for background info.
2024-07-01 21:02:53 +02:00
Simon Ruderich 6032cd471d Fix compiler warnings
- implicit declaration of function ‘isprint’ [-Wimplicit-function-declaration]
- comparison between ‘result_t’ and ‘enum <anonymous>’ [-Wenum-compare]
2024-06-23 07:56:53 +02:00
Simon Ruderich d54cd8a9a8 Remove unused variable debug_fd 2024-06-23 07:46:54 +02:00
Thomas Kolb fd17ef3c1e Use full preamble for frequency estimation 2024-06-08 01:57:43 +02:00
Thomas Kolb 26a2558535 Add differential part to coarse frequency control 2024-06-08 01:54:42 +02:00
Thomas Kolb 2f2834026e Fix size of transmitted packets 2024-06-01 16:47:10 +02:00
Thomas Kolb de0f3620e6 Move hexdump() function to utils 2024-06-01 16:04:17 +02:00
Thomas Kolb 692780b313 setup_tundev.sh: fix shebang 2024-05-31 20:09:53 +02:00
Thomas Kolb 24bc1f8140 Fixed packet size with appended CRC 2024-05-31 18:36:16 +02:00
Thomas Kolb f6404dd0ea Move payload CRC to layer 2
Layer 1 only does decoding of the FEC, but the CRC check for data integrity is
done in layer 2 now.
2024-05-31 17:25:50 +02:00
Thomas Kolb 0e8e049e0a Replace all perror() calls with LOG() 2024-05-30 11:02:08 +02:00
Thomas Kolb 65daa182ef Use the new logging system everywhere 2024-05-30 10:49:43 +02:00
Thomas Kolb d6eaef91cd Switch to new logging system
The new system supports:

- time-tagging of log messages
- message priority levels with a threshold below which they are not printed
- colored output of the message priority for easy identification
- compile-time disabling of all logging per C module

So far, it is integrated in the main and rx modules which generate most
messages. Other modules will be migrated in the future.
2024-05-28 23:53:11 +02:00
Thomas Kolb d60788b6ad Config changes known to work with two directly connected HackRFs 2024-05-28 20:00:46 +02:00
Thomas Kolb 91facbf699 rx: reset internal state when restarting after a transmission 2024-05-28 19:55:21 +02:00
Simon Ruderich d5aeb6c0bc visualizer: make it optional to dup JSON to file 2024-05-28 08:59:06 +02:00
Simon Ruderich 570c379bc5 visualizer: always use === for comparisons 2024-05-28 08:51:56 +02:00