mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2025-07-31 20:21:04 +00:00
rtlduino rtl8710af gcc base version
This commit is contained in:
parent
7675bdb95f
commit
9c0c9edf61
2097 changed files with 779974 additions and 2 deletions
31
component/common/mbed/hal_ext/efuse_api.h
Normal file
31
component/common/mbed/hal_ext/efuse_api.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/* mbed Microcontroller Library
|
||||
*******************************************************************************
|
||||
* Copyright (c) 2014, Realtek Semiconductor Corp.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This module is a confidential and proprietary property of RealTek and
|
||||
* possession or use of this module requires written permission of RealTek.
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
||||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue