mirror of
https://github.com/skot/ESP-Miner.git
synced 2025-04-09 12:29:59 +02:00
Fix suggest difficulty (order matters)
This commit is contained in:
parent
9eee3ae359
commit
e0a0ee8c49
@ -1,12 +1,12 @@
|
||||
#include "esp_log.h"
|
||||
// #include "addr_from_stdin.h"
|
||||
#include "connect.h"
|
||||
#include "lwip/dns.h"
|
||||
#include "work_queue.h"
|
||||
#include "bm1397.h"
|
||||
#include "connect.h"
|
||||
#include "global_state.h"
|
||||
#include "stratum_task.h"
|
||||
#include "lwip/dns.h"
|
||||
#include "nvs_config.h"
|
||||
#include "stratum_task.h"
|
||||
#include "work_queue.h"
|
||||
#include <esp_sntp.h>
|
||||
#include <time.h>
|
||||
|
||||
@ -16,40 +16,36 @@
|
||||
#define STRATUM_PW CONFIG_STRATUM_PW
|
||||
#define STRATUM_DIFFICULTY CONFIG_STRATUM_DIFFICULTY
|
||||
|
||||
static const char *TAG = "stratum_task";
|
||||
static const char * TAG = "stratum_task";
|
||||
static ip_addr_t ip_Addr;
|
||||
static bool bDNSFound = false;
|
||||
|
||||
static StratumApiV1Message stratum_api_v1_message = {};
|
||||
|
||||
static SystemTaskModule SYSTEM_TASK_MODULE = {
|
||||
.stratum_difficulty = 8192};
|
||||
static SystemTaskModule SYSTEM_TASK_MODULE = {.stratum_difficulty = 8192};
|
||||
|
||||
void dns_found_cb(const char *name, const ip_addr_t *ipaddr, void *callback_arg)
|
||||
void dns_found_cb(const char * name, const ip_addr_t * ipaddr, void * callback_arg)
|
||||
{
|
||||
ip_Addr = *ipaddr;
|
||||
bDNSFound = true;
|
||||
}
|
||||
|
||||
void stratum_task(void *pvParameters)
|
||||
void stratum_task(void * pvParameters)
|
||||
{
|
||||
GlobalState *GLOBAL_STATE = (GlobalState *)pvParameters;
|
||||
GlobalState * GLOBAL_STATE = (GlobalState *) pvParameters;
|
||||
|
||||
STRATUM_V1_initialize_buffer();
|
||||
char host_ip[20];
|
||||
int addr_family = 0;
|
||||
int ip_protocol = 0;
|
||||
|
||||
char *stratum_url = nvs_config_get_string(NVS_CONFIG_STRATUM_URL, STRATUM_URL);
|
||||
char * stratum_url = nvs_config_get_string(NVS_CONFIG_STRATUM_URL, STRATUM_URL);
|
||||
uint16_t port = nvs_config_get_u16(NVS_CONFIG_STRATUM_PORT, PORT);
|
||||
|
||||
// check to see if the STRATUM_URL is an ip address already
|
||||
if (inet_pton(AF_INET, stratum_url, &ip_Addr) == 1)
|
||||
{
|
||||
if (inet_pton(AF_INET, stratum_url, &ip_Addr) == 1) {
|
||||
bDNSFound = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
// it's a hostname. Lookup the ip address.
|
||||
IP_ADDR4(&ip_Addr, 0, 0, 0, 0);
|
||||
ESP_LOGI(TAG, "Get IP for URL: %s\n", stratum_url);
|
||||
@ -59,16 +55,12 @@ void stratum_task(void *pvParameters)
|
||||
}
|
||||
|
||||
// make IP address string from ip_Addr
|
||||
snprintf(host_ip, sizeof(host_ip), "%d.%d.%d.%d",
|
||||
ip4_addr1(&ip_Addr.u_addr.ip4),
|
||||
ip4_addr2(&ip_Addr.u_addr.ip4),
|
||||
ip4_addr3(&ip_Addr.u_addr.ip4),
|
||||
ip4_addr4(&ip_Addr.u_addr.ip4));
|
||||
snprintf(host_ip, sizeof(host_ip), "%d.%d.%d.%d", ip4_addr1(&ip_Addr.u_addr.ip4), ip4_addr2(&ip_Addr.u_addr.ip4),
|
||||
ip4_addr3(&ip_Addr.u_addr.ip4), ip4_addr4(&ip_Addr.u_addr.ip4));
|
||||
ESP_LOGI(TAG, "Connecting to: stratum+tcp://%s:%d (%s)\n", stratum_url, port, host_ip);
|
||||
free(stratum_url);
|
||||
|
||||
while (1)
|
||||
{
|
||||
while (1) {
|
||||
struct sockaddr_in dest_addr;
|
||||
dest_addr.sin_addr.s_addr = inet_addr(host_ip);
|
||||
dest_addr.sin_family = AF_INET;
|
||||
@ -77,17 +69,15 @@ void stratum_task(void *pvParameters)
|
||||
ip_protocol = IPPROTO_IP;
|
||||
|
||||
GLOBAL_STATE->sock = socket(addr_family, SOCK_STREAM, ip_protocol);
|
||||
if (GLOBAL_STATE->sock < 0)
|
||||
{
|
||||
if (GLOBAL_STATE->sock < 0) {
|
||||
ESP_LOGE(TAG, "Unable to create socket: errno %d", errno);
|
||||
esp_restart();
|
||||
break;
|
||||
}
|
||||
ESP_LOGI(TAG, "Socket created, connecting to %s:%d", host_ip, port);
|
||||
|
||||
int err = connect(GLOBAL_STATE->sock, (struct sockaddr *)&dest_addr, sizeof(struct sockaddr_in6));
|
||||
if (err != 0)
|
||||
{
|
||||
int err = connect(GLOBAL_STATE->sock, (struct sockaddr *) &dest_addr, sizeof(struct sockaddr_in6));
|
||||
if (err != 0) {
|
||||
ESP_LOGE(TAG, "Socket unable to connect: errno %d", errno);
|
||||
esp_restart();
|
||||
break;
|
||||
@ -98,27 +88,26 @@ void stratum_task(void *pvParameters)
|
||||
STRATUM_V1_subscribe(GLOBAL_STATE->sock, &GLOBAL_STATE->extranonce_str, &GLOBAL_STATE->extranonce_2_len,
|
||||
GLOBAL_STATE->asic_model);
|
||||
|
||||
char *username = nvs_config_get_string(NVS_CONFIG_STRATUM_USER, STRATUM_USER);
|
||||
// This should come before the final step of authenticate so the first job is sent with the proper difficulty set
|
||||
STRATUM_V1_suggest_difficulty(GLOBAL_STATE->sock, STRATUM_DIFFICULTY);
|
||||
|
||||
char * username = nvs_config_get_string(NVS_CONFIG_STRATUM_USER, STRATUM_USER);
|
||||
STRATUM_V1_authenticate(GLOBAL_STATE->sock, username);
|
||||
free(username);
|
||||
|
||||
ESP_LOGI(TAG, "Extranonce: %s", GLOBAL_STATE->extranonce_str);
|
||||
ESP_LOGI(TAG, "Extranonce 2 length: %d", GLOBAL_STATE->extranonce_2_len);
|
||||
|
||||
STRATUM_V1_suggest_difficulty(GLOBAL_STATE->sock, STRATUM_DIFFICULTY);
|
||||
|
||||
while (1)
|
||||
{
|
||||
char *line = STRATUM_V1_receive_jsonrpc_line(GLOBAL_STATE->sock);
|
||||
while (1) {
|
||||
char * line = STRATUM_V1_receive_jsonrpc_line(GLOBAL_STATE->sock);
|
||||
ESP_LOGI(TAG, "rx: %s", line); // debug incoming stratum messages
|
||||
STRATUM_V1_parse(&stratum_api_v1_message, line);
|
||||
free(line);
|
||||
|
||||
if (stratum_api_v1_message.method == MINING_NOTIFY)
|
||||
{
|
||||
if (stratum_api_v1_message.method == MINING_NOTIFY) {
|
||||
SYSTEM_notify_new_ntime(&GLOBAL_STATE->SYSTEM_MODULE, stratum_api_v1_message.mining_notification->ntime);
|
||||
if (stratum_api_v1_message.should_abandon_work && (GLOBAL_STATE->stratum_queue.count > 0 || GLOBAL_STATE->ASIC_jobs_queue.count > 0))
|
||||
{
|
||||
if (stratum_api_v1_message.should_abandon_work &&
|
||||
(GLOBAL_STATE->stratum_queue.count > 0 || GLOBAL_STATE->ASIC_jobs_queue.count > 0)) {
|
||||
ESP_LOGI(TAG, "abandoning work");
|
||||
|
||||
GLOBAL_STATE->abandon_work = 1;
|
||||
@ -126,52 +115,40 @@ void stratum_task(void *pvParameters)
|
||||
|
||||
pthread_mutex_lock(&GLOBAL_STATE->valid_jobs_lock);
|
||||
ASIC_jobs_queue_clear(&GLOBAL_STATE->ASIC_jobs_queue);
|
||||
for (int i = 0; i < 128; i = i + 4)
|
||||
{
|
||||
for (int i = 0; i < 128; i = i + 4) {
|
||||
GLOBAL_STATE->valid_jobs[i] = 0;
|
||||
}
|
||||
pthread_mutex_unlock(&GLOBAL_STATE->valid_jobs_lock);
|
||||
}
|
||||
if (GLOBAL_STATE->stratum_queue.count == QUEUE_SIZE)
|
||||
{
|
||||
mining_notify *next_notify_json_str = (mining_notify *)queue_dequeue(&GLOBAL_STATE->stratum_queue);
|
||||
if (GLOBAL_STATE->stratum_queue.count == QUEUE_SIZE) {
|
||||
mining_notify * next_notify_json_str = (mining_notify *) queue_dequeue(&GLOBAL_STATE->stratum_queue);
|
||||
STRATUM_V1_free_mining_notify(next_notify_json_str);
|
||||
}
|
||||
|
||||
stratum_api_v1_message.mining_notification->difficulty = SYSTEM_TASK_MODULE.stratum_difficulty;
|
||||
queue_enqueue(&GLOBAL_STATE->stratum_queue, stratum_api_v1_message.mining_notification);
|
||||
}
|
||||
else if (stratum_api_v1_message.method == MINING_SET_DIFFICULTY)
|
||||
{
|
||||
if (stratum_api_v1_message.new_difficulty != SYSTEM_TASK_MODULE.stratum_difficulty)
|
||||
{
|
||||
} else if (stratum_api_v1_message.method == MINING_SET_DIFFICULTY) {
|
||||
if (stratum_api_v1_message.new_difficulty != SYSTEM_TASK_MODULE.stratum_difficulty) {
|
||||
SYSTEM_TASK_MODULE.stratum_difficulty = stratum_api_v1_message.new_difficulty;
|
||||
ESP_LOGI(TAG, "Set stratum difficulty: %ld", SYSTEM_TASK_MODULE.stratum_difficulty);
|
||||
}
|
||||
}
|
||||
else if (stratum_api_v1_message.method == MINING_SET_VERSION_MASK || stratum_api_v1_message.method == STRATUM_RESULT_VERSION_MASK)
|
||||
{
|
||||
} else if (stratum_api_v1_message.method == MINING_SET_VERSION_MASK ||
|
||||
stratum_api_v1_message.method == STRATUM_RESULT_VERSION_MASK) {
|
||||
// 1fffe000
|
||||
ESP_LOGI(TAG, "Set version mask: %08lx", stratum_api_v1_message.version_mask);
|
||||
GLOBAL_STATE->version_mask = stratum_api_v1_message.version_mask;
|
||||
}
|
||||
else if (stratum_api_v1_message.method == STRATUM_RESULT)
|
||||
{
|
||||
if (stratum_api_v1_message.response_success)
|
||||
{
|
||||
} else if (stratum_api_v1_message.method == STRATUM_RESULT) {
|
||||
if (stratum_api_v1_message.response_success) {
|
||||
ESP_LOGI(TAG, "message result accepted");
|
||||
SYSTEM_notify_accepted_share(&GLOBAL_STATE->SYSTEM_MODULE);
|
||||
}
|
||||
else
|
||||
{
|
||||
} else {
|
||||
ESP_LOGE(TAG, "message result rejected");
|
||||
SYSTEM_notify_rejected_share(&GLOBAL_STATE->SYSTEM_MODULE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (GLOBAL_STATE->sock != -1)
|
||||
{
|
||||
if (GLOBAL_STATE->sock != -1) {
|
||||
ESP_LOGE(TAG, "Shutting down socket and restarting...");
|
||||
shutdown(GLOBAL_STATE->sock, 0);
|
||||
close(GLOBAL_STATE->sock);
|
||||
|
Loading…
x
Reference in New Issue
Block a user