Files

copied
Last update 2 years 10 months
Filesfirmwaredrivers
..
HIDClassCommon.h
HIDParser.c
HIDParser.h
HIDReportData.h
helper.c
helper.h
max3421.c
max3421.h
max3421e.h
mcp42xxx.c
mcp42xxx.h
spi.c
spi.h
sys_messagebus.c
sys_messagebus.h
timer_a0.c
timer_a0.h
uart0.c
uart0.h
usb_spec.h
spi.h
#ifndef __SPI_H__ #define __SPI_H__ #ifdef __cplusplus extern "C" { #endif #include <stdint.h> extern void spi_init(void); extern void spi_end(void); extern void spi_fast_mode(void); extern void spi_read_frame(uint8_t * pBuffer, uint16_t size); extern void spi_send_frame(uint8_t * pBuffer, uint16_t size); #ifdef __cplusplus } #endif #endif
Report a bug