fix: 修正API生成逻辑中2024库的url
[LuatOS.git] / luat / include / luat_otp.h
blob871a03fdef124173b4a28e5197ede40459720232
2 #ifndef LUAT_OTP_H
3 #define LUAT_OTP_H
4 #include "luat_base.h"
7 int luat_otp_read(int zone, char* buff, size_t offset, size_t len);
8 int luat_otp_write(int zone, char* buff, size_t offset, size_t len);
9 int luat_otp_erase(int zone, size_t offset, size_t len);
10 int luat_otp_lock(int zone);
11 size_t luat_otp_size(int zone);
13 #endif