dmarc1234

Results 8 comments of dmarc1234

Hi Timo I understand and I would be interested in paying to have this work done as I think it is a good feature for everyone to share. What would...

Its only part of the group functionality that is required for the alert implementation. I have attached a spreadsheet supplied by Raymarine that outlines the alert process I am looking...

Just wondering if anyone can help with this ?

It would be great if someone could help with this, anyone ? David

That line did come out right above, should be: snmp->addReadWriteStringHandler(".1.3.6.1.4.1.38218.1.3.1.0", (char**)(*conf).sensor_name, 40, true);

Thank you for your reply. Yes, `(*conf).sensor_name` is a `char` within the CONFIG_REG structure. I have tried: `snmp->addReadWriteStringHandler(".1.3.6.1.4.1.38218.1.3.1.0", &(*conf).sensor_name, 40, true);` but it will not compile, I need to cast...

This is how CONFIG_REG is defined: ``` // Structure to contain configuration information typedef struct { char sensor_name[40]; // Sensor name char sensor_location[40]; // Sensor location } CONFIG_REG; ``` and...

@0neblock did you see my message in relation to the structure, still struggling to get this to work.