mirror of
https://gitlab.com/mobian1/eg25-manager.git
synced 2025-08-29 07:12:08 +02:00
This commit prepares the use of device-specific configuration files. These files should be named after the device-tree `compatible` string with the `toml` extension. `eg25-manager` will search for config files in `<prefix>/etc/eg25-manager` first (or `/etc/eg25-manager` if prefix is `/usr`), then in `<prefix>/share/eg25-manager`.
18 lines
470 B
C
18 lines
470 B
C
/*
|
|
* Copyright (C) 2020 Arnaud Ferraris <arnaud.ferraris@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "manager.h"
|
|
|
|
int at_init(struct EG25Manager *data, toml_table_t *config);
|
|
void at_destroy(struct EG25Manager *data);
|
|
|
|
void at_sequence_configure(struct EG25Manager *data);
|
|
void at_sequence_suspend(struct EG25Manager *data);
|
|
void at_sequence_resume(struct EG25Manager *data);
|
|
void at_sequence_reset(struct EG25Manager *data);
|