mirror of
https://github.com/bettse/seader.git
synced 2026-03-29 10:10:04 +00:00
14 lines
300 B
C
14 lines
300 B
C
|
|
#pragma once
|
|
|
|
#include <lib/toolbox/hex.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "seader.h"
|
|
|
|
#define SEADER_APDU_RUNNER_FILE_NAME APP_DATA_PATH("script.apdu")
|
|
|
|
void seader_apdu_runner_init(Seader* seader);
|
|
bool seader_apdu_runner_response(Seader* seader, uint8_t* r_apdu, size_t r_len);
|