]> git.zerfleddert.de Git - proxmark3-svn/blame - client/flash.h
Comms refactor (prerequisite of libproxmark work) (#371)
[proxmark3-svn] / client / flash.h
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
2// This code is licensed to you under the terms of the GNU GPL, version 2 or,
3// at your option, any later version. See the LICENSE.txt file for the text of
4// the license.
5//-----------------------------------------------------------------------------
6// Flashing utility functions
7//-----------------------------------------------------------------------------
8
b961ef03 9#ifndef __FLASH_H__
10#define __FLASH_H__
11
91c38cf7 12#include <stdint.h>
8fe1a992 13#include "elf.h"
afdcb8c1 14#include "comms.h"
91c38cf7 15
8fe1a992 16typedef struct {
17 void *data;
18 uint32_t start;
19 uint32_t length;
20} flash_seg_t;
6e4d4ee6 21
8fe1a992 22typedef struct {
23 const char *filename;
24 int can_write_bl;
25 int num_segs;
26 flash_seg_t *segments;
27} flash_file_t;
6e4d4ee6 28
8fe1a992 29int flash_load(flash_file_t *ctx, const char *name, int can_write_bl);
afdcb8c1 30int flash_start_flashing(receiver_arg* conn, int enable_bl_writes, char *serial_port_name);
8fe1a992 31int flash_write(flash_file_t *ctx);
32void flash_free(flash_file_t *ctx);
33int flash_stop_flashing(void);
afdcb8c1
MF
34void CloseProxmark(receiver_arg* conn, char* serial_port_name);
35bool OpenProxmark(char* serial_port_name);
b961ef03 36
37#endif
38
Impressum, Datenschutz