Change literals to string const for strict discarded-qualifiers warnings ()

- Change hard coded strings are "const" so any variable pointing to them must also have the const specifier to avoid a warning (from -Wdiscarded-qualifiers)
- Change local variables manipulating constant strings must also have the const qualifier
- Change hostport_param, fix remaining hostport_param args

Co-authored-by: Christian W. Zuckschwerdt <christian@zuckschwerdt.org>
This commit is contained in:
obones 2023-02-15 22:12:18 +01:00 committed by GitHub
parent 53859a34fa
commit 88ae8f8473
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
218 changed files with 299 additions and 298 deletions

View file

@ -128,7 +128,7 @@ R_API data_t *data_prepend(data_t *first, const char *key, const char *pretty_ke
@return The constructed data array object, typically placed inside a data_t or NULL
if there was a memory allocation error.
*/
R_API data_array_t *data_array(int num_values, data_type_t type, void *ptr);
R_API data_array_t *data_array(int num_values, data_type_t type, void const *ptr);
/** Releases a data array. */
R_API void data_array_free(data_array_t *array);

View file

@ -86,7 +86,7 @@ double arg_float(char const *str, char const *error_hint);
/// also "//localhost", "//localhost:514", "//:514".
/// Host or port are terminated at a comma, if found.
/// @return the remaining options
char *hostport_param(char *param, char **host, char **port);
char *hostport_param(char *param, char const **host, char const **port);
/// Convert a string to an unsigned integer, uses strtod() and accepts
/// metric suffixes of 'k', 'M', and 'G' (also 'K', 'm', and 'g').

View file

@ -59,7 +59,7 @@ typedef struct r_device {
unsigned protocol_num; ///< fixed sequence number, assigned in main().
/* information provided by each decoder */
char *name;
char const *name;
unsigned modulation;
float short_width;
float long_width;
@ -71,7 +71,7 @@ typedef struct r_device {
struct r_device *(*create_fn)(char *args);
unsigned priority; ///< Run later and only if no previous events were produced
unsigned disabled; ///< 0: default enabled, 1: default disabled, 2: disabled, 3: disabled and hidden
char **fields; ///< List of fields this decoder produces; required for CSV output. NULL-terminated.
char const **fields; ///< List of fields this decoder produces; required for CSV output. NULL-terminated.
/* public for each decoder */
int verbose;

View file

@ -91,7 +91,7 @@ static data_meta_type_t dmt[DATA_COUNT] = {
.value_release = (value_release_fn) data_array_free },
};
static bool import_values(void *dst, void *src, int num_values, data_type_t type)
static bool import_values(void *dst, void const *src, int num_values, data_type_t type)
{
int element_size = dmt[type].array_element_size;
array_elementwise_import_fn import = dmt[type].array_elementwise_import;
@ -117,7 +117,7 @@ static bool import_values(void *dst, void *src, int num_values, data_type_t type
/* data */
R_API data_array_t *data_array(int num_values, data_type_t type, void *values)
R_API data_array_t *data_array(int num_values, data_type_t type, void const *values)
{
if (num_values < 0) {
return NULL;

View file

@ -172,8 +172,8 @@ data_tag_t *data_tag_create(char *param, struct mg_mgr *mgr)
int gpsd_mode = strncmp(tag->val, "gpsd", 4) == 0;
if (gpsd_mode || strncmp(tag->val, "tcp:", 4) == 0) {
p = arg_param(tag->val); // strip scheme
char *host = gpsd_mode ? "localhost" : NULL;
char *port = gpsd_mode ? "2947" : NULL;
char const *host = gpsd_mode ? "localhost" : NULL;
char const *port = gpsd_mode ? "2947" : NULL;
char *opts = hostport_param(p, &host, &port);
list_t includes = {0};

View file

@ -81,7 +81,7 @@ static int abmt_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -1547,7 +1547,7 @@ static int acurite_986_decode(r_device *decoder, bitbuffer_t *bitbuffer)
int8_t tempf; // Raw Temp is 8 bit signed Fahrenheit
uint16_t sensor_id, valid_cnt = 0;
char sensor_type;
char *channel_str;
char const *channel_str;
int battery_low;
data_t *data;
@ -1861,7 +1861,7 @@ static int acurite_00275rm_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return result;
}
static char *acurite_rain_gauge_output_fields[] = {
static char const *acurite_rain_gauge_output_fields[] = {
"model",
"id",
"rain_mm",
@ -1880,7 +1880,7 @@ r_device const acurite_rain_896 = {
.fields = acurite_rain_gauge_output_fields,
};
static char *acurite_th_output_fields[] = {
static char const *acurite_th_output_fields[] = {
"model",
"id",
"battery_ok",
@ -1906,7 +1906,7 @@ r_device const acurite_th = {
* For Acurite 592 TXR Temp/Humidity, but
* Should match Acurite 592TX, 5-n-1, etc.
*/
static char *acurite_txr_output_fields[] = {
static char const *acurite_txr_output_fields[] = {
"model",
"message_type", // TODO: remove this
"id",
@ -1957,7 +1957,7 @@ r_device const acurite_txr = {
* A transmission consists of two packets that run into each other.
* There should be 40 bits of data though. But the last bit can't be detected.
*/
static char *acurite_986_output_fields[] = {
static char const *acurite_986_output_fields[] = {
"model",
"id",
"channel",
@ -1986,7 +1986,7 @@ r_device const acurite_986 = {
*
*/
static char *acurite_606_output_fields[] = {
static char const *acurite_606_output_fields[] = {
"model",
"id",
"battery_ok",
@ -1995,7 +1995,7 @@ static char *acurite_606_output_fields[] = {
NULL,
};
static char *acurite_590_output_fields[] = {
static char const *acurite_590_output_fields[] = {
"model",
"id",
"battery_ok",
@ -2023,7 +2023,7 @@ r_device const acurite_606 = {
.fields = acurite_606_output_fields,
};
static char *acurite_00275rm_output_fields[] = {
static char const *acurite_00275rm_output_fields[] = {
"model",
"subtype",
"id",

View file

@ -114,7 +114,7 @@ static int acurite_01185m_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return result;
}
static char *acurite_01185m_output_fields[] = {
static char const *acurite_01185m_output_fields[] = {
"model",
"id",
"channel",

View file

@ -26,7 +26,7 @@ static int akhan_rke_callback(r_device *decoder, bitbuffer_t *bitbuffer)
uint8_t *b;
int id;
int cmd;
char *cmd_str;
char const *cmd_str;
if (bitbuffer->bits_per_row[0] != 25)
return DECODE_ABORT_LENGTH;
@ -62,7 +62,7 @@ static int akhan_rke_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"data",

View file

@ -208,7 +208,7 @@ static int alectov1_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return DECODE_FAIL_SANITY;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -157,7 +157,7 @@ static int ambient_weather_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -118,7 +118,7 @@ static int ambientweather_tx8300_callback(r_device *decoder, bitbuffer_t *bitbuf
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -356,7 +356,7 @@ static int ambientweather_whx_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return events;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -139,7 +139,7 @@ static int ant_antplus_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"network",
"channel",

View file

@ -212,7 +212,7 @@ static int archos_tbh_decode(r_device *decoder, bitbuffer_t *bitbuffer)
}
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -119,7 +119,7 @@ static int atech_ws308_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -77,7 +77,7 @@ static int auriol_4ld5661_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -137,7 +137,7 @@ static int auriol_aft77_b2_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -105,7 +105,7 @@ static int auriol_afw2a1_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -96,7 +96,7 @@ static int auriol_ahfl_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -89,7 +89,7 @@ static int auriol_hg02832_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -138,7 +138,7 @@ static int badger_orion_decode(r_device *decoder, bitbuffer_t *bitbuffer)
}
// Note: At this time the exact meaning of the flags is not known.
static char *badger_output_fields[] = {
static char const *badger_output_fields[] = {
"model",
"id",
"flags_1",

View file

@ -384,7 +384,7 @@ static int blueline_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return ((payloads_decoded > 0) ? payloads_decoded : most_applicable_failure);
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"flags",

View file

@ -56,7 +56,7 @@ static int blyss_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return DECODE_FAIL_SANITY;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
NULL,

View file

@ -67,7 +67,7 @@ static int brennenstuhl_rcs_2044_process_row(r_device *decoder, bitbuffer_t *bit
* so we can use it for validation of the message:
* ONLY ONE KEY AT A TIME IS ACCEPTED.
*/
char *key = NULL;
char const *key = NULL;
if (control_key == 0x10)
key = "A";
else if (control_key == 0x08)
@ -113,7 +113,7 @@ static int brennenstuhl_rcs_2044_callback(r_device *decoder, bitbuffer_t *bitbuf
return counter;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"key",

View file

@ -95,7 +95,7 @@ static int bresser_3ch_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -160,7 +160,7 @@ static int bresser_5in1_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -218,7 +218,7 @@ static int bresser_6in1_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -134,7 +134,7 @@ static int bresser_7in1_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -84,7 +84,7 @@ static int bt_rain_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -73,7 +73,7 @@ static int burnhardbbq_decode(r_device *decoder, bitbuffer_t *bitbuffer)
char timer_str[6];
sprintf(timer_str, "%02x:%02x", b[3], b[4] & 0x7f);
char *meat;
char const *meat;
switch (b[5] >> 4) {
case 0: meat = "free"; break;
case 1: meat = "beef"; break;
@ -86,7 +86,7 @@ static int burnhardbbq_decode(r_device *decoder, bitbuffer_t *bitbuffer)
default: meat = "";
}
char *taste;
char const *taste;
switch (b[5] & 0x0f) {
case 0: taste = "rare"; break;
case 1: taste = "medium rare"; break;
@ -119,7 +119,7 @@ static int burnhardbbq_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -116,7 +116,7 @@ static int calibeur_rf104_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -109,7 +109,7 @@ static int cardin_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"dipswitch",
"rbutton",

View file

@ -81,7 +81,7 @@ static int cavius_decode(r_device *decoder, bitbuffer_t *bitbuffer)
int batt_low = (b[4] & cavius_battlow) != 0;
int message = (b[4] & ~cavius_battlow); // exclude batt_low bit
char *text = batt_low ? "Battery low" : "Unknown";
char const *text = batt_low ? "Battery low" : "Unknown";
switch (message) {
case cavius_alarm:
text = "Fire alarm";
@ -118,7 +118,7 @@ static int cavius_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -93,7 +93,7 @@ static int ced7000_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"count",

View file

@ -36,7 +36,7 @@ static int chuango_callback(r_device *decoder, bitbuffer_t *bitbuffer)
uint8_t *b;
int id;
int cmd;
char *cmd_str;
char const *cmd_str;
if (bitbuffer->bits_per_row[0] != 25)
return DECODE_ABORT_LENGTH;
@ -87,7 +87,7 @@ static int chuango_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"cmd",

View file

@ -109,7 +109,7 @@ static int cmr113_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"current_1_A",
"current_2_A",

View file

@ -127,7 +127,7 @@ static int companion_wtr001_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"temperature_C",
"mic",

View file

@ -133,7 +133,7 @@ static int cotech_36_7959_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *cotech_36_7959_output_fields[] = {
static char const *cotech_36_7959_output_fields[] = {
"model",
//"subtype",
"id",

View file

@ -114,7 +114,7 @@ static int current_cost_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 0;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"subtype",

View file

@ -118,7 +118,7 @@ static int danfoss_cfr_callback(r_device *decoder, bitbuffer_t *bitbuffer)
// Decode data
unsigned id = (bytes[1] << 8) | bytes[2];
char *str_sw;
char const *str_sw;
switch (bytes[3] & 0x0F) {
case 2: str_sw = "DAY"; break;
case 4: str_sw = "TIMER"; break;
@ -147,7 +147,7 @@ static int danfoss_cfr_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return DECODE_ABORT_LENGTH;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -208,7 +208,7 @@ static int digitech_xc0324_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return events > 0 ? events : ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -360,7 +360,7 @@ static int directv_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"button_id",

View file

@ -30,7 +30,7 @@ X = unknown, possibly channel
#define MYDEVICE_BITLEN 16
#define MYDEVICE_MINREPEATS 3
char *button_map[] = {
char const *button_map[] = {
/* 0 */ "Undefined",
/* 1 */ "Undefined",
/* 2 */ "Swap",
@ -103,7 +103,7 @@ static int dish_remote_6_3_callback(r_device *decoder, bitbuffer_t *bitbuffer)
int r; // a row index
uint8_t *b; // bits of a row
uint8_t button;
char *button_string;
char const *button_string;
decoder_log_bitbuffer(decoder, 2, __func__, bitbuffer, "");
@ -133,7 +133,7 @@ static int dish_remote_6_3_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"button",
NULL,

View file

@ -244,7 +244,7 @@ static int dsc_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return result;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"closed",

View file

@ -171,7 +171,7 @@ static int ecodhome_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"message_type",

View file

@ -106,7 +106,7 @@ static int ecowitt_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -110,7 +110,7 @@ static int efergy_e2_classic_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -124,7 +124,7 @@ static int efergy_optical_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"pulses",

View file

@ -121,7 +121,7 @@ static int eurochron_efth800_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -49,7 +49,7 @@ static int elro_db286a_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
NULL,

View file

@ -95,7 +95,7 @@ static int em1000_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *elv_em1000_output_fields[] = {
static char const *elv_em1000_output_fields[] = {
"model",
"id",
"seq",
@ -175,7 +175,7 @@ static int ws2000_callback(r_device *decoder, bitbuffer_t *bitbuffer)
uint8_t dec[16]= {0};
uint8_t nibbles=0;
uint8_t bit=11; // preamble
char *types[]={"!AS3", "AS2000/ASH2000/S2000/S2001A/S2001IA/ASH2200/S300IA", "!S2000R", "!S2000W", "S2001I/S2001ID", "!S2500H", "!Pyrano", "KS200/KS300"};
char const *types[]={"!AS3", "AS2000/ASH2000/S2000/S2001A/S2001IA/ASH2200/S300IA", "!S2000R", "!S2000W", "S2001I/S2001ID", "!S2500H", "!Pyrano", "KS200/KS300"};
uint8_t length[16] = {5, 8, 5, 8, 12, 9, 8, 14, 8};
uint8_t check_calculated=0, sum_calculated=0;
uint8_t i;
@ -219,7 +219,7 @@ static int ws2000_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return DECODE_FAIL_MIC;
}
char *subtype = (dec[0] <= 7) ? types[dec[0]] : "?";
char const *subtype = (dec[0] <= 7) ? types[dec[0]] : "?";
int code = dec[1] & 7;
float temp = ((dec[1] & 8) ? -1.0f : 1.0f) * (dec[4] * 10 + dec[3] + dec[2] * 0.1f);
float humidity = dec[7] * 10 + dec[6] + dec[5] * 0.1f;
@ -263,7 +263,7 @@ static int ws2000_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *elv_ws2000_output_fields[] = {
static char const *elv_ws2000_output_fields[] = {
"model",
"id",
"subtype",

View file

@ -220,7 +220,7 @@ static int emax_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -138,7 +138,7 @@ static int emontx_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return events;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"node",
"ct1",

View file

@ -124,7 +124,7 @@ static int emos_e6016_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -99,7 +99,7 @@ static int emos_e6016_rain_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -90,7 +90,7 @@ static int enocean_erp1_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"telegram",
"mic",

View file

@ -36,7 +36,7 @@ http://www.gridinsight.com/community/documentation/itron-ert-technology/
// Least significant nibble of endpoint_type is equivalent to SCM's endpoint type field
// id info from https://github.com/bemasher/rtlamr/wiki/Compatible-Meters
static char *get_meter_type_name(uint8_t ERTType)
static char const *get_meter_type_name(uint8_t ERTType)
{
switch (ERTType & 0x0f) {
case 4:
@ -244,7 +244,7 @@ static int ert_idm_decode(r_device *decoder, bitbuffer_t *bitbuffer)
// Least significant nibble of endpoint_type is equivalent to SCM's endpoint type field
// id info from https://github.com/bemasher/rtlamr/wiki/Compatible-Meters
char *meter_type = get_meter_type_name(ERTType);
char const *meter_type = get_meter_type_name(ERTType);
// decoder_logf(decoder, 0, __func__, "meter_type = %s", meter_type);
/*
@ -527,7 +527,7 @@ static int ert_netidm_decode(r_device *decoder, bitbuffer_t *bitbuffer)
}
*/
char *meter_type = get_meter_type_name(ERTType);
char const *meter_type = get_meter_type_name(ERTType);
// decoder_logf(decoder, 0, __func__, "meter_type = %s", meter_type);
@ -581,7 +581,7 @@ static int ert_netidm_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
// Common fields
"model",

View file

@ -95,7 +95,7 @@ static int ert_scm_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"physical_tamper",

View file

@ -87,7 +87,7 @@ static int esa_cost_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"impulses",

View file

@ -91,7 +91,7 @@ static int esic_emt7110_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"power_W",

View file

@ -112,7 +112,7 @@ static int esperanza_ews_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -83,7 +83,7 @@ static int eurochron_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -953,7 +953,7 @@ static int fineoffset_WH0530_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",
@ -962,7 +962,7 @@ static char *output_fields[] = {
NULL,
};
static char *output_fields_WH25[] = {
static char const *output_fields_WH25[] = {
"model",
"id",
"battery_ok",
@ -984,7 +984,7 @@ static char *output_fields_WH25[] = {
NULL,
};
static char *output_fields_WH51[] = {
static char const *output_fields_WH51[] = {
"model",
"id",
"battery_ok",
@ -996,7 +996,7 @@ static char *output_fields_WH51[] = {
NULL,
};
static char *output_fields_WH0530[] = {
static char const *output_fields_WH0530[] = {
"model",
"id",
"battery_ok",

View file

@ -120,7 +120,7 @@ static int fineoffset_wh1050_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -247,7 +247,7 @@ static int fineoffset_wh1080_callback(r_device *decoder, bitbuffer_t *bitbuffer,
// GETTING TIME DATA
int signal_type = ((br[2] & 0x0F) == 10);
char *signal_type_str = signal_type ? "DCF77" : "WWVB/MSF";
char const *signal_type_str = signal_type ? "DCF77" : "WWVB/MSF";
int hours = ((br[3] & 0x30) >> 4) * 10 + (br[3] & 0x0F);
int minutes = ((br[4] & 0xF0) >> 4) * 10 + (br[4] & 0x0F);
@ -326,7 +326,7 @@ static int fineoffset_wh1080_callback_fsk(r_device *decoder, bitbuffer_t *bitbuf
return fineoffset_wh1080_callback(decoder, bitbuffer, TYPE_FSK);
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"subtype",
"id",

View file

@ -125,7 +125,7 @@ static int fineoffset_wh31l_decode(r_device *decoder, bitbuffer_t *bitbuffer)
int s_dist = (b[5] & 0x3f);
int s_count = (b[6]);
char *state_str;
char const *state_str;
if (state == 0)
state_str = "reset";
else if (state == 1)
@ -154,7 +154,7 @@ static int fineoffset_wh31l_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -128,7 +128,7 @@ static int fineoffset_wh45_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -110,7 +110,7 @@ static int fineoffset_wn34_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -113,7 +113,7 @@ static int fineoffset_ws80_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -342,7 +342,7 @@ static int flex_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"count",
"num_rows",
@ -614,10 +614,11 @@ r_device *flex_create_device(char *spec)
if (!params->name)
FATAL_STRDUP("flex_create_device()");
int name_size = strlen(val) + 27;
dev->name = malloc(name_size);
if (!dev->name)
char* flex_name = malloc(name_size);
if (!flex_name)
FATAL_MALLOC("flex_create_device()");
snprintf(dev->name, name_size, "General purpose decoder '%s'", val);
snprintf(flex_name, name_size, "General purpose decoder '%s'", val);
dev->name = flex_name;
}
else if (!strcasecmp(key, "m") || !strcasecmp(key, "modulation"))
@ -718,7 +719,7 @@ r_device *flex_create_device(char *spec)
for (int g = 0; g < GETTER_SLOTS && params->getter[g].name; ++g) {
params->fields[i++] = params->getter[g].name;
}
dev->fields = (char **)params->fields;
dev->fields = params->fields;
}
// sanity checks

View file

@ -122,7 +122,7 @@ static int flowis_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"type",

View file

@ -62,7 +62,7 @@ static int fordremote_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return found;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"code",

View file

@ -122,7 +122,7 @@ static int fs20_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"housecode",
"address",

View file

@ -65,7 +65,7 @@ static int ft004b_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"temperature_C",
NULL,

View file

@ -160,7 +160,7 @@ static int funkbus_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return events;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -92,7 +92,7 @@ static int gasmate_ba1008_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"temperature_C",
"unknown_1",

View file

@ -157,7 +157,7 @@ static int ge_coloreffects_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return events > 0 ? events : ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"command",

View file

@ -62,7 +62,7 @@ static int generic_motion_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return DECODE_ABORT_EARLY;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"code",
NULL,

View file

@ -71,7 +71,7 @@ static int generic_remote_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"cmd",

View file

@ -60,7 +60,7 @@ static int generic_temperature_sensor_callback(r_device *decoder, bitbuffer_t *b
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -343,7 +343,7 @@ static int minim_decode(r_device *decoder, bitbuffer_t *bitbuffer)
}
// List of fields to appear in the `-F csv` output.
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"power_VA",

View file

@ -197,7 +197,7 @@ static int govee_decode(r_device *decoder, bitbuffer_t *bitbuffer)
// Strip off the upper nibble
event &= 0x0FFF;
char *event_str;
char const *event_str;
// Figure out what event was triggered
if (event == 0xafa) {
event_str = "Button Press";
@ -238,7 +238,7 @@ static int govee_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",
@ -348,7 +348,7 @@ static int govee_h5054_decode(r_device *decoder, bitbuffer_t *bitbuffer)
decoder_logf(decoder, 1, __func__, "event_data=%02x", event_data);
decoder_logf(decoder, 1, __func__, "crc_sum=%04x", crc_sum);
char *event_str;
char const *event_str;
int leak_num = -1;
int battery = -1;
switch (event) {

View file

@ -127,7 +127,7 @@ static int gt_tmbbq05_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_F",

View file

@ -115,7 +115,7 @@ static int gt_wt_02_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return counter;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -146,7 +146,7 @@ static int gt_wt_03_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -86,7 +86,7 @@ static int hcs200_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -226,7 +226,7 @@ static int hideki_ts04_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return ret;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -118,7 +118,7 @@ static int holman_ws5029pcm_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"temperature_C",

View file

@ -61,7 +61,7 @@ static int hondaremote_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 0;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"code",

View file

@ -123,7 +123,7 @@ static int honeywell_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -418,7 +418,7 @@ static int honeywell_cm921_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"ids",
#ifdef _DEBUG

View file

@ -48,7 +48,7 @@ static int honeywell_wdb_callback(r_device *decoder, bitbuffer_t *bitbuffer)
uint8_t *bytes;
data_t *data;
unsigned int device, tmp;
char *class, *alert;
char const *class, *alert;
// The device transmits many rows, check for 4 matching rows.
row = bitbuffer_find_repeated_row(bitbuffer, 4, 48);
@ -113,7 +113,7 @@ static int honeywell_wdb_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"subtype",
"id",

View file

@ -79,7 +79,7 @@ static int ht680_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 0;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"button1",

View file

@ -80,7 +80,7 @@ static int ibis_beacon_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"counter",

View file

@ -274,7 +274,7 @@ static int ikea_sparsnas_decode(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"sequence",

View file

@ -98,7 +98,7 @@ static int infactory_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"channel",

View file

@ -128,7 +128,7 @@ static int inkbird_ith20r_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
"id",
"battery",

View file

@ -74,7 +74,7 @@ static int kw9015b_callback(r_device *decoder, bitbuffer_t *bitbuffer)
return 1;
}
static char *kw9015b_csv_output_fields[] = {
static char const *kw9015b_csv_output_fields[] = {
"model",
"id",
"battery_ok",

View file

@ -321,7 +321,7 @@ static int parse_insteon_pkt(r_device *decoder, bitbuffer_t *bits, unsigned int
// (results[0] >> 2) & 0x03);
int pkt_type = (results[0] >> 5) & 0x07;
char *messsage_text[8] = {
char const *messsage_text[8] = {
"Direct Message", // 000
"ACK of Direct Message", // 001
"Group Cleanup Direct Message", // 010
@ -331,7 +331,7 @@ static int parse_insteon_pkt(r_device *decoder, bitbuffer_t *bits, unsigned int
"Group Broadcast Message", // 110
"NAK of Group Cleanup Direct Message"}; // 111
char *pkt_type_str = messsage_text[pkt_type];
char const *pkt_type_str = messsage_text[pkt_type];
// decoder_log_bitrow(decoder, 0, __func__, results, 8, "Flag");
//decoder_logf(decoder, 0, __func__, "pkt_type: %02X", pkt_type);
@ -458,7 +458,7 @@ static int insteon_callback(r_device *decoder, bitbuffer_t *bitbuffer)
*
*/
static char *output_fields[] = {
static char const *output_fields[] = {
"model",
// "id",
// "data",

Some files were not shown because too many files have changed in this diff Show more