diff options
author | Max Suraev msuraev@sysmocom.de <laforge@gnumonks.org> | 2016-04-29 13:17:22 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-04-29 13:17:22 +0200 |
commit | 84da22f96429f77276783d28622d0c6acb5c484d (patch) | |
tree | 04f15b1af1013d0e9bf49ec552c0048c2efdcf87 /include | |
parent | aa16d63c273204dc69108f7361d38b751bfb69e4 (diff) |
Add code generator for convolutional codes
Add python utility to generate .c code with convolutional
encoder/decoder based on polynomial description of the code. If argument
given it'll be interpreted as intended output directory, otherwise
current working directory is used.
Codes for *CCH, CS2/3 and TCH/AFS are generated. Corresponding manual
implementations are removed from tests. This introduce build-time
dependency on python.
The main work for this patch was generously contributed by Sylvain
Munaut.
Fixes: OS#1629
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 86aaf726..14a1871d 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -65,6 +65,7 @@ nobase_include_HEADERS = \ osmocom/gsm/gsm0411_utils.h \ osmocom/gsm/gsm0480.h \ osmocom/gsm/gsm0502.h \ + osmocom/gsm/gsm0503.h \ osmocom/gsm/gsm0808.h \ osmocom/gsm/gsm48.h \ osmocom/gsm/gsm48_ie.h \ |