Split w6300 headers into public w6300.h and w6300_internal.h, rename pio files

This commit is contained in:
Ian Gulliver
2026-04-04 20:36:22 +09:00
parent aad458f44c
commit 6782025e38
11 changed files with 874 additions and 889 deletions

10
w6300/pio.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include <cstdint>
void wizchip_pio_init();
void wizchip_pio_close();
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);