You've already forked ESP32-DAPLink
mirror of
https://github.com/m5stack/ESP32-DAPLink.git
synced 2026-05-20 11:37:17 -07:00
9 lines
252 B
C
9 lines
252 B
C
#pragma once
|
|
|
|
#include "prog_data.h"
|
|
|
|
void programmer_init(void);
|
|
prog_err_def programmer_request_handle(char *buf, int len);
|
|
void programmer_get_status(char *buf, int size, int &encode_len);
|
|
prog_err_def programmer_write_data(uint8_t *data, int len);
|