boardClearPassword (Function)

Top  Previous  Next

Architecture:

X32 / NX32 / NX32L

Device support:

All

Firmware version:

1.05 / 1.00.00


Clears the primary password that is used by the RTCU IDE (or any other RACP1/RACP2) client that will authenticate itself to the device.

 

See boardSetPassword for more information.

 

Input:

None

 

Returns: BOOL

TRUE:

Password has been cleared.

FALSE:

Password is not cleared.

 

Declaration:

FUNCTION boardClearPassword : BOOL;

 

 

Example:

INCLUDE rtcu.inc
 
PROGRAM test;
 
// Clear password
boardClearPassword();
 
END_PROGRAM;