ParameterSet.h 616 B

12345678910111213141516171819
  1. #ifndef __PARAMETER_H__
  2. #define __PARAMETER_H__
  3. /*--------------------------------------------------------------------------------------
  4. * @file ParameterSet.h
  5. * @author ZhangJing
  6. * @version base on stm32f0x
  7. * @date 2015.09.11
  8. * @brief 参数设置数据处理
  9. ---------------------------------------------------------------------------------------*/
  10. #include "stdint.h"
  11. #define PARAMETER_DATA_BYTES 128 //参数字节数
  12. void ReadParameterRecord( void );
  13. void WriteParameterRecord( void );
  14. void WriteInitParameterRecord( void );
  15. extern uint8_t paramRecordBuf[PARAMETER_DATA_BYTES];//参数数据数组
  16. #endif