11 lines
312 B
C++
11 lines
312 B
C++
#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);
|