mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2025-04-21 12:27:27 +03:00
libatrf: added SRAM access functions
- tools/include/atrf.h (atrf_sram_write, atrf_sram_read), tools/lib/atrf.c: single-byte SRAM access front-end functions - tools/lib/driver.h (struct atrf_driver): new driver functions sram_write and sram_read
This commit is contained in:
@@ -52,6 +52,9 @@ uint8_t atrf_reg_read(struct atrf_dsc *dsc, uint8_t reg);
|
||||
void atrf_buf_write(struct atrf_dsc *dsc, const void *buf, int size);
|
||||
int atrf_buf_read(struct atrf_dsc *dsc, void *buf, int size);
|
||||
|
||||
void atrf_sram_write(struct atrf_dsc *dsc, uint8_t addr, uint8_t value);
|
||||
uint8_t atrf_sram_read(struct atrf_dsc *dsc, uint8_t addr);
|
||||
|
||||
int atrf_interrupt(struct atrf_dsc *dsc);
|
||||
|
||||
#endif /* !ATRF_H */
|
||||
|
||||
Reference in New Issue
Block a user