ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
14 lines
363 B
C
14 lines
363 B
C
#ifndef _EFUSE_H_
|
|
#define _EFUSE_H_
|
|
|
|
|
|
efuse_key_map_new_t *efuse_search_key_by_name(const char *key_name);
|
|
int efuse_acl_ck(efuse_key_map_new_t *key_map,int burn);
|
|
void efuse_set_cfg_flg(int efuse_cfg_base,int bit_offset);
|
|
int efuse_uni_burn_key(unsigned int key_index, unsigned int key_value);
|
|
unsigned int efuse_sram_read_key(unsigned int key_index);
|
|
|
|
|
|
#endif
|
|
|