/* TEST code, regularly transmit ECHO REQ packet to L1 */ /* (C) 2010 by Holger Hans Peter Freyther * (C) 2010 by Harald Welte * * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #include #include #include #include #include #include #include #include static struct { struct osmo_timer_list timer; } test_data; static void test_tmr_cb(void *data) { struct osmocom_ms *ms = data; l1ctl_tx_echo_req(ms, 62); osmo_timer_schedule(&test_data.timer, 1, 0); } int l23_app_init(struct osmocom_ms *ms) { test_data.timer.cb = &test_tmr_cb; test_data.timer.data = ms; osmo_timer_schedule(&test_data.timer, 1, 0); return 0; } static struct l23_app_info info = { .copyright = "Copyright (C) 2010 Harald Welte \n", .contribution = "Contributions by Holger Hans Peter Freyther\n", }; struct l23_app_info *l23_app_info() { return &info; }