mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-05 16:15:20 +02:00
ac349b0bc0
- tools/include/atspi.h, tools/lib/Makefile, tools/lib/atspi.c: library with ATSPI access functions - tools/atspi-id/Makefile: use libatspi - tools/atspi-id/atspi-id.c (main) use atspi_open instead of open_usb - fw/atspi/at86rf230.h: moved to fw/include/ - fw/include/at86rf230.h: added ID registers - fw/atspi/ep0.c: removed stray #endif
19 lines
352 B
C
19 lines
352 B
C
#ifndef ATSPI_H
|
|
#define ATSPI_H
|
|
|
|
|
|
#include <stdint.h>
|
|
#include <usb.h>
|
|
|
|
|
|
int atspi_error(void);
|
|
int atspi_clear_error(void);
|
|
|
|
usb_dev_handle *atspi_open(void);
|
|
void atspi_close(usb_dev_handle *dev);
|
|
|
|
void atspi_reg_write(usb_dev_handle *dev, uint8_t reg, uint8_t value);
|
|
uint8_t atspi_reg_read(usb_dev_handle *dev, uint8_t reg);
|
|
|
|
#endif /* !ATSPI_H */
|