cleanup some compiler warnings

This commit is contained in:
cyberman54 2020-12-22 20:06:16 +01:00
parent 457d46529b
commit f93594e964
4 changed files with 5 additions and 5 deletions

View File

@ -253,8 +253,8 @@ esp_err_t register_ble_callback(bool unregister = false) {
.scan_interval = .scan_interval =
(uint16_t)(cfg.blescantime * 10 / 0.625), // Time = N * 0.625 msec (uint16_t)(cfg.blescantime * 10 / 0.625), // Time = N * 0.625 msec
.scan_window = .scan_window =
(uint16_t)(BLESCANWINDOW / 0.625) // Time = N * 0.625 msec (uint16_t)(BLESCANWINDOW / 0.625), // Time = N * 0.625 msec
}; .scan_duplicate = BLE_SCAN_DUPLICATE_ENABLE};
ESP_LOGI(TAG, "Set GAP scan parameters"); ESP_LOGI(TAG, "Set GAP scan parameters");

View File

@ -5,7 +5,7 @@
// Local logging tag // Local logging tag
static const char TAG[] = __FILE__; static const char TAG[] = __FILE__;
bmeStatus_t bme_status = {0}; bmeStatus_t bme_status = {0, 0, 0, 0, 0, 0, 0, 0};
Ticker bmecycler; Ticker bmecycler;

View File

@ -267,7 +267,7 @@ void set_macfilter(uint8_t val[]) {
void set_rgblum(uint8_t val[]) { void set_rgblum(uint8_t val[]) {
// Avoid wrong parameters // Avoid wrong parameters
cfg.rgblum = (val[0] >= 0 && val[0] <= 100) ? (uint8_t)val[0] : RGBLUMINOSITY; cfg.rgblum = (val[0] <= 100) ? (uint8_t)val[0] : RGBLUMINOSITY;
ESP_LOGI(TAG, "Remote command: set RGB Led luminosity %d", cfg.rgblum); ESP_LOGI(TAG, "Remote command: set RGB Led luminosity %d", cfg.rgblum);
}; };

View File

@ -82,7 +82,7 @@ void IRAM_ATTR timesync_processReq(void *taskparameter) {
} }
// collect timestamp samples in timestamp array // collect timestamp samples in timestamp array
for (uint8_t i = 0; i < TIME_SYNC_SAMPLES; i++) { for (int8_t i = 0; i < TIME_SYNC_SAMPLES; i++) {
// send timesync request // send timesync request
#if (TIME_SYNC_LORASERVER) // ask user's timeserver (for LoRAWAN < 1.0.3) #if (TIME_SYNC_LORASERVER) // ask user's timeserver (for LoRAWAN < 1.0.3)