editline 0.0.24

A platform-agnostic line editor with history and full editing capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set -e

# Build the STM32H753ZI USB REPL example
echo "Building STM32H753ZI USB REPL example..."
cargo build \
    --example stm32h753zi_usb_repl \
    --no-default-features \
    --features stm32h753zi \
    --release \
    --target thumbv7em-none-eabihf

echo "Build complete! Binary at: target/thumbv7em-none-eabihf/release/examples/stm32h753zi_usb_repl"