7 releases
0.1.7 | Jan 31, 2024 |
---|---|
0.1.6 | Jan 31, 2024 |
0.1.3 | Dec 13, 2023 |
0.1.1 | Oct 16, 2023 |
#1366 in Embedded development
35 downloads per month
51KB
1K
SLoC
RPi SIM868
Documentation
RPi SIM868 is a Rust crate designed to simplify interaction with the Waveshare SIM868 HAT for Raspberry Pi. It utilizes the Tokio runtime for managing asynchronous tasks and includes its own task scheduler based on a priority queue.
Each method call initiates a new task, which is enqueued with a priority to ensure swift execution as soon as the serial port becomes available.
Methods (except for HAT::turn_on
) return TaskJoinHandle<T>
, where T
represents the type resulting from parsing and analyzing the serial output, if applicable. Tasks related to phone calls are treated as first-class citizens with high priority, reducing delays in answering or concluding calls.
RPi SIM868 was conceived following a high-altitude balloon launch where the HAT served as a backup tracking device. The initial software, written in Python, lacked the performance and safety synonymous with Rust.
Tested SIM868 UART selection switch:
- A -
ttyUSBx
port - B -
ttySx
port.
Tested devices:
- RPi 3 Model B
- RPi 4 Model B
- RPi Zero W
- RPi Zero 2 W.
Dependencies
~9–22MB
~267K SLoC