diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2016-09-07 22:18:10 +0700 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-10-23 07:38:15 +0000 |
commit | d2d9760c08f35a231d32f0ebeb73b2927e5573b3 (patch) | |
tree | f3abc48f68d64533ef6d0d0b02ef9f005db37918 /.gitignore | |
parent | 694f72d148882987cc8e4ffd0c4143d8099e09bf (diff) |
utils/conv_gen.py: generate a single file
Instead of generating every convolutional code into a separate
file (such as conv_xcch_gen.c, conv_cs3_gen.c), it is better to
have a single file, containing all definitions, because as many
convolutional codes we add, as many entries we will have to add
into 'src/gsm/Makefile.am'. This approach increases readability
of the Makefile.am, and also makes us able to share some data
between some convolutional code definitions.
For example: xCCH, RACH, SCH, TCH/F, both CS2 and CS3 may use
the same *_state[][2] and *_output[][2] arrays within a single
file. This optimization is currently WIP.
Change-Id: Ib4e4ee5fdde38429e68e3b2fa50ec03a18f59daa
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ doc/html.tar doc/*.tag src/crc*gen.c -src/gsm/conv*gen.c +src/gsm/gsm0503_conv.c include/osmocom/core/crc*gen.h include/osmocom/core/bit*gen.h |