/* "Application" code of the layer2/3 stack */ /* (C) 2010 by Andreas Eversberg * * 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. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #include #include #include #include #include #include #include #include extern struct log_target *stderr_target; int _scan_work(struct osmocom_ms *ms) { return 0; } int _scan_exit(struct osmocom_ms *ms) { /* in case there is a lockup during exit */ signal(SIGINT, SIG_DFL); signal(SIGHUP, SIG_DFL); signal(SIGTERM, SIG_DFL); signal(SIGPIPE, SIG_DFL); scan_exit(); return 0; } int l23_app_init(struct osmocom_ms *ms) { int rc; srand(time(NULL)); // log_parse_category_mask(stderr_target, "DL1C:DRSL:DRR:DGPS:DSUM"); log_parse_category_mask(stderr_target, "DSUM"); log_set_log_level(stderr_target, LOGL_INFO); l23_app_work = _scan_work; l23_app_exit = _scan_exit; rc = scan_init(ms); if (rc) return rc; l1ctl_tx_reset_req(ms, L1CTL_RES_T_FULL); printf("Mobile initialized, please start phone now!\n"); return 0; } static int l23_cfg_supported() { return L23_OPT_TAP | L23_OPT_DBG; } static struct l23_app_info info = { .copyright = "Copyright (C) 2010 Andreas Eversberg\n", .cfg_supported = l23_cfg_supported, }; struct l23_app_info *l23_app_info() { return &info; }