Change literals to string const for strict discarded-qualifiers warnings (#2379)
- 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:
parent
53859a34fa
commit
88ae8f8473
218 changed files with 299 additions and 298 deletions
include
src
data.cdata_tag.c
devices
abmt.cacurite.cacurite_01185m.cakhan_100F14.calecto.cambient_weather.cambientweather_tx8300.cambientweather_wh31e.cant_antplus.carchos_tbh.catech_ws308.cauriol_4ld5661.cauriol_aft77b2.cauriol_afw2a1.cauriol_ahfl.cauriol_hg02832.cbadger_water.cblueline.cblyss.cbrennenstuhl_rcs_2044.cbresser_3ch.cbresser_5in1.cbresser_6in1.cbresser_7in1.cbt_rain.cburnhardbbq.ccalibeur.ccardin.ccavius.cced7000.cchuango.ccmr113.ccompanion_wtr001.ccotech_36_7959.ccurrent_cost.cdanfoss.cdigitech_xc0324.cdirectv.cdish_remote_6_3.cdsc.cecodhome.cecowitt.cefergy_e2_classic.cefergy_optical.cefth800.celro_db286a.celv.cemax.cemontx.cemos_e6016.cemos_e6016_rain.cenocean_erp1.cert_idm.cert_scm.cesa.cesic_emt7110.cesperanza_ews.ceurochron.cfineoffset.cfineoffset_wh1050.cfineoffset_wh1080.cfineoffset_wh31l.cfineoffset_wh45.cfineoffset_wn34.cfineoffset_ws80.cflex.cflowis.cfordremote.cfs20.cft004b.cfunkbus.cgasmate_ba1008.cge_coloreffects.cgeneric_motion.cgeneric_remote.cgeneric_temperature_sensor.cgeo_minim.cgovee.cgt_tmbbq05.cgt_wt_02.cgt_wt_03.chcs200.chideki.cholman_ws5029.chondaremote.choneywell.choneywell_cm921.choneywell_wdb.cht680.cibis_beacon.cikea_sparsnas.cinfactory.cinkbird_ith20r.cinovalley-kw9015b.cinsteon.c
|
@ -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);
|
||||
|
|
|
@ -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').
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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};
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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
Loading…
Add table
Reference in a new issue