ether2ser 0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
Loading...
Searching...
No Matches
event_loop.h
Go to the documentation of this file.
1/*
2 * ether2ser - Ethernet <-> synchronous V.24 (RS-232/V.28) bridge
3 *
4 * File: src/system/event_loop.h
5 * Purpose: Event loop entry-point declaration.
6 *
7 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Copyright (c) 2026 Florian <f.leuze@outlook.de>
10 */
11
12#ifndef EVENT_LOOP_H
13#define EVENT_LOOP_H
14
15// Related headers
16
17// Standard library headers
18
19// Library Headers
20
21// Project Headers
22#include "system/app_context.h"
23
24// Generated headers
25
30void event_loop(app_ctx_t* app);
31
32#endif /* EVENT_LOOP_H */
void event_loop(app_ctx_t *app)
Run the main application polling loop.
Definition event_loop.c:383
Global application context shared across modules.
Definition app_context.h:98