forked from ccsens_hardware/ttss_sop
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
899 B
38 lines
899 B
//////////////////////////////////////////////////////////////////////////
|
|
/// COPYRIGHT NOTICE
|
|
/// Copyright (c) 2018, 传控科技
|
|
/// All rights reserved.
|
|
///
|
|
/// @file msp_eeprom
|
|
/// @brief msp_eeprom
|
|
/// @info
|
|
///(本文件实现的功能的详述)
|
|
///
|
|
/// @version 1.1 CCsens technology
|
|
/// @author CC
|
|
/// @date 20190106
|
|
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _msp_id_H_
|
|
#define _msp_id_H_
|
|
|
|
#include "../clib/type.h"
|
|
#include "../clib/clib.h"
|
|
#include "../ctask/tick.h"
|
|
|
|
|
|
///>>>端口位定义,可修改!!!!!!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
#include "../bsp/bsp_config.h"
|
|
#include "../msp/uart0.h"
|
|
|
|
extern void L0_id_get(U8 *id);
|
|
extern void L0_id_get_rom(U8 *id);
|
|
extern void L0_id_main(void);
|
|
|
|
#endif// #ifndef _msp_eeprom_H_
|
|
|
|
|
|
|
|
|