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:
@@ -33,6 +33,8 @@ struct atrf_driver {
|
||||
uint8_t (*reg_read)(void *dsc, uint8_t reg);
|
||||
void (*buf_write)(void *dsc, const void *buf, int size);
|
||||
int (*buf_read)(void *dsc, void *buf, int size);
|
||||
void (*sram_write)(void *dsc, uint8_t addr, uint8_t value);
|
||||
uint8_t (*sram_read)(void *dsc, uint8_t addr);
|
||||
int (*interrupt)(void *dsc);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user