mirror of
https://gitlab.com/mobian1/eg25-manager.git
synced 2025-08-29 07:12:08 +02:00
Most of the modem issues follow a (incomplete) USB device reset. Instead of relying solely on the existing timer, this patch adds a udev monitor which resets the modem as soon as its associated USB device is reset, which greatly improves recovery time.
20 lines
395 B
Meson
20 lines
395 B
Meson
#
|
|
# Copyright (C) 2020 Arnaud Ferraris <arnaud.ferraris@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
executable (
|
|
'eg25manager',
|
|
[
|
|
'at.c', 'at.h',
|
|
'gpio.c', 'gpio.h',
|
|
'manager.c', 'manager.h',
|
|
'mm-iface.c', 'mm-iface.h',
|
|
'suspend.c', 'suspend.h',
|
|
'udev.c', 'udev.h',
|
|
],
|
|
dependencies : mgr_deps,
|
|
install : true
|
|
)
|