aboutsummaryrefslogtreecommitdiffstats
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2017-09-24Removing duplicated lines from cmake filePiotr Krysik1-3/+0
2017-09-18Corrections in the buildsystemPiotr Krysik2-1/+2
2017-09-13Corrections of cmake filesPiotr Krysik3-4/+5
2017-09-13Changed organization of cmake filesPiotr Krysik10-55/+279
Cmake files were added into subdirectories.
2017-08-25Added a function returning maintance version namePiotr Krysik1-0/+6
2017-08-24Added versioning borrowed fron GNU Radio to gr-gsmPiotr Krysik2-0/+87
2017-08-23Big update of copyright statements so they can be automatically processed to ↵Piotr Krysik79-88/+229
produce debian/copyright file
2017-08-23Moved openbts codes into a separate directory and updated their license ↵Piotr Krysik17-283/+281
statements so they can be automatically processed
2017-08-22Merge branch 'libosmocore_integration' into packaging_piotrPiotr Krysik28-1396/+7034
# Conflicts: # python/receiver/gsm_wideband_input.py
2017-08-21Merge refactoring of the receiver done in branch 'fixeria/receiver' of ↵Piotr Krysik2-736/+930
https://github.com/axilirator/gr-gsm into axilirator-fixeria/receiver
2017-08-02Merge branch 'fixeria/api' of https://github.com/axilirator/gr-gsm into ↵Piotr Krysik10-4/+239
axilirator-fixeria/api
2017-07-24receiver_impl.cc: refactor the source codeVadim Yanitskiy2-736/+930
This change formats the receiver implementation source code according to a mix of GNURadio and the Kernel coding styles. The main changes are: - Line length limit is 80 columns - Usage of /* comments */ is prefered - Do not use curly braces for single line loops / conditions For more details, see: https://wiki.gnuradio.org/index.php/Coding_guide_impl https://www.kernel.org/doc/html/v4.10/process/coding-style.html
2017-07-23Closes #290 - the problem with subtracting of timeslot number for timeslots ↵Piotr Krysik1-2/+2
0,1,2.
2017-07-22flow_control: implement pass / drop filtering policiesVadim Yanitskiy8-4/+117
This change introduces a set of three modes for flow control filters, one of which is default behavor and two extra modes else described below: - FILTER_POLICY_PASS_ALL - FILTER_POLICY_DROP_ALL Both modes are opposite, and make a filter either unconditionally pass or drop all the data one gets to the input. They would be usable for some external usage.
2017-07-21burst_sdcch_subslot_splitter: implement and expose GET/SET APIVadim Yanitskiy2-0/+19
2017-07-21burst_sdcch_subslot_filter: implement and expose GET/SET APIVadim Yanitskiy2-0/+39
2017-07-21burst_fnr_filter: implement and expose GET/SET APIVadim Yanitskiy2-0/+41
2017-07-21burst_timeslot_filter: implement and expose GET/SET APIVadim Yanitskiy2-0/+23
2017-07-20Added clock offset measurement in ppm as it is usable for debugging.Piotr Krysik1-0/+1
2017-06-11Changed mask for System Information type 2ter. Closes #281.Piotr Krysik1-1/+1
2017-03-30Added interpretation of SC (start ciphering) field in cmc extractorPiotr Krysik2-3/+11
2017-03-02Fix operator precedence in comparisonsSteve Glass1-5/+5
2017-02-16Merge branch 'master' into collect-system-infoPiotr Krysik6-83/+155
2017-01-23Ressurected old frequency correction functionPiotr Krysik2-33/+7
2017-01-18Changed frequency estimator to the old one that worked betterPiotr Krysik2-57/+8
2017-01-11Implemented system info collection blockRoman Khassraf3-0/+235
2017-01-03Merge branch 'development' into libosmocore_integrationPiotr Krysik3-0/+136
2017-01-03Changes in decoding:Piotr Krysik16-5/+6788
-copied decoding routines from libosmocore to gr-gsm, -made cmake files entries for new source files and added linking with libosmocodec, -moved sch.c file to decoding folder.
2016-12-29Merge pull request #241 from romankh/cmc-extractorPiotr Krysik3-0/+136
Merging CMC extraction block written by @romankh
2016-12-29Merge branch '213-3digit-mnc' of https://github.com/romankh/gr-gsm into ↵Piotr Krysik3-1/+13
libosmocore_integration
2016-12-04#240: Implemented block for extraction of information from cipher mode ↵Roman Khassraf3-0/+136
command messages
2016-11-28#213: Fixes 3-digit MNCRoman Khassraf1-0/+11
2016-11-20Fix for #232 (incorrect facch subtype)Roman Khassraf1-1/+1
2016-10-10Include of grgsm/endian.h allows for make on OSXaurelienduarte1-0/+1
If this is not included the following error occurs during make. gr-gsm/lib/flow_control/uplink_downlink_splitter_impl.cc:58:30: error: use of undeclared identifier 'be16toh'
2016-10-02TCH decoding with libosmocorePiotr Krysik1-48/+36
2016-10-02License statement in clock offset controlPiotr Krysik1-1/+0
2016-10-02Control channels decoding with libosmocorePiotr Krysik9-940/+14
2016-10-02Added license statements where it was missingPiotr Krysik2-9/+13
2016-10-02SCH decoding with libosmocorePiotr Krysik2-253/+67
2016-09-28Correction of comment in the decryption blockPiotr Krysik1-2/+2
2016-09-28Moved control channels decoder to libosmocore implementationPiotr Krysik3-65/+41
2016-08-30Changed path (flow_control) and name of uplink_downlink_filter to splitterPiotr Krysik3-17/+17
2016-08-29Changed method of frequency estimationPiotr Krysik2-8/+82
2016-08-29Commented out one includePiotr Krysik1-1/+1
2016-08-18Removed call to delete_head_blocking that was removed from new gnu radioPiotr Krysik1-2/+2
2016-08-18TCH/F decoding correction - less wrong messages interpreted as voice framesPiotr Krysik1-2/+2
2016-08-18Little corrections to uplink/downlink filterPiotr Krysik1-2/+0
2016-08-16Added uplink/downlink splitterPiotr Krysik3-0/+121
2016-07-26Merge branch 'master' of https://github.com/m-alizadeh/gr-gsm into ↵Piotr Krysik2-103/+134
m-alizadeh-master
2016-07-20Don't compute requency offset when freq. correction was triggered during ↵Piotr Krysik1-11/+11
FCCH burst