summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/comm
diff options
context:
space:
mode:
authorHarald Welte2010-03-02 18:47:01 +0100
committerHarald Welte2010-03-02 18:47:01 +0100
commit092d57bef9bd560438993a85e8d04060386d0f4e (patch)
tree39cea97ebf772416cf1cfbab383f8a66b2d3fa5e /src/target/firmware/comm
parentMajor update: Start L2/L3 implementation on PC side (diff)
downloadosmocom-092d57bef9bd560438993a85e8d04060386d0f4e.tar.gz
osmocom-092d57bef9bd560438993a85e8d04060386d0f4e.tar.xz
osmocom-092d57bef9bd560438993a85e8d04060386d0f4e.zip
Inter-Layer intergration work
L1 and L2 now pass UI frames like BCCH and CCCH downlink up into L3, which detects an IMMediate ASSignment command and instructs the L1 to switch to SDCCH/4. From this point on, SDCCH/4 and SACCH4/C messages end up in our L2 LAPDm implementation and are forwarded to L3.
Diffstat (limited to 'src/target/firmware/comm')
-rw-r--r--src/target/firmware/comm/sercomm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/firmware/comm/sercomm.c b/src/target/firmware/comm/sercomm.c
index 1cd0f3b..7baedcd 100644
--- a/src/target/firmware/comm/sercomm.c
+++ b/src/target/firmware/comm/sercomm.c
@@ -208,7 +208,7 @@ int sercomm_drv_rx_char(uint8_t ch)
sercomm.rx.msg = sercomm_alloc_msgb(SERCOMM_RX_MSG_SIZE);
if (msgb_tailroom(sercomm.rx.msg) == 0) {
- cons_puts("sercomm_drv_rx_char() overflow!\n");
+ //cons_puts("sercomm_drv_rx_char() overflow!\n");
msgb_free(sercomm.rx.msg);
sercomm.rx.msg = sercomm_alloc_msgb(SERCOMM_RX_MSG_SIZE);
sercomm.rx.state = RX_ST_WAIT_START;