Good morning,
do you have any general information on IGBTs?
Where can I find them?
Thanks!
Fränce
do you have any general information on IGBTs?
Where can I find them?
Thanks!
Fränce
void opcua_init(void)
{
UA_Status_t status;
UA_SERVER_PRINTF("opcua_init()");
/* Initialise random number generator (seed is unimportant) */
srand(0);
status = UAServer_Initialise(&UA_CONFIGURATION);
if (status != 0)
{
while (TRUE)
;
}
UAServer_Time_emulation_enabled(TRUE);
{
uint8_t ip_address[4];
ip_address[0] = IP_ADDR0;
ip_address[1] = IP_ADDR1;
ip_address[2] = IP_ADDR2;
ip_address[3] = IP_ADDR3;
UAServer_Add_IP_address(ip_address);
}
{
char uri[100] = "uri://Dummy_uri";
UAServer_Set_URI(uri);
}
opcua_add_nodes();
UAServer_Generate_certificate();
UAServer_Start(0);
opcua_tcpip_init();
}