mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-03-18 13:52:07 +01:00
* move ADC_init() before start_http_server() because the UI reads the ADC * split SYSTEM_init() into separate functions. cleaned up nvs init. * fix my dumb INA260_init() memory leak * SYSTEM_init_peripherals() cleanup
155 lines
4.9 KiB
C
155 lines
4.9 KiB
C
|
|
#include "esp_event.h"
|
|
#include "esp_log.h"
|
|
#include "nvs_flash.h"
|
|
|
|
// #include "protocol_examples_common.h"
|
|
#include "main.h"
|
|
|
|
#include "asic_result_task.h"
|
|
#include "asic_task.h"
|
|
#include "create_jobs_task.h"
|
|
#include "esp_netif.h"
|
|
#include "system.h"
|
|
#include "http_server.h"
|
|
#include "nvs_config.h"
|
|
#include "serial.h"
|
|
#include "stratum_task.h"
|
|
#include "user_input_task.h"
|
|
#include "i2c_bitaxe.h"
|
|
#include "adc.h"
|
|
#include "nvs_device.h"
|
|
#include "self_test.h"
|
|
|
|
static GlobalState GLOBAL_STATE = {
|
|
.extranonce_str = NULL,
|
|
.extranonce_2_len = 0,
|
|
.abandon_work = 0,
|
|
.version_mask = 0,
|
|
.ASIC_initalized = false
|
|
};
|
|
|
|
static const char * TAG = "bitaxe";
|
|
|
|
void app_main(void)
|
|
{
|
|
ESP_LOGI(TAG, "Welcome to the bitaxe - hack the planet!");
|
|
|
|
// Init I2C
|
|
ESP_ERROR_CHECK(i2c_bitaxe_init());
|
|
ESP_LOGI(TAG, "I2C initialized successfully");
|
|
|
|
//wait for I2C to init
|
|
vTaskDelay(100 / portTICK_PERIOD_MS);
|
|
|
|
//Init ADC
|
|
ADC_init();
|
|
|
|
//initialize the ESP32 NVS
|
|
if (NVSDevice_init() != ESP_OK){
|
|
ESP_LOGE(TAG, "Failed to init NVS");
|
|
return;
|
|
}
|
|
|
|
//parse the NVS config into GLOBAL_STATE
|
|
if (NVSDevice_parse_config(&GLOBAL_STATE) != ESP_OK) {
|
|
ESP_LOGE(TAG, "Failed to parse NVS config");
|
|
return;
|
|
}
|
|
|
|
//should we run the self test?
|
|
if (should_test(&GLOBAL_STATE)) {
|
|
self_test((void *) &GLOBAL_STATE);
|
|
vTaskDelay(60 * 60 * 1000 / portTICK_PERIOD_MS);
|
|
}
|
|
|
|
SYSTEM_init_system(&GLOBAL_STATE);
|
|
|
|
// pull the wifi credentials and hostname out of NVS
|
|
char * wifi_ssid = nvs_config_get_string(NVS_CONFIG_WIFI_SSID, WIFI_SSID);
|
|
char * wifi_pass = nvs_config_get_string(NVS_CONFIG_WIFI_PASS, WIFI_PASS);
|
|
char * hostname = nvs_config_get_string(NVS_CONFIG_HOSTNAME, HOSTNAME);
|
|
|
|
// copy the wifi ssid to the global state
|
|
strncpy(GLOBAL_STATE.SYSTEM_MODULE.ssid, wifi_ssid, sizeof(GLOBAL_STATE.SYSTEM_MODULE.ssid));
|
|
GLOBAL_STATE.SYSTEM_MODULE.ssid[sizeof(GLOBAL_STATE.SYSTEM_MODULE.ssid)-1] = 0;
|
|
|
|
// init and connect to wifi
|
|
wifi_init(wifi_ssid, wifi_pass, hostname);
|
|
|
|
SYSTEM_init_peripherals(&GLOBAL_STATE);
|
|
|
|
xTaskCreate(SYSTEM_task, "SYSTEM_task", 4096, (void *) &GLOBAL_STATE, 3, NULL);
|
|
xTaskCreate(POWER_MANAGEMENT_task, "power mangement", 8192, (void *) &GLOBAL_STATE, 10, NULL);
|
|
|
|
//start the API for AxeOS
|
|
start_rest_server((void *) &GLOBAL_STATE);
|
|
EventBits_t result_bits = wifi_connect();
|
|
|
|
if (result_bits & WIFI_CONNECTED_BIT) {
|
|
ESP_LOGI(TAG, "Connected to SSID: %s", wifi_ssid);
|
|
strncpy(GLOBAL_STATE.SYSTEM_MODULE.wifi_status, "Connected!", 20);
|
|
} else if (result_bits & WIFI_FAIL_BIT) {
|
|
ESP_LOGE(TAG, "Failed to connect to SSID: %s", wifi_ssid);
|
|
|
|
strncpy(GLOBAL_STATE.SYSTEM_MODULE.wifi_status, "Failed to connect", 20);
|
|
// User might be trying to configure with AP, just chill here
|
|
ESP_LOGI(TAG, "Finished, waiting for user input.");
|
|
while (1) {
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
}
|
|
} else {
|
|
ESP_LOGE(TAG, "UNEXPECTED EVENT");
|
|
strncpy(GLOBAL_STATE.SYSTEM_MODULE.wifi_status, "unexpected error", 20);
|
|
// User might be trying to configure with AP, just chill here
|
|
ESP_LOGI(TAG, "Finished, waiting for user input.");
|
|
while (1) {
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
}
|
|
}
|
|
|
|
free(wifi_ssid);
|
|
free(wifi_pass);
|
|
free(hostname);
|
|
|
|
// set the startup_done flag
|
|
GLOBAL_STATE.SYSTEM_MODULE.startup_done = true;
|
|
GLOBAL_STATE.new_stratum_version_rolling_msg = false;
|
|
|
|
xTaskCreate(USER_INPUT_task, "user input", 8192, (void *) &GLOBAL_STATE, 5, NULL);
|
|
|
|
if (GLOBAL_STATE.ASIC_functions.init_fn != NULL) {
|
|
wifi_softap_off();
|
|
|
|
queue_init(&GLOBAL_STATE.stratum_queue);
|
|
queue_init(&GLOBAL_STATE.ASIC_jobs_queue);
|
|
|
|
SERIAL_init();
|
|
(*GLOBAL_STATE.ASIC_functions.init_fn)(GLOBAL_STATE.POWER_MANAGEMENT_MODULE.frequency_value, GLOBAL_STATE.asic_count);
|
|
SERIAL_set_baud((*GLOBAL_STATE.ASIC_functions.set_max_baud_fn)());
|
|
SERIAL_clear_buffer();
|
|
|
|
GLOBAL_STATE.ASIC_initalized = true;
|
|
|
|
xTaskCreate(stratum_task, "stratum admin", 8192, (void *) &GLOBAL_STATE, 5, NULL);
|
|
xTaskCreate(create_jobs_task, "stratum miner", 8192, (void *) &GLOBAL_STATE, 10, NULL);
|
|
xTaskCreate(ASIC_task, "asic", 8192, (void *) &GLOBAL_STATE, 10, NULL);
|
|
xTaskCreate(ASIC_result_task, "asic result", 8192, (void *) &GLOBAL_STATE, 15, NULL);
|
|
}
|
|
}
|
|
|
|
void MINER_set_wifi_status(wifi_status_t status, uint16_t retry_count)
|
|
{
|
|
if (status == WIFI_CONNECTED) {
|
|
snprintf(GLOBAL_STATE.SYSTEM_MODULE.wifi_status, 20, "Connected!");
|
|
return;
|
|
}
|
|
else if (status == WIFI_RETRYING) {
|
|
snprintf(GLOBAL_STATE.SYSTEM_MODULE.wifi_status, 20, "Retrying: %d", retry_count);
|
|
return;
|
|
} else if (status == WIFI_CONNECT_FAILED) {
|
|
snprintf(GLOBAL_STATE.SYSTEM_MODULE.wifi_status, 20, "Connect Failed!");
|
|
return;
|
|
}
|
|
}
|