blob: ab329e884d1ee47d4e4245aab987b48d73c1a786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
******************************************************************************
*
* @file fw.h
*
* @brief ecrnx usb firmware download definitions
*
* Copyright (C) ESWIN 2015-2020
*
******************************************************************************
*/
#ifndef _FW_H_
#define _FW_H_
char eswin_fw_file_download(struct eswin *tr);
bool eswin_fw_file_chech(struct eswin *tr);
#endif
|