2018-08-20 22:47:13 -07:00
|
|
|
/*
|
|
|
|
* Configuration Utility for DMR radios.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Serge Vakulenko, KK6ABQ
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// Connect to the radio via the serial port.
|
|
|
|
// Identify the type of device.
|
|
|
|
//
|
2018-08-21 22:04:45 -07:00
|
|
|
void radio_connect(void);
|
2018-08-20 22:47:13 -07:00
|
|
|
|
|
|
|
//
|
|
|
|
// Close the serial port.
|
|
|
|
//
|
|
|
|
void radio_disconnect(void);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Read firmware image from the device.
|
|
|
|
//
|
|
|
|
void radio_download(void);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Write firmware image to the device.
|
|
|
|
//
|
|
|
|
void radio_upload(int cont_flag);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Print a generic information about the device.
|
|
|
|
//
|
|
|
|
void radio_print_version(FILE *out);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Print full information about the device configuration.
|
|
|
|
//
|
|
|
|
void radio_print_config(FILE *out, int verbose);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Read firmware image from the binary file.
|
|
|
|
//
|
|
|
|
void radio_read_image(char *filename);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Save firmware image to the binary file.
|
|
|
|
//
|
|
|
|
void radio_save_image(char *filename);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Read the configuration from text file, and modify the firmware.
|
|
|
|
//
|
|
|
|
void radio_parse_config(char *filename);
|
|
|
|
|
2018-08-31 18:19:53 -07:00
|
|
|
//
|
|
|
|
// Check the configuration.
|
|
|
|
//
|
|
|
|
void radio_verify_config();
|
|
|
|
|
2018-08-20 22:47:13 -07:00
|
|
|
//
|
|
|
|
// Device-dependent interface to the radio.
|
|
|
|
//
|
2018-08-29 17:44:46 -07:00
|
|
|
typedef struct _radio_device_t radio_device_t;
|
|
|
|
struct _radio_device_t {
|
2018-08-20 22:47:13 -07:00
|
|
|
const char *name;
|
2018-08-29 17:44:46 -07:00
|
|
|
void (*download)(radio_device_t *radio);
|
|
|
|
void (*upload)(radio_device_t *radio, int cont_flag);
|
|
|
|
int (*is_compatible)(radio_device_t *radio);
|
|
|
|
void (*read_image)(radio_device_t *radio, FILE *img);
|
|
|
|
void (*save_image)(radio_device_t *radio, FILE *img);
|
|
|
|
void (*print_version)(radio_device_t *radio, FILE *out);
|
|
|
|
void (*print_config)(radio_device_t *radio, FILE *out, int verbose);
|
2018-08-31 18:19:53 -07:00
|
|
|
int (*verify_config)(radio_device_t *radio);
|
2018-08-29 17:44:46 -07:00
|
|
|
void (*parse_parameter)(radio_device_t *radio, char *param, char *value);
|
|
|
|
int (*parse_header)(radio_device_t *radio, char *line);
|
|
|
|
int (*parse_row)(radio_device_t *radio, int table_id, int first_row, char *line);
|
2018-08-29 21:04:13 -07:00
|
|
|
void (*update_timestamp)(radio_device_t *radio);
|
2018-08-30 00:45:29 -07:00
|
|
|
int channel_count;
|
2018-08-29 17:44:46 -07:00
|
|
|
};
|
2018-08-20 22:47:13 -07:00
|
|
|
|
|
|
|
extern radio_device_t radio_md380; // TYT MD-380
|
2018-08-29 17:44:46 -07:00
|
|
|
extern radio_device_t radio_md2017; // TYT MD-2017
|
2018-08-20 22:47:13 -07:00
|
|
|
extern radio_device_t radio_uv380; // TYT MD-UV380
|
|
|
|
|
|
|
|
//
|
|
|
|
// Radio: memory contents.
|
|
|
|
//
|
|
|
|
extern unsigned char radio_mem[];
|
|
|
|
|
|
|
|
//
|
|
|
|
// File descriptor of serial port with programming cable attached.
|
|
|
|
//
|
|
|
|
int radio_port;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Read/write progress counter.
|
|
|
|
//
|
|
|
|
int radio_progress;
|