luat_otp_pc.c 386 B

123456789101112131415161718192021222324
  1. #include "luat_base.h"
  2. #include "luat_otp.h"
  3. int luat_otp_read(int zone, char* buff, size_t offset, size_t len)
  4. {
  5. return 0;
  6. }
  7. int luat_otp_write(int zone, char* buff, size_t offset, size_t len)
  8. {
  9. return 0;
  10. }
  11. int luat_otp_erase(int zone, size_t offset, size_t len)
  12. {
  13. return 0;
  14. }
  15. int luat_otp_lock(int zone)
  16. {
  17. return 0;
  18. }
  19. size_t luat_otp_size(int zone)
  20. {
  21. return 0;
  22. }