mirror of
https://github.com/pvvx/RTL00_WEB.git
synced 2024-11-23 06:24:19 +00:00
29 lines
728 B
C
29 lines
728 B
C
/* mbed Microcontroller Library
|
|
*******************************************************************************
|
|
* Copyright (c) 2014, Realtek Semiconductor Corp.
|
|
* All rights reserved.
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef MBED_EXT_EFUSE_API_EXT_H
|
|
#define MBED_EXT_EFUSE_API_EXT_H
|
|
|
|
#include "device.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int efuse_get_remaining_length(void);
|
|
void efuse_mtp_read(uint8_t * data);
|
|
int efuse_mtp_write(uint8_t *data, uint8_t len);
|
|
int efuse_otp_read(u8 address, u8 len, u8 *buf);
|
|
int efuse_otp_write(u8 address, u8 len, u8 *buf);
|
|
int efuse_disable_jtag(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // MBED_EXT_EFUSE_API_EXT_H
|