I have a large array of uint16_t
.
Most of its members are uint16_t
, but some are int16_t
and some uint8_t
.
How would you handle that?
By the way, I tried:
Pointers:
Used 2 pointers, one
int16_t*
and the otheruint8_t*
, both initialized to the start of the array, to access member of the array that areint16_t
anduint8_t
.(That worked initially, but I ran into problems when later in the program something else changed the value of the pointers, so I don't trust it.)
Type definition with a union.
In file.h:
typedef union { uint16_t u16[NO_OF_WORDS]; // As uint16_t int16_t s16[NO_OF_WORDS]; // As int16_t uint8_t u8[2 * NO_OF_WORDS]; // As uint8_t } ram_params_t; extern ram_params_t ram_params[];
In file.c:
ram_params_t ram_params[] = {0};
(That really bombed.)
Casting.
(I didn't get very far with that.)
The problem with your attempt #2 was that you made an array of arrays.
Either do this:
Or you do this:
I don't see anything wrong with your attempt #1 either. I think that I would probably do that rather than using a union.