Home
last modified time | relevance | path

Searched refs:uncoded_frags (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/tests/subsys/lorawan/frag_decoder/src/
Dfrag_encoder.c82 int uncoded_frags = DIV_ROUND_UP(uncoded_len, frag_size); in lorawan_frag_encoder() local
83 int coded_frags = uncoded_frags + redundant_frags; in lorawan_frag_encoder()
95 memset(coded + uncoded_len, 0, uncoded_frags * frag_size - uncoded_len); in lorawan_frag_encoder()
99 lorawan_fec_parity_matrix_vector(uncoded_frags, i, parity_vec); in lorawan_frag_encoder()
101 uint8_t *out = coded + (uncoded_frags + i - 1) * frag_size; in lorawan_frag_encoder()
103 for (int j = 0; j < uncoded_frags; j++) { in lorawan_frag_encoder()