ether2ser 0.1.0
Ethernet <-> synchronous V.24 bridge firmware for RP2040 + W5500
Loading...
Searching...
No Matches
blink.h
Go to the documentation of this file.
1/*
2 * ether2ser — Ethernet ↔ synchronous V.24 (RS-232/V.28) bridge
3 *
4 * File: src/examples/blink/blink.h
5 * Purpose: Interfaces for the blink example (PIO and APU helpers).
6 *
7 * SPDX-License-Identifier: Apache-2.0
8 *
9 * Copyright (c) 2026 Florian <f.leuze@outlook.de>
10 */
11
12#ifndef EXAMPLES_BLINK_H
13#define EXAMPLES_BLINK_H
14
15// Related headers
16
17// Standard library headers
18#include <stdio.h>
19
20// Project Headers
21#include "hardware/gpio.h"
22#include "hardware/pio.h"
23#include "pico/stdio.h"
24#include "pico/time.h"
25#include "pico/types.h"
26
27// Generated headers
28#include "led_blink.pio.h"
29
36void start_pio_led_blink(PIO pio, uint sm, uint pin);
37
42void start_cpu_led_blink(uint pin);
43
44#endif /* EXAMPLES_BLINK_H */