mirror of
https://gitlab.com/hyperglitch/jellyfish.git
synced 2025-12-29 07:36:29 +00:00
24 lines
448 B
C
24 lines
448 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Igor Brkic <igor@hyperglitch.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifndef JF_ROUTING_H
|
|
#define JF_ROUTING_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
void jf_routing_output_en(bool en);
|
|
bool jf_routing_output_status(void);
|
|
|
|
void jf_routing_iso_en(bool en);
|
|
bool jf_routing_iso_status(void);
|
|
|
|
void jf_routing_extin_en(bool en);
|
|
bool jf_routing_extin_status(void);
|
|
|
|
void jf_routing_init();
|
|
|
|
#endif //JF_ROUTING_H
|