21 lines
355 B
C
21 lines
355 B
C
/*
|
|
* Copyright (c) CompanyNameMagicTag 2018-2019. All rights reserved.
|
|
* Description: Upgrade base funciton - nv.
|
|
*/
|
|
|
|
#ifndef __UPG_BASE_NV_H__
|
|
#define __UPG_BASE_NV_H__
|
|
|
|
#include <soc_types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
td_u32 update_keep_nv(td_pvoid buf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __UPG_BASE_NV_H__ */
|