Hi thiagow,
I solved in this way.
I defined the node of the my machine
const RTCSMIB_NODE MIBNODE_machine = {
1,
NULL,
(RTCSMIB_NODE_PTR)&MIBNODE_analog_input,
(RTCSMIB_NODE_PTR)&MIBNODE_board,
0,
NULL,
NULL, 0, NULL, NULL
};
and then in the struct of MIBVALUE_sysObjectID I inserted the pointer to the MIBNODE_machine
const RTCSMIB_VALUE MIBVALUE_sysObjectID = {
RTCSMIB_NODETYPE_OID_PTR,
(void _PTR_)(RTCSMIB_VALUE_PTR)&MIBNODE_machine
};
In this way it's working.
Best Regards