dmrconfig/src/radio.rs

163 lines
4.1 KiB
Rust

use std::ffi::{CStr, CString};
use libc::{c_char, c_int};
use std::os::unix::io::AsRawFd;
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
#[repr(C)]
pub struct radio_tab_t {
ident: *const c_char,
device: *const radio_device_t,
}
extern {
fn radio_connect() -> *const radio_device_t;
fn radio_download(device: *const radio_device_t);
fn radio_upload(device: *const radio_device_t, cont_flag: c_int);
fn radio_verify_config(device: *const radio_device_t);
fn radio_print_version(device: *const radio_device_t, stdout: *const libc::FILE);
fn radio_print_config(device: *const radio_device_t, file: *const libc::FILE, verbose: c_int);
fn radio_read_image(filename: *const c_char) -> *const radio_device_t;
fn radio_save_image(device: *const radio_device_t, filename: *const c_char);
fn radio_parse_config(device: *const radio_device_t, filename: *const c_char);
fn radio_write_csv(device: *const radio_device_t, filename: *const c_char);
fn dfu_reboot();
fn dfu_close();
fn hid_close();
fn serial_close();
fn get_radio_tab() -> *const radio_tab_t;
}
/// Connect to the radio via the serial port.
/// Identify the type of device.
pub fn connect() -> *const radio_device_t {
unsafe {
radio_connect()
}
}
/// Close the serial port.
pub fn disconnect() {
eprintln!("Close device.");
unsafe {
// Restore the normal radio mode.
dfu_reboot();
dfu_close();
hid_close();
serial_close();
}
}
/// Read firmware image from the device
pub fn download(device: *const radio_device_t) {
unsafe {
radio_download(device)
}
}
/// Write firmware image to the device.
pub fn upload(device: *const radio_device_t, cont_flag: c_int) {
unsafe {
radio_upload(device, cont_flag)
}
}
/// List all supported radios.
pub fn list() {
println!("Supported radios:");
unsafe {
let mut ptr = get_radio_tab();
loop {
let ident_ptr = (*ptr).ident;
if ident_ptr.is_null() {
break;
}
let name_ptr = (*(*ptr).device).name;
let name = CStr::from_ptr(name_ptr).to_str().unwrap().to_string();
println!(" {}", name);
ptr = ptr.offset(1);
}
}
}
/// Check the configuration.
pub fn verify_config(device: *const radio_device_t) {
unsafe {
radio_verify_config(device);
}
}
/// Read firmware image from the binary file.
pub fn read_image(filename: &str) -> *const radio_device_t {
let filename = CString::new(filename.to_string()).unwrap();
unsafe {
radio_read_image(filename.as_ptr())
}
}
/// Save firmware image to the binary file.
pub fn save_image(device: *const radio_device_t, filename: &str) {
let filename = CString::new(filename.to_string()).unwrap();
unsafe {
radio_save_image(device, filename.as_ptr())
}
}
/// Read the configuration from text file, and modify the firmware.
pub fn parse_config(device: *const radio_device_t, filename: &str) {
let filename = CString::new(filename.to_string()).unwrap();
unsafe {
radio_parse_config(device, filename.as_ptr())
}
}
/// Print full information about the device configuration.
pub fn print_config(device: *const radio_device_t, filename: &str) {
let file = std::fs::File::create(filename).unwrap();
let fd = file.as_raw_fd();
let mode = CString::new("w").unwrap();
unsafe {
let file =libc::fdopen(fd, mode.as_ptr());
radio_print_config(device, file, 1);
libc::fclose(file);
}
}
pub fn print_config_to_stdout(device: *const radio_device_t) {
let mode = CString::new("w").unwrap();
unsafe {
let stdout = libc::fdopen(libc::STDOUT_FILENO, mode.as_ptr());
let verbosity = if libc::isatty(libc::STDOUT_FILENO) == 1 {
0
} else {
1
};
radio_print_config(device, stdout, verbosity);
}
}
/// Print generic information about the device.
pub fn print_version(device: *const radio_device_t) {
let mode = CString::new("w").unwrap();
unsafe {
radio_print_version(device, libc::fdopen(libc::STDOUT_FILENO, mode.as_ptr()));
}
}
/// Update CSV contacts database.
pub fn write_csv(device: *const radio_device_t, filename: &str) {
let filename = CString::new(filename.to_string()).unwrap();
unsafe {
radio_write_csv(device, filename.as_ptr());
}
}