Jenkins build fix

This commit is contained in:
Sebastien
2019-10-02 16:42:42 -04:00
parent ee0415dabf
commit 4ca8bf2e76
2 changed files with 2 additions and 5 deletions

View File

@@ -58,7 +58,7 @@ Contains the freeRTOS task and all necessary support
#include "esp_app_format.h"
#include "driver/gpio.h"
#include "driver/adc.h"
#include "CJson.h"
#include "cJSON.h"
#ifndef RECOVERY_APPLICATION
#define RECOVERY_APPLICATION 0
@@ -419,11 +419,8 @@ void wifi_manager_generate_ip_info_json(update_reason_code_t update_reason_code)
}
#if RECOVERY_APPLICATION
cJSON_AddItemToObject(ip_info_cjson, "ota_dsc", cJSON_CreateString(ota_get_status()));
cJSON_AddNumberToObject(ip_info_cjson,"ota_pct", ota_get_pct_complete() );
#endif
cJSON_AddItemToObject(ip_info_cjson, "Jack", cJSON_CreateString(JACK_LEVEL));
cJSON_AddNumberToObject(ip_info_cjson,"Voltage", adc1_get_raw(ADC1_CHANNEL_7) / 4095. * (10+174)/10. * 1.1);