2026-04-04 16:22:37 +09:00
|
|
|
#pragma once
|
|
|
|
|
#include <cstdint>
|
2026-04-03 21:47:48 +09:00
|
|
|
|
2026-04-04 16:22:37 +09:00
|
|
|
void wizchip_pio_init();
|
|
|
|
|
void wizchip_pio_close();
|
2026-04-03 21:47:48 +09:00
|
|
|
|
2026-04-04 16:22:37 +09:00
|
|
|
void wizchip_pio_frame_start();
|
|
|
|
|
void wizchip_pio_frame_end();
|
|
|
|
|
void wizchip_pio_read(uint8_t opcode, uint16_t addr, uint8_t* buf, uint16_t len);
|
|
|
|
|
void wizchip_pio_write(uint8_t opcode, uint16_t addr, uint8_t* buf, uint16_t len);
|