CM_RESETPSW.c 232 B

12345678910111213
  1. // Reset Password
  2. //
  3. // CryptoMemory Library Include Files
  4. #include "CM_LIB.h"
  5. #include "CM_I2C.h"
  6. #include "CM_I2C_L.h"
  7. // Reset Password
  8. uint8_t cm_ResetPassword(void)
  9. {
  10. return CM_LOW_LEVEL.SendCmdByte(0xba);
  11. }