system_target.h 989 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. ******************************************************************************
  3. * @file system_target.c
  4. * @author Application Team
  5. * @version V1.1.0
  6. * @date 2019-10-28
  7. * @brief system source file.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. ******************************************************************************
  12. */
  13. #ifndef __SYSTEM_TARGET_H
  14. #define __SYSTEM_TARGET_H
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #include "type_def.h"
  19. #define NVR_REGINFOCOUNT1 (0x80400)
  20. #define NVR_REGINFOBAKOFFSET (0x100)
  21. /* ########################### System Configuration ######################### */
  22. extern void SystemInit(void);
  23. extern void SystemUpdate(void);
  24. #ifdef USE_TARGET_DRIVER
  25. #include "lib_conf.h"
  26. #endif /* USE_TARGET_DRIVER */
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* __SYSTEM_TARGET_H */
  31. /*********************************** END OF FILE ******************************/