mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2025-04-21 12:27:27 +03:00
Introduce library with ATSPI access functions (largely untested)
- 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
This commit is contained in:
18
tools/include/atspi.h
Normal file
18
tools/include/atspi.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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 */
|
||||
Reference in New Issue
Block a user