libpo32 v0.3.0
A small C99 library for Teenage Engineering PO-32 acoustic data transfersand drum synthesis.li 2026-9-3 12:7:46 Author: kitploit.com(查看原文) 阅读量:3 收藏

Tests Codecov FOSSA Status

A small C99 library for Teenage Engineering PO-32 acoustic data transfers and drum synthesis.

libpo32 reimplements the PO-32 Tonic transfer stack and a compatible drum voice model. It is not a full PO-32 firmware or UI emulator; it covers the packet format, acoustic modem, frame decoder, and local drum synthesis needed to build, send, receive, and preview PO-32 transfers.

Contents

Overview

AreaWhat libpo32 provides
Transfer protocolBuild and parse PO-32 patch, pattern, and state packets
Acoustic modemRender transfer frames to DPSK audio for playback into the device
DecoderRecover normalized frames and packets from transfer audio
Drum synthesisRender the PO-32's 21-parameter drum voice locally for preview and testing

The core is freestanding C99: no libc runtime, no external DSP libraries, no platform audio APIs, no file I/O. Only the freestanding headers <stddef.h> and <stdint.h> are used. Suitable for embedded targets and bare-metal environments.

Using It With a PO-32

The PO-32 is not receiving finished drum audio when you transfer a sound or a pattern. It receives structured data:

DataMeaning
Patch packetsThe two patch endpoints per instrument (Left and Right), with the destination instrument slot encoded in the packet
Pattern packetsWhich instruments trigger on which steps, with the destination pattern slot encoded as pattern_number
State packetTempo, swing, morph defaults, and the transferred pattern list

The device then uses its own internal synth engine to turn those parameters into sound.

At a high level, the workflow with real hardware is:

StepWhat you do
1Build a transfer in software from patch, pattern, and state data
2Render that transfer to a WAV or live audio stream
3Put the PO-32 into its normal receive/import flow
4Play the rendered transfer audio into the device
5The PO-32 decodes the packets and writes them to the sound or pattern slots named inside those packets

Getting Started

From the repository root, configure, build, run tests, then the demo:

cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build -j4
ctest --test-dir build --output-on-failure
./build/po32_demo

Optional, but recommended for local development:

./scripts/install-git-hooks.sh

That enables the repo-managed pre-commit hook, which runs clang-format on staged .c and .h files before each commit and validates commit subjects against Conventional Commits. The repo-managed pre-push hook runs the static analysis script before push.

The pre-commit hook requires clang-format 18 and fails on any other major version; see CONTRIBUTING.md for install options.

The demo builds a transfer frame, renders it to audio, decodes it back (verifying a lossless roundtrip), synthesizes a drum hit, and writes two WAV files: demo_modem.wav and demo_kick.wav.

Installing and Consuming

cmake --install ships the static library, headers, a CMake package, and a pkg-config file, so both consumption paths work out of the box:

find_package(LibPO32 0.2 REQUIRED)
target_link_libraries(app PRIVATE LibPO32::po32)
cc app.c $(pkg-config --cflags --libs po32) -lm

Examples

CommandPurpose
./build/po32_exampleMinimal roundtrip: encode, render, decode, and verify
./build/po32_demoEnd-to-end demo: transfer frame build/render/decode plus local drum synthesis
./build/po32_pattern_editorInteractive PO-32 pattern editing and WAV export
./build/po32_decode_capture <input.wav> <out-dir>Packet and pattern dumps from a transfer WAV

Projects Built with libpo32

ProjectWhat it does
Libpo32 for SchwungA 16-voice drum synthesizer module for Schwung on Ableton Move, powered by libpo32

Public API

Documentation

Project Layout

Contributing

See CONTRIBUTING.md for local setup, verification commands, and the Conventional Commits policy used for SemVer-friendly history.

License

Copyright (c) 2026 Eric Lewis. Licensed under the MIT License. See LICENSE.


文章来源: https://kitploit.com/en/posts/github-ericlewis-libpo32-030
如有侵权请联系:admin#unsafe.sh