aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2016-05-24 14:40:03 +0200
committerHolger Freyther <holger@freyther.de>2016-05-25 20:07:03 +0000
commit2fcfc29020c81891d7888ddc7ddbcd866bcd406d (patch)
treee08592df48891bc11b9264393972e1f87b14ade4
parentce936f3cd46623856596326fe9a23cc090c2179e (diff)
add comments to describe functions
Change-Id: Ie351632001abbeb82008a5eecae0d0323a8ef7d7 Reviewed-on: https://gerrit.osmocom.org/106 Reviewed-by: Harald Welte <laforge@gnumonks.org> Tested-by: Jenkins Builder
-rw-r--r--src/bts.cpp1
-rw-r--r--src/tbf_ul.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/bts.cpp b/src/bts.cpp
index 03b0401b..953ac4d3 100644
--- a/src/bts.cpp
+++ b/src/bts.cpp
@@ -1317,6 +1317,7 @@ int gprs_rlcmac_pdch::rcv_block(uint8_t *data, uint8_t len, uint32_t fn,
return -EINVAL;
}
+/*! \brief process egprs and gprs data blocks */
int gprs_rlcmac_pdch::rcv_data_block(uint8_t *data, uint32_t fn,
struct pcu_l1_meas *meas, GprsCodingScheme cs)
{
diff --git a/src/tbf_ul.cpp b/src/tbf_ul.cpp
index 13162043..e7c64ada 100644
--- a/src/tbf_ul.cpp
+++ b/src/tbf_ul.cpp
@@ -138,6 +138,7 @@ struct msgb *gprs_rlcmac_ul_tbf::create_ul_ack(uint32_t fn, uint8_t ts)
return msg;
}
+/*! \brief receive data from PDCH/L1 */
int gprs_rlcmac_ul_tbf::rcv_data_block_acknowledged(
const struct gprs_rlc_data_info *rlc,
uint8_t *data, struct pcu_l1_meas *meas)