From b0bdc4e2f2b4fd31ae3b0ebf47765e88c4c37556 Mon Sep 17 00:00:00 2001 From: Mathias K Date: Wed, 2 Feb 2011 17:38:38 +0100 Subject: 24bit buffer support Hello, this patch add 24bit support to the target buffer functions and little/big endian functions. Regards, Mathias --- src/target/target.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/target/target.h') diff --git a/src/target/target.h b/src/target/target.h index 2c6f4cd5..2bf96689 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -479,8 +479,10 @@ void target_free_all_working_areas(struct target *target); extern struct target *all_targets; uint32_t target_buffer_get_u32(struct target *target, const uint8_t *buffer); +uint32_t target_buffer_get_u24(struct target *target, const uint8_t *buffer); uint16_t target_buffer_get_u16(struct target *target, const uint8_t *buffer); void target_buffer_set_u32(struct target *target, uint8_t *buffer, uint32_t value); +void target_buffer_set_u24(struct target *target, uint8_t *buffer, uint32_t value); void target_buffer_set_u16(struct target *target, uint8_t *buffer, uint16_t value); int target_read_u32(struct target *target, uint32_t address, uint32_t *value); -- cgit v1.2.3